| Thread | Last Post | Replies |
|
| Threading and loops with subroutines | 26 Oct 2004 03:15 GMT | 5 |
Heheh...I've got lots of questions today. If I have a loop that calls the same subroutine several times (that subroutine may be processor and network intensive): For i = 1 to 100
|
| Problem using a custom control | 26 Oct 2004 03:13 GMT | 1 |
Okay, I haven't hit it problem before. I'm writing a program, and as part of the solution, I've created an user control. I dragged some labels, progress bars and a button onto the control's form. No code yet. If the control hasn't be placed on the program's form, I'm able to ...
|
| dataset basic navigation | 26 Oct 2004 03:08 GMT | 1 |
Hi, Please forgive me for the simplicity of the question, and the redundancy. I have searched the forum and believe my answer is out there amongst the multiple dataset question/responses, but I am such a newbie that I am having trouble putting together the information I
|
| Dynamic call .net object | 26 Oct 2004 02:26 GMT | 3 |
Can I dynamic call vb.net object such like vb6 as sample dim A as object set a = createobject("myobject.test")
|
| Parsing XML content | 26 Oct 2004 00:28 GMT | 4 |
Hi, I hope this is the right place to ask. I have an xml file thus: <?xml version="1.0" encoding="UTF-8"?> <Message xmlns="urn:myurl-org:ns2"
|
| How to deconstruct the result of bitwise OR | 25 Oct 2004 23:58 GMT | 3 |
this is probably trivial, but, I just am not sure how to do it. Say I have an argument for a routine that is an enumeration such as moNone 0 'None moLong 3 'Long
|
| How can I get Assembly Name? | 25 Oct 2004 23:22 GMT | 5 |
Application.ProductName returns the root namespace. How do I get the assembly name as displayed on the project properties dialog? Tom
|
| Machine.shift.left???? | 25 Oct 2004 23:04 GMT | 3 |
Using a CSharp to vb.net converter, I've been stuck on a single line of code for hours Original C# code uint result = dcb.Flags & (mask << whichFlag);
|
| Scale Width and ScaleHeight | 25 Oct 2004 21:47 GMT | 2 |
Does anyone have an alternative to convert a panel's width and height in pixels to Inches other than assuming that there are 96 pixels per inch and then Width/96 Height/96? I also need to track down distance in the mouse move event in inch. Thanks in advance for all suggestions
|
| Error with automated execution | 25 Oct 2004 21:18 GMT | 5 |
I am opening a connection on a shared db as below which works fine when used in a vb.net win app. Conn = New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=F:\Events Data\Events Data.mdb;User Id=admin;Password=;")
|
| To Flush or Not to Flush | 25 Oct 2004 21:16 GMT | 1 |
Do I really need to flush a streamwriter? It appears to work either way. Dim sw As StreamWriter Dim strFullPath As String = "C:\Temp\Test.txt" If File.Exists(strFullPath) Then
|
| TextBoxes that accept only numbers | 25 Oct 2004 21:13 GMT | 6 |
We have access to Infragistics etc., but we would like to make use of a regular VS textbox so that it accepts only numbers. We have discovered that if you bind an integer field to a textbox, for example, the textbox will only accept numbers. This is nice but what do you do about ...
|
| Enter Key question | 25 Oct 2004 20:56 GMT | 2 |
I know this has probably been hashed out before and hopefully the answer is a simple one, but here is the problem: I have a small windows form where the user inputs the user id into the first text box and then the password in the second textbox. This form then has a
|
| Text box questions revisited | 25 Oct 2004 20:55 GMT | 2 |
I posted some questions about text boxes and received a reply which partially resolved the issues. 1. I want to construct a text box (or rich text box) where if you type a space a dot character appears in the box. (like MS Word when the formatting
|
| Stumped | 25 Oct 2004 20:47 GMT | 5 |
I have an MDI application. When the user selects File/Exit, the following code executes: Do While Me.MdiChildren.Length > 0 Me.MdiChildren(0).Close()
|