Questions by Gunnar Terry
How can I change the default .exe icon in Visual Studio 2012 (C++)?
I was wondering if there was a way to change the default icon that VS2012 makes when I compile my app. Just for thos...
curl authentication with ldap credentials?
I am trying to connect to servicenow server with curl which uses ldap authentication. my command: curl -ntlm -u u...
C++ concatenate two int arrays into one larger array?
Is there a way to take two int arrays in C++ int * arr1; int * arr2; //pretend that in the lines below, we fill the...
Swift 3: Display Image from URL?
In Swift 3, I am trying to capture an image from the internet, and have these lines of code: var catPictureURL = NS...
Is there some innerHTML replacement in SVG/XML??
In HTML I can build a simple templating system by providing a template in form of a string, replace some parts of it...
Best way to check if object exists in Entity Framework??
What is the best way to check if an object exists in the database from a performance point of view? I'm using Entity...
Find Column Header By Name And Select All Data Below Column Header (Excel-VBA)?
This is my first post... I'm attempting to create a macro to do the following: Search a spreadsheet column header...
Does Windows have Inode Numbers like Linux??
Does Windows have Inode Numbers like Linux? How does Windows internally manage files? ...
How to use a DataAdapter with stored procedure and parameter?
I want to fill a DataGridView control using DataAdapter. But I don't know how to do it since I'm using a stored proc...
Function must return a value?
I am trying to make a text based RPG and i'm fairly new to c++. I understand that I need to return a value, but when...
How can I truncate a datetime in SQL Server??
What's the best way to truncate a datetime value (as to remove hours minutes and seconds) in SQL Server 2008? For e...
Is there a coalesce-like function in Excel??
I need to fill a cell with the first non-empty entry in a set of columns (from left to right) in the same row - simi...
Does Java have an StringStream equivalent??
So I am trying to get back into Java after doing C++ for quite some time, I decided to practice by rewriting my C++ ...