| Thread | Last Post | Replies |
|
| Literal Strings | 03 Apr 2004 10:33 GMT | 1 |
Why is there there an 'S' before literal strings in MC++ code. My programs compile with or without it so why include it? Thanks, Gaz.
|
| VB6 guru wants to get ramped up on .NET | 03 Apr 2004 09:23 GMT | 4 |
I consider myself a VB6 guru, but don't have much experience with VB.NET. I really want to get ramped up, but kind of don't know where to start Any suggestions on good books, sites, or sample code that would help Thanks Marc
|
| Event problem | 02 Apr 2004 23:21 GMT | 1 |
I use the following class in my current program Public Class Tes Public Event EventOne (ByVal obj as Object, ByVal message as String [...
|
| Can't locate source of error: Object reference not set to an instance of an object | 02 Apr 2004 22:52 GMT | 3 |
I have a TCPClient & TCPListener class that I need to stress test. Using a GUI, I built a class that would connect and send consecutive messages for 10 seconds, and log the the results in a richTextBox. Problem is that it runs for a couple seconds, then I get the following error, ...
|
| Unexpected Database Login form - Crystal Report based on DataSet | 02 Apr 2004 22:52 GMT | 1 |
I'm getting an unwanted database login form appearing when I set the Data Source of a Crystal report to a .Net dataset e.g. myReport.SetDataSource(myDataSet This only occurs on some PCs, works perfectly fine on all my PCs (Windows 2000, XP Pro), and work OK on my clients XP Home ...
|
| Event enqueing in PostMessage style | 02 Apr 2004 19:49 GMT | 8 |
I'm currently having some trouble with the event mechanisms in the .net framework. What I am looking for is a way to schedule events like it is done with PostMessage in the WinAPI: When I raise an event, the raising code should be continued. The scheduled event should just be called ...
|
| Why no LinkedList? | 02 Apr 2004 19:46 GMT | 10 |
Why isn't there a LinkedList in .NET? Was the reason that the mark&sweep GC algorithm has problems with heavily linked data? A LinkedList is very important is you have huge lists and append a new
|
| How to use session or application or cache variables in user control | 02 Apr 2004 17:54 GMT | 1 |
How to use session or application or cache variables in user control Any suggestion or code snioppets are appreciate Varun
|
| VS.NET editor: CTRL-F6 and column selection | 02 Apr 2004 17:50 GMT | 4 |
I am having two _basic_ problems with VS.NET 2003 editor (probably same for VS7) that I can't seem to figure out: 1) My CTRL-F6 to cycle through windows in the editor stopped working. What could I have done to disable it, or how can I get it back?
|
| Collection Object | 02 Apr 2004 17:03 GMT | 1 |
My Documentation tells me that there should be a Collection object available. But, when I try to use one, the compiler tells me "Type 'Collection' is not defined". I am importing the System.Collections namespace and my declaration looks like this Dim myCollection As New ...
|
| Handling problem with ListView.ItemCheck event | 02 Apr 2004 15:22 GMT | 2 |
I have a design problem involving a ListView control on a Windows form. What it boils down to is the following question: Q: Is there a way to tell the difference between a ListView.ItemCheck event that has occurred because of a mouse click on a Checkbox, and one
|
| How do I migrate certain API code to .net e.g. FileMapping | 02 Apr 2004 14:18 GMT | 1 |
I have been planning to move over to .net for some time now but I have a lot of code written in VB that uses a lot of win32 api's. The main area is reading and writing data quickly to and from file and in memory. currently I use copymemory extensively along with varptr. I want to ...
|
| Number of Developers | 02 Apr 2004 13:11 GMT | 6 |
Does anyone know the current number of C# and VB.Net developers, and anymore statistics for .Net TIA, Mike
|
| Whidbey Download, Bandwidth cap? | 02 Apr 2004 07:35 GMT | 4 |
I'm trying to download the Whidbey preview from MSDN. It's around 2.6GB in size. The computer that I'm using to perform the download is in a data center with access to 10mbps of bandwidth, yet the download only seems to be taking place at around 300kBps... Is this due to a ...
|
| static variables in C# | 02 Apr 2004 06:33 GMT | 1 |
I have a quick question. I am using a static variable to hold an instance of the StreamWriter: private static StreamWriter sw = File.AppendText("C:\\Temp\\Test.txt"); I am curious to find out how static resources are being disposed in C#. The
|