Search:
Type: Posts; User: Arjay
Search:
Search took 1.15 seconds.
-
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
-
January 15th, 2021, 08:53 AM
What overly complicated code. Create a modeless dialog. Make its parent window the main app window. Store the pointer to it in the AfxApp (so you can access it from anywhere). Expose a method that...
-
January 13th, 2021, 01:10 AM
UI with C++ and MFC, COM, to name a few.
-
January 11th, 2021, 12:02 PM
-
January 9th, 2021, 03:30 AM
Dude, you are stuck in old technology. Microsoft has moved on. Maybe you should too?
-
January 8th, 2021, 09:22 AM
When you shell out to start Excel, you are essentially opening the Excel file like it would be using Windows explorer. Well, the process isn't exactly the same, but the end result is the same - you...
-
January 7th, 2021, 02:38 AM
Do you have Excel installed on your development machine? Are you running on a 64 bit or 32 bit OS? If 64 bit OS, are you compiling for 64bit or 32bit?
-
January 5th, 2021, 08:37 PM
Are you missing an assembly referencs or nuget package?
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|