| Thread | Last Post | Replies |
|
| network programing books for vc2005 | 21 May 2006 23:29 GMT | 1 |
Can anyone recommend a book or two on network programming for Visual C++ 2005? Thanks,
|
| Windows Explorer | 20 May 2006 23:54 GMT | 1 |
the open task(window) buttons have dissapeared from my task bar. if anyone knows how I can correct this please let me know. thanks
|
| vector iterators invalidated and DEBUG_ITERATORS | 19 May 2006 22:48 GMT | 3 |
compiling a program with the code blurb below causes a runtime error ("Expression: vector iterators incompatible") due to the debug iterators in VC++ 8. The error happens in the ind_len.push_back() call, at the second iteration. I suspect that the iterator has been
|
| 'binary' value in managed string | 19 May 2006 19:09 GMT | 3 |
I want a 'binary' value to be included in a managed string. ie a binary 0x01 not its ascii equivalent of 49 decimal or 0x31 hexidecimal. The following code converts the checksum unsigned char to it's ascii value when using visual studio express 2005. What do I need to do to
|
| Static classes like C# | 19 May 2006 16:45 GMT | 4 |
Is there a way to implement static classes in C++ the same way you do in C#? static class CompanyInfo { public static string GetCompanyName() { return "CompanyName"; }
|
| dynamic runtime casting? | 19 May 2006 16:23 GMT | 6 |
Is there a C++ method comparable to the vb.net TryCast function? I had hopes for Convert::ChangeType, but that didn't work. For a scripting engine, the user is specifying to retrieve an interface on an object by name. Code is roughly:
|
| How to ignore new C++ (2005) keywords that are used in existing unmanaged C++ | 18 May 2006 18:26 GMT | 3 |
I have a library that's a mixed mode dll and compiles fine in in VS2005 with /clr:oldSyntax. However, if I change it to /clr so I can use the newer syntax it won't compile because the header files I'm including have invalid syntax, i.e. the word generic is used for parameter names. ...
|
| ClickOnce for Win32 dll | 18 May 2006 17:49 GMT | 1 |
Here is a method I came up with to use ClickOnce with a Win32(no Clr) dll. Is there something simplier I can do? Steps for ClickOnce for a Win32(with no CLR) dll , named Win32Lib.dll.
|
| when would u use the watch window? | 18 May 2006 15:44 GMT | 1 |
hi i was attended a written test i dont under stand this question? please give answer for this q?
|
| Can anybody tell me what is wrong .... | 18 May 2006 15:24 GMT | 1 |
/* I am trying to practice multidimensional array in a managed class using dynamical allocation. If I tried to compile the following codes, I would get the under mentioned
|
| Question and looking for good example of Windows Service | 18 May 2006 08:36 GMT | 4 |
I just installed VC++ 2005. I was using VC++ 6 before. So I need to create a Windows Service. I tried to use wizard but code that was generated seems to be a .Net related. In fact I expected that VC++ mean normal VC++ just like it was in the early days. So currently I have two
|
| Windows Control Library | 18 May 2006 08:25 GMT | 5 |
I have developed a Windows Control Library in VC.NET The component will play back video files and this component is used in C# applications to display multiple videos simultaneously. The problem I face in this is am not able to play more than one video
|
| Thread count of a Process | 18 May 2006 07:38 GMT | 2 |
In native/unmanaged vc2k5, I want to get the thread count of my process. What apis do I have to use to get the thread count? Regards, Ab.
|
| Get a number with spcific number of digits after the point | 17 May 2006 17:07 GMT | 2 |
With c# ,I want to get a number with a spcific number of digits after the point , for example if the specific number is '2' : for this number 334.23523
|
| Else for a Switch statement | 17 May 2006 12:15 GMT | 3 |
In c# , I have a Switch statement , and I want to add default value that will be executed , if all the other "case" options not match to the condition. What is the syntax to else (all the other "case" options not match to the condition) in switch statement?
|