Search:
Type: Posts; User: Arjay
Search:
Search took 1.52 seconds.
-
April 17th, 2021, 10:46 AM
Why not take charge and provide your own logging/error handling? If you take care of the error handling inside your app, the app will never crash (and Windows won't need to be involved).
Help...
-
April 8th, 2021, 08:18 PM
Have you ever seen the signs advertising office space, "If you worked from here, you would be home by now"?
That's what coding up raw ODBC is like vs. using an ORM. Sure, there might be an initial...
-
April 8th, 2021, 03:46 PM
Yes, but I expect it to be called in a loop with once per column. Not like the following code where the 2nd call eats the return call of the first:
ret = SQLColumns();
ret = SQLBindColumn();
ret...
-
April 7th, 2021, 09:45 PM
Why is SQLBindColumn called twice?
-
March 28th, 2021, 11:56 PM
What happens when you set some breakpoints and step through the code?
-
March 17th, 2021, 09:39 AM
For older technologies, the ATL OLEDB Consumer classes are an order of magnitude improvement over the MFC db classes. They're lighter weight, easier to modify for schema changes, support multiple db...
-
March 17th, 2021, 12:41 AM
-
March 3rd, 2021, 11:13 AM
While this is technically true, learning this way leaves the programmer with a deficit (imo) - that is, with notepad a programmer can't learn the all too important skill of debugging. Understanding...
-
March 3rd, 2021, 11:02 AM
Or, the debug and output windows appear as tabs in the same pane.
-
March 1st, 2021, 08:15 PM
If you haven't used an Object Relational Mapper (ORM) before you may want to check it out. I see a few available for c++. If they are anything like the EF Core ORM for C#, they will build the...
-
February 28th, 2021, 01:54 AM
If using C++, use different namespaces.
-
February 22nd, 2021, 10:48 PM
Read posts by someone that wants to write an article.
-
February 7th, 2021, 04:34 PM
Are you able to connect with SSMS?
Btw, I've used SQLCMD within PowerShell for years, but recently ran into a issue where it just would not connect to a specific server. Never could figure out the...
-
February 7th, 2021, 01:02 PM
Are the named pipes protocol enabled on sql server? They aren't by default. Search google for "sql configuration manager"
-
February 5th, 2021, 01:43 AM
What type is the data are you trying to store? Is it binary data? String data?
-
February 3rd, 2021, 12:41 AM
Use a named mutex. Create the mutex in the windows app before you launch the console app. When the console app starts up, try to open the mutex. It should open. If the mutex doesn't exist and the...
-
February 2nd, 2021, 04:28 AM
Would reformatting your code help you to spot the error?
-
January 31st, 2021, 04:38 PM
public class MyObj
{
public string Obj1 { get; set; }
public string Obj2 { get; set; }
}
class Program
{
static void Main(string[] args)
{
...
-
January 31st, 2021, 04:21 PM
No screenshots please, just include the code snippet and the error.
-
January 30th, 2021, 09:32 AM
Not sure what you are asking. Are you asking what datatype you should store fingerprint data in? If so, probably a VARBINARY datatype would be suitable.
-
January 30th, 2021, 01:44 AM
You'll need to also use F9 to set a breakpoint before using F10 & F11. Otherwise, F10 & F11 aren't much use.
-
January 29th, 2021, 04:00 PM
-
January 24th, 2021, 02:04 PM
Probably the least painful approach is to incrementally keep production code to the current version or at least cuurent minus 1. Yeah, every few years you have to feel a little pain getting your old...
-
January 24th, 2021, 01:53 PM
Victor' that was a well written post from Guido.
-
January 17th, 2021, 08:09 PM
Take a look at the lvselstate sample here: https://forums.codeguru.com/showthread.php?565179-ListCtrl-in-MFC&p=2238400#post2238400
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|