I've got a block of controls I am using multiple times on different tabs. I created a user control in XAML so that I could re-use this block. If I make a aesthetics change to it then it propagates...
I can't seem to change my password here. Every time I have to use the forgot password link to gain access. I then immediately try to change my password but it the result is an error which claims I...
I mixed C syntax with VB.net syntax. ^ is an XOR operation in C... in VB.net it's simply Xor. ^ is obviously valid in VB.net and so it didn't generate any errors....
I've got an issue with the data received (or transmitted) using System.IO.Ports. I have eliminated the hardware as the problem by creating a simple loop back such that whatever I send is echo'd back....
Assume I have a table of parts for a particular job. Parts are added to the job as they are needed. Some times a given part is needed more than once so I could potentially have multiple parts show up...
I need some help in setting up the tables in my database. I have a dataset of 'Assemblies' and a dataset of 'Parts' which make up the Assemblies. My confusion comes from the fact that a given part...
What do you mean by unaligned? From what you said... I take it to mean that by making the structure unaligned they are packed "tight" in memory. So, within the 4096 byte...
I have an application in which I do some pre-processing of a flat file. The result of the pre-processing is a ton of data. Next, the application works on this data. This part is very time sensitive...
Well, I do understand the QueryPerformanceCounter() API. Ticks may not be the most appropriate wording... but a tick is a clock cycle which is quantified by the QueryPerformanceFrequency()...
I need a timer with resolution less than 1 millisecond. I have found the QueryPerformanceCounter API. It WOULD work great however the ticks between two successive QueryPerformanceCounter calls is far...
I want to create an application for media center 2005. I find very limited information with a google search. I've downloaded the SDK but I can't seem to find a tutorial on the subject. Anyone know...
I am sure it's out there... but I just can't locate it. I want to enable my C++ app to read/write XML using win32 (no MFC). Is there a standard API that would enable this functionality? If so, can...
I need to control a hardware device from ASP. I have done this a while back (5 years ago) using ISAPI... as I recall it was the only option I had to control a device on my serial port from ASP.
I ended up using the DWORD dwUser parm to pass the pointer this to the function. I couldn't get your first example to work. I had actually tried that. It doesn't seem to like the static bool pulsing...
Ok... I am back with a similar issue. I've decided to place a flag in the callback function that I will clear upon execution. I have the flag as a private member of the class. When I attempt to clear...
I know CreateFile will work under NT,2000,XP but if you try to obtain a handle and access the port don't you generate an exception? It's been a while but as I recall you get a priviliged instruction...
I have a compilation error I can't figure out. I am calling timeSetTimer from a member function within a class. The callback function is also a member of the class.