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 > march 2005 > threads for sunday march 20

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 31

Windows form field validator
Posted by J at 3/20/2005 9:17:20 PM
I've seen a form field validator for ASP.NET but does such a beast exist for a windows form in VB.NET? Thank You! ...more >>

MenuItem35.PerformClick()
Posted by S Shulman at 3/20/2005 8:47:13 PM
Hi I am using the following method "MenuItem.PerformClick" in order to open a menu but it doesn't work Any suggetions? Shmuel Shulman SBS Technologies LTD ...more >>

XML Parser coding help
Posted by OpticTygre at 3/20/2005 8:20:04 PM
Hey folks, I'm wondering if I'm doing this the best way... I want to take an XML file with only Parameters in the nodes, ie: <MyTag Path='C:\SomePath' FileType='TXT'/> or <MyTag Value1='1' Value2='0' Value3='6' Value4='1234'/> and capture all the values into an arraylist. One note to add...more >>

change caption
Posted by notregister at 3/20/2005 6:55:02 PM
hi, in VB6 i can change the caption of the form by using frmMain.Caption = "ABC" how do i change it in .NET?? the text i want to change is found at the form1's properties > Appearance> text Thanks...more >>

Process Class hangs
Posted by Blaz Ziherl at 3/20/2005 6:31:58 PM
I want to pass DOS commands to cmd.exe using Process class. I have one textbox for writing the input commands and another for displaying results. However, whenever I call ReadToEnd method of the StreamReader that reads process StandardOutput, the whole thing hangs, unless I call "exit" command b...more >>

Huffman Compression
Posted by james at 3/20/2005 5:54:45 PM
I have ran into a little snag on an old database application I am converting. Out of 63 tables(all seperate files) , two of them are compressed using Huffman Compression. I have been searching all over the net (don't hit me too hard if you know a place I didn't look) and MSDN and cannot find an...more >>

WinForms DataGrid - Avoiding Paint, Brushes, Table/Column Styles etc. - Can Infragistics or ComponentArt Do It Better?
Posted by Richard at 3/20/2005 5:07:33 PM
Rather than all that painting, brush, etc. code to change the styles of a ..NET datagrid to start with and on the fly, I'd rather be able to set a lot of the stuff in the designer properties of the grid. Would I buy any code savings buy using an Infragistics/whatever datagrid? Any recommendations...more >>

Distributing EXE via Academic VS.NET?
Posted by Brett at 3/20/2005 3:51:56 PM
Is there a restriction with the academic version of VS.NET 2003 in the way of distributing an EXE? Or, what is the difference in this version and the commercial versions with respect to distribution? Is there some mechanism in place that prevents distribution? Thanks, Brett ...more >>



How get the version of the DLL ??
Posted by lb at 3/20/2005 3:47:21 PM
Hi, I would like to get the version of the DLL by programming in vbnet (what one finds in the properties with the right click button). How may i do ?? Thank you!!! ...more >>

Functions.
Posted by Nocturnal at 3/20/2005 3:43:24 PM
What is a function, how do you pass something to a function? Can anyone elaborate on this for me? I'm rather new to programming. ...more >>

Opening new web page
Posted by Nikolay Petrov at 3/20/2005 2:50:23 PM
How to open a new browser window from code? I have an asp page with long running task, and I wish to show status on a second page, but I don't know how to make the browser to open this second page in a new windows. Also how can i make the browser not display it's menu and toolbars? Like the ...more >>

Binding to Arraylist
Posted by Michael C# at 3/20/2005 2:49:47 PM
I'm binding a Combobox to an Arraylist, and I'd like to set the ValueMember and DisplayMember properties of the Combobox. Is this possible, or do I need to bind to a DataTable? Thanks ...more >>

MSWord Interop problem VB.NET 2003
Posted by Bill S. at 3/20/2005 2:48:32 PM
Hi, I compile my program and install it on another machine, but I get this error "File or assembly name interop. Word, or one of its dependencies, was not found." I can install VB.NET on the other machine and compile it and still get this error. However, when run the program from the IDE, o...more >>

MOD operator
Posted by Michael C# at 3/20/2005 2:21:41 PM
A statement of the form (m mod n) uses the sign of the first operand (m) as the sign of the result. I've ecnountered an issue where I need it to use the sign of the second operand. Here's what it looks like now: -363 mod -60 = -3 -363 mod 60 = -3 363 mod -60 = 3 Anyone have any ideas? ...more >>

Shell extension hadlers
Posted by Nikolay Petrov at 3/20/2005 1:54:18 PM
Any idea where I can find information on creating Shell extension hadlers in VB .NET? ...more >>

Mostar imagenes utilizando vb.net Web
Posted by Giovanni Cobos at 3/20/2005 1:51:18 PM
Hi friends I am developing a Web Page in Visual Basic .NET, and I am using Access as Database. In this database I have fields which are graphics and I want them to be loaded and visualized in my Web Page. I am using Ado .NET, maybe you may know the right way to do this or maybe you can give...more >>

User-defined function
Posted by chreo at 3/20/2005 12:35:09 PM
I have user-defined function in MSSQL which returns Table (with 10 columns) (sorry for Polish names) CREATE FUNCTION PACZKI_Z_AKCJI (@AKCJA_ID int) RETURNS TABLE RETURN SELECT TOP 100 PERCENT dbo.PACZKI.ID_PACZKI, dbo.PACZKI.ID_AKCJI, dbo.PACZKI.NR_PACZKI, dbo.PACZKI.ILOSC_KUPONOW, ...more >>

Combining files.
Posted by Qwert at 3/20/2005 12:11:20 PM
Hello, is there a way to combine multiple files into 1 file with VB.NET? Example: Dim MyList As New ArrayList() MyList.Add("File1.txt") MyList.Add("File2.doc") Pack(MyList , "AllMyFiles.dat") .... Unpack("c:\MyDirectory", "AllMyFiles.dat" ) .... Thanks. ...more >>

Re: Dispose Again!
Posted by Cor Ligthert at 3/20/2005 8:42:20 AM
Scott, My text is unreadable sorry. I have read what you wrote about "SHOULD" as wel oftenl, mostly is than written that for every class that has a dispose the dispose method SHOULD be used. This would mean that every label, checkbox, etc etc. should be disposed, because they all deriv...more >>

Inherited class behavior vs. C#
Posted by twawsico at 3/20/2005 7:26:25 AM
I ran into this while converting some DX C# code to VB.NET (VS 2003), and I'm just curious as to whether this is intended behavior (and if so, where might I read up on it) or more of a bug. This involves creating a New instance of a derived class that inherits a base class. In C#, private memb...more >>

Set Controls dinamically? is this for experts?
Posted by Marcos Beccar Varela at 3/20/2005 6:23:48 AM
Hello! I´m a newbbie in VB.NET and I´m having a problem. I have many forms and I need to create a label (for example) in each of them. Is there a way to make a function which I can call it from any form and that this function creates a label and sets a text and position in the form, where the...more >>

Replace
Posted by Tony at 3/20/2005 1:33:12 AM
Win XP Pro - access 2002 - vs 2002 - vb Can someone tell me why this doesn't work? Dim MyString as string MyString = "Winner's" Mystring.replace("'", " ") I'm trying to remove any single quotes from my data, so I don't get Sql query errors. It doesn't really matter what values I look...more >>

VB.NET program coversion to Web Interface
Posted by Jim Florence at 3/20/2005 12:44:02 AM
Hello, I've just started on .NET and was asked if there was an easy way to convert a VB.NET app to a web based version without having to re-code the whole thing Many thanks for any pointers Regards Jim Florence ...more >>

Socket Exception Please Help....
Posted by Rik at 3/20/2005 12:00:00 AM
Hello Experts, I have a communication server in VB.NET. It was working fine from last 6 months, but now start giving error message like that. 21-03-2005 07:58:27 DoListenSystem.Net.Sockets.SocketException: A blocking operation was interrupted by a call to WSACancelBlockingCall at System...more >>

How can I show the flow chart in vb.net ?
Posted by Agnes at 3/20/2005 12:00:00 AM
I will use visio to draw a flow chart to show the module flows . Can I do it in vb.net ?? or I should use visio to draw it. and then make it as image file ?? Or... anyother suggestion ? Thanks a lot ...more >>

VB6 - problem saving and opening a project
Posted by Richard Wright at 3/20/2005 12:00:00 AM
I'm totally new to VB. When I save a project, it saves without any fuss. I can then open it with no fuss from VB - but on the screen no forms appear. It is as though the project is not there, except that when I press F4 the project name appears for the properties. I can faultlessly ope...more >>


DevelopmentNow Blog