First  |  Prev |  Next  |  Last
Pages: 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
How to find no of elements in the pointers
Hi Friends, I have one problem... My problem is how to determine the size of the pointer. (No of elements) For eg. i have the string pointer... after some process the pointer contains some no of string elements. so now i want to know how many strings reside on the pointer... string* pstrArray; .... .... 21 Jun 2008 06:38
ogre3d and openCV VC solutions
Hi guys, I'm doing a project with both ogre3d and openCV and now I have to merge the code. I have 2 Visual C++ solutions and either of them has his own configuration. Can you give me some suggestion on how to merge the two solutions and use both libraries together ? thanks! ... 21 Jun 2008 03:36
Windows XP Task Scheduler
Hi Everyone - I am having several problems programatically creating a windows task scheduler job via C++. I have tried to implement the registration and schedule of the task in three different ways and in all cases I don't have one solution that works well. First off I have an application that when ran i... 24 Jun 2008 12:19
itoa
Does Visual Studio Express support itoa() or something similar? I included stido.h but it is was not found. Need to do some straight C programming. thanx, gtb ... 26 Jun 2008 07:24
VS2005 - DLL Generation - Any way of autoincrementing minor minorversion number for version resource?
On Fri, 20 Jun 2008 13:17:09 +0200, Stephen Howe <stephenPOINThoweATtns-globalPOINTcom> wrote: I have some Version Information resources attached to bog-standard Win32 DLLs generated by VC++ from VS2005. Is there any way of autoincrementing the minor minor version number of the resource with every... 20 Jun 2008 11:13
Hex to ascii hex
Is there a lib routine for converting an arbitrary number of bytes to their ascii representation or must one do it byte by byte? I receive known quantities of bytes from a pipe and need to display them as hex for debugging purposes. thanx, gtb ... 21 Jun 2008 06:38
removing all dependency on MSVCR*.DLL
There is one little C static library to manage the serial number and unlock key for my application. Today it is compiled with VC6 and linked into both VC6 modules and VS2005 modules. It is not a lot of code, but obviously it is very important code that is used all over: VS2005: used in a C++/CLI module for .Ne... 20 Jun 2008 12:15
VS2005 - DLL Generation - Any way of autoincrementing minor minor version number for version resource?
Hi I have some Version Information resources attached to bog-standard Win32 DLLs generated by VC++ from VS2005. Is there any way of autoincrementing the minor minor version number of the resource with every compile (or link) without having to manually have to do it? Thanks Stephen Howe ... 20 Jun 2008 11:13
Deleting an object over void pointer
Hi all, Is there any oddity about deleting an object over a void pointer? Like this : Foo * lpFoo = new Foo (); /// Use lpFoo... deleteObject (&lpFoo); .. .. .. void deleteObject (void ** pPtr) { if (pPtr && *pPtr) { delete (*pPtr); *pPtr = NULL; } } Th... 20 Jun 2008 11:13
Execute system() function with command window hidden..
Hi, In my application we uses system() function to execute some commands. For eg. system("systeminfo > systeminfo.txt") to write system information to a file. But while doing this, command window pops up. This irritates the user. So, Is there any way to execute system command without popingup the command wi... 20 Jun 2008 09:10
First  |  Prev |  Next  |  Last
Pages: 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80