Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
all groups > vb.net > november 2006 > threads for friday november 3

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Accessing an arraylist from multiple forms.
Posted by Paulers at 11/3/2006 11:13:48 PM
Hello all, I have 2 forms, form1 and form2. I am trying to store some objects in an arraylist and have the arraylist be accessible by both forms. How would I go about doing that? I think I might have to pass the arraylist object to the second form so that it can access the objects inside the ...more >>


incorrect string format
Posted by RipperT at 11/3/2006 6:30:40 PM
Don't know if this group covers web apps, but here goes. In VS 2005, I am trying to get variables to hold thier values during postback from the server. I convert a text box's user-keyed value to an integer and assign it to a module level variable, then convert the variable and assign it to a ...more >>

Resource File Woes
Posted by TCook at 11/3/2006 3:46:33 PM
Hey All, I'm trying to add a resource file to my app but it's not working. I have done the following: -- Added a .resx file -- Added some strings -- Named the file "MyStrings.en.resx" -- Add the file as a resource to the "Project" > "Properties" > "Resources" -- Tried to call the string...more >>

Fundamental OOP inheritance question
Posted by RSH at 11/3/2006 3:40:00 PM
Hi, I have been construction a sample application to further my growth in applying OOP concepts in .Net. My code is structured like this: Person |-- Employee |--- Customer CatalogItems Order OrderLineItems So my instantiation looks like this: Dim i1 As CatalogIte...more >>

[Regular Expression] (aaa AND bbb) OR (ccc AND ddd)
Posted by teo at 11/3/2006 2:35:04 PM
I need to implement a boolean evaluation in a Regular Expression like this: (aaa AND bbb) OR (ccc AND ddd) (see the #3 case) - - - 1) If I need to match a single word only, no problem: MyString = "hallo" MioMatch = Regex.Match(MyBigText, MyString) 2) If I need to m...more >>

don't show error windows
Posted by Vicente GarcĂ­a at 11/3/2006 2:04:33 PM
Hello all, First of all sorry for my bad English... I am making up an application that can't show any error window (e.g. Can't write to memory address) if any...therefore I wish destroy or manage this type of windows.. Please, may anyone help me? Thanks in advance... Vicente. ...more >>

Merge/Synchronize XML Files
Posted by Meelis Lilbok at 11/3/2006 1:45:41 PM
Hi is for synchronizing two xml files any fast solution? Lets say i have 2 xml files 1.xml and 2.xml 1.xml contianes <test> <t id="1">Hello</t> <t id="2">World</t> <t id="3">Good bye!</td> </test> 2.xml containes <test> <t id="1">Hello</t> <t id="2">World</t> ...more >>

Altering a DBF File
Posted by JimmyKoolPantz at 11/3/2006 12:20:30 PM
IDE: Visual Studio 2005 Language: VB.NET Fox Pro Driver Version: 9.0.0.3504 Problem: I currently have a problem altering a DBF file. I do not get any syntax errors when running the program. However, after I alter the table and open microsoft excel to look at any changes; I get the follow...more >>



Deleting Values from an XML node?
Posted by Major Aardvark at 11/3/2006 11:41:56 AM
Hi Why is it that when I attempt to delete all values from a node in an XML file using the code below, I end up with the values being deleted, but not the tags? The code i have is: Dim CountryCodeValueNodes As XmlNodeList Dim CountryCodeValue As XmlNode CountryCodeValueNodes = confi...more >>

Unable to remove Beep on Alt+A
Posted by Paul at 11/3/2006 8:42:41 AM
I created a sample Project with a basic form and one text box. I put "e.Handled = True" on every KeyDown, KeyPress and KeyUp event for both the Form and the TextBox. When I run the app, and press the Alt+A (or any Alt+character) button, it beeps (very annoying). Does anyone know why and how t...more >>

Error 500 ONLY on first postback from certain controls
Posted by teddysnips NO[at]SPAM hotmail.com at 11/3/2006 8:33:49 AM
Visual Studio 2005 I have a moderately complicated form. It has four User Controls, which are (somewhat simplified): 1. A tree control showing an employee hierarchy Below a tab strip with three tabs: 1. A User Control containing a check box (AutoPostback = True), a couple of labels ...more >>

Can reflection tell the base class of an object?
Posted by stktung NO[at]SPAM yahoo.com at 11/3/2006 8:22:41 AM
Hey guys, Are there functions in reflection that gives information about the base classes of an object? Thanks in advance -Steve ...more >>

interact with a windows service remotely
Posted by graphicsxp at 11/3/2006 5:06:23 AM
Hi, I have written a windows service in .net. I install it on my server and now I can start it and stop it remotely from any machine on my network using a .net application that i wrote too. However I would like to know how I can receive messages from the windows service. For example I would l...more >>

VB6 query format for comparing number value
Posted by prateek at 11/3/2006 3:15:03 AM
hi all i am using VB6 and Access i was trying to select data with a particular value in a field as Dim str1 As String str1 = "select * from booking where psngr_id = '" & Text1.text & "'" Adobkgview.RecordSource = str1 Adobkgview.Refresh I am supposed to retrieve records where psngr_id is...more >>

Prevent Date Enter before Current date
Posted by prateek at 11/3/2006 3:07:49 AM
Hi all using VB6 with Access how to prevent date enter before the current date. Please give me the syntax / code thanks ...more >>

Problem with Calendar Control
Posted by prateek at 11/3/2006 3:06:07 AM
Hi all. I am working with VB6. I am using Microsoft Calendar Control 8.0 to enter date in a text box. as >text1.text=calendar1.value< it is working fine . After i took it to another machine , clicking on the calendar causes VB error and VB closes down. Can you help me. Prateek ...more >>

Printer Ink Status
Posted by up3umrmuofnz3pd NO[at]SPAM jetable.org at 11/3/2006 12:01:01 AM
Hi guys, I'm working on a small desktop publishing software project where I need to display the default printer's ink status/level in the status bar of the main form. For the past 2 days I've been trying to find a way of getting the printer ink level from the printer but I haven't been able t...more >>


DevelopmentNow Blog