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 > september 2004 > threads for saturday september 11

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

Add A Simple Sub
Posted by shachar at 9/11/2004 10:13:07 PM
hi all. in vb6 i choose "tools --> Add procedure" and then i'd choose if it's a sub/property/function .. how can i do it in vb.net IDE ? (from the menu) thanks....more >>


Setup project
Posted by Rob Meade at 9/11/2004 9:55:50 PM
Hi all, Just creating a setup project now, I've discovered how to create a shortcut icon in the users program files menu, however, I want to create 2 shortcuts, one to actually launch the program, and one to take them to the directory it was installed in. Whenever I set the target property ...more >>

Changing the default icon for the .exe?
Posted by Rob Meade at 9/11/2004 8:38:48 PM
Hi all, After some success work today I've built my first app! yay! anyway, minor thing but I dont like the standard white/blue windows program icon - how can I change this to use my own? Any info appreciated. Regards Rob ...more >>

How to find out if character is in caps or not?
Posted by jarosciak NO[at]SPAM gmail-dot-com.no-spam.invalid at 9/11/2004 7:36:04 PM
What I really need is a short simple solution for this scenario: Imagine word like this: "TheSimpleSolution" I need to turn it to: "The Simple Solution" I need a solution, something which would turn connected words and separate them using spaces. Basically, a script which would add the sp...more >>

Path to file?
Posted by Rob Meade at 9/11/2004 7:33:41 PM
Hi all, I'm developing a mini Windows app in Visual Studio, and I'm a bit stuck. I'm more used to developing web based apps, and whilst still new at that have stumbled across something I cant seem to do - thus require your most excellent skills to resolve it for me :o) I have an xml file ...more >>

Hex conversion to Int - Bug or My misunderstanding of VB.Net
Posted by Dennis at 9/11/2004 6:05:02 PM
I get the following results: Cint(&HC5798A2F) returns -981890513 as it should and Clng("&HFFFFFFFFC5798A2F") returns -981890513 as it should. However when using a string Cint("(&HC5798A2F") returns an overflow exception. Shouldn't the Cint return the same value for the same hex form...more >>

Problem with setup application
Posted by jy836 at 9/11/2004 3:55:20 PM
I have created an application with VB .NET, made a setup program for it, and placed the MSI file on the Internet for download. However, one of the users had a problem, described in the following few NG posts: ----------- > "-Anonymous user- wrote in message... >> how does this install? ...more >>

subroutine with timer requirement
Posted by mark at 9/11/2004 3:53:02 PM
I have a sub which needs to do some things then wait a specified length of time before going on. I tried adding a timer with counter in its tick event then checking the state of the counter in the subprocedure. But this doesn't work: dim progress as single Sub mysub stuff timer1.enab...more >>



BIG Problem - Please HELP
Posted by Tiraman :-) at 9/11/2004 2:23:07 PM
Hi Everyone, i have the following problem in my client-server Application My server take array and serialize it into the memorystream Dim ns As NetworkStream = client.GetStream() Dim writer As New IO.StreamWriter(ns) Dim bf As New BinaryFormatter ...more >>

How to use IsLeapYear method ?
Posted by prosoft at 9/11/2004 2:03:24 PM
When I do Dim s As String = (myDTFI.GetMonthName(i)) how do I know if the month name is correct because in a leap year it's different ? ...more >>

How to get name of month
Posted by prosoft at 9/11/2004 1:25:47 PM
When I use Dim myDTFI As DateTimeFormatInfo = New CultureInfo("he-IL", True).DateTimeFormat Dim strhmon1 As String = (myDTFI.GetMonthName(hmon1)) MsgBox(strhmon1) I get the local name of the gregorian month. How do I get the local name of the local month ? Tia ...more >>

Creating Callback funtions
Posted by David at 9/11/2004 12:38:20 PM
Hi There! In VB6, I've used Timer control to create CallBack functions (which was/is suck). I understand VB.NET has became a full OO langauge. So I'm just wondering if any of you could point me to any sample or tutorials outlining how I can create "callback" processes (or asynchronous proce...more >>

Charts
Posted by DR BILRO at 9/11/2004 11:47:07 AM
it was perfect. soberb!! instead to send it to the cosole i added to a array of PointF and then i can work easily with the points. now i have the point ready. the hard part : i need to show them. i need to draw a chart like it's done in Excel but on my on. each point connects to the fo...more >>

References to references
Posted by michael at 9/11/2004 10:11:06 AM
I have 2 forms. In the first, I have a reference to an object. I want to assign an object to that reference from within the second form. If I pass the first reference to the new(...) method of the second form ByRef, I can easily assign an object to the reference in the first form. However, ...more >>

References to references
Posted by michael at 9/11/2004 10:11:04 AM
I have 2 forms. In the first, I have a reference to an object. I want to assign an object to that reference from within the second form. If I pass the first reference to the new(...) method of the second form ByRef, I can easily assign an object to the reference in the first form. However, ...more >>

References to references in VB .NET
Posted by michael at 9/11/2004 10:01:05 AM
I have 2 windows forms. In the first form I have a reference to an object. I want to assign an object to that reference from the second form. If I pass this reference to the new(...) method of the second form ByRef, I can easily assign an object to the reference in the first form, as long as I...more >>

Dbgird
Posted by Paps at 9/11/2004 9:09:00 AM
Hi, I have poulated my grid but want to restrict users from entering only date in the second col with the specified format as in MM/DD/YY. How do I set Character Casing for the third col of my grid. Tnx ...more >>

Abstract Class
Posted by Ornez at 9/11/2004 7:35:01 AM
Hi, My customer has an abstract class with some interface A . he wants me to Inherit his Class and implement the intrface with some functionality in a new class B. I need to know how he would access my implementation without a Reference . Can a base class generates his derived classes ? L...more >>

FileSystemWatcher
Posted by John at 9/11/2004 12:57:57 AM
How do I know if the directory I just created or deleted is a directory but not a file? ...more >>


DevelopmentNow Blog