| Thread | Last Post | Replies |
|
| Specify System.UInt64 values | 21 Nov 2004 18:45 GMT | 2 |
Whenever I try to set a value of a System.UInt64 I get: Dim var1 As System.UInt64 = &H18B377544DD23334 Error BC30311: Value of type 'Long' cannot be converted to 'System.UInt64'. What is the correct way?
|
| Remove NULLs | 21 Nov 2004 18:36 GMT | 2 |
I have created a byte array (1000 in size) to recv a network packet. I recv the packet, which varies in size, and need to put the packet in a string; so I can append another string after the packet string. The problem is the packet string apparently has nulls or something in the ...
|
| Comparing Types | 21 Nov 2004 18:22 GMT | 3 |
Why won't either one of the below If expressiions evaluate to TRUE: Dim ob As Object ob = "This String" If ob.GetType Is Type.GetType("String") Then
|
| Debug stepping out-of-sync? | 21 Nov 2004 17:47 GMT | 1 |
Don't how I managed, but ... now when I attempt to step thru code via debug, the debug highlight (current instruction) is incorrect, i.e., it highlights maybe 1/2 of an instruction, highlights comments as though they are being executed, skips instructions, etc. Any idea how I ...
|
| Advice on Coding standards | 21 Nov 2004 17:22 GMT | 4 |
Is it just a good practice to fully qualify an object reference or does it enhance performance? For instance, if I have a Combo box, cmbMyCombo, on a form, which is better? 1. cmbMyCombo.SelectedIndex = 0
|
| How do you reference row values in a hierarchial datagrid table | 21 Nov 2004 16:38 GMT | 3 |
I have a parent-child datagrid. I want to select a row in the dropdown child "subgrid." How is the "subgrid" referenced? TIA, Larry Woods
|
| Access to Controls created by code | 21 Nov 2004 15:16 GMT | 2 |
I have created various controls by code and added them to a form. I need for some of them (TextBox) to modify the value. I use the folowing code to obtain the TextBox wich name is given by sName. But Me.Controls does not contains my TextBoxes but only the controls
|
| Event question | 21 Nov 2004 14:23 GMT | 1 |
This is probably not my best phrased question, but here it goes... I have an user control I'm writing that allows the programmer to drop additional controls on the control. I have some code in the user control's DragDrop event. When a control is dropped on my user control, the ...
|
| Question on DataSource Updates | 21 Nov 2004 14:05 GMT | 1 |
I have a question. When using a DataGrid, I want to make sure the datasource gets updated every time the user makes changes and navigated to a new row. The way I am doing it now, is I have a PositionChanged event on the
|
| Pay mp3 | 21 Nov 2004 13:21 GMT | 2 |
How can I play some mp3 in Vb.NET? I try Dim player As New MediaPlayer.MediaPlayer player.Open("c:\music.mp3")
|
| Invalid Unicode Characters written by VB.NET dataset | 21 Nov 2004 13:18 GMT | 1 |
How can I prevent my VB.NET dataset from writing invalid unicode characters when using the WriteXML method? This results in an XML document that will neither validate nor transform. Some of my data is unknown HTML content. I see that the method has replaced
|
| Problems with the contructor/new() method in the subclass | 21 Nov 2004 13:05 GMT | 2 |
I've got a class as follows, PUBLIC CLASS BaseClass Sub New() End Sub
|
| Switching Forms | 21 Nov 2004 12:11 GMT | 4 |
I have a command button that needs to link to another form in the project. In VB 6 this was easy. However, I cannot figure out how to open up the form in .NET. Thanks,
|
| Server name and app name | 21 Nov 2004 11:25 GMT | 1 |
Is there a way to get the servername and the web application name with vb code? i.e. http://123.123.123.123/myapp (server: 123.123.123.123 and app my app)
|
| Console application | 21 Nov 2004 08:54 GMT | 2 |
What is the method I need to invoke to have a console application pause for user input before continuing execution? IOW, I need the console app to execute, display a prompt, pause for the user to enter an input value, and, after the user presses ENTER, read and assign
|