all groups > vb.net upgrade > june 2004
Upgrade Option Strict Issue
Posted by Chris Lane at 6/30/2004 2:20:02 PM
Hi,
I upgraded a VB6.0 application that uses the GetRows method to return a 2 dimensional array into a variable of type variant.
In VB.NET the Variant variable is of type object but since it's a two dimensional array I changed it to the following:
Dim Array (,) as Object
On this line:
... more >>
Install VB6 after installing Visual Studio 2003
Posted by jimdandy NO[at]SPAM shaw.ca at 6/28/2004 1:54:49 PM
Is it possible to install Visual Basic 6 on a machine that already has
had Visual Studio 2003 installed on it? If so, how is it done?
Thanks in advance for any info you can provide!... more >>
howto use GetNamedSecurityInfo
Posted by isaac rainsford at 6/22/2004 5:47:19 AM
Hi,
I'm having major troubles calling/ using GetNamedSecurityInfo in VB.NET
- however i can make it work in VB6, does anything know how this is done ?
thanks in advance... more >>
CreateProcess problems in vb.NET
Posted by Paul Schenk at 6/21/2004 6:47:17 AM
Hi All :)
Would be grateful of advice please. I have code in VB6
working as follows:
lngReply = CreateProcess(sNull, txtStart, ByVal 0&,
ByVal 0&, 1&, NORMAL_PRIORITY_CLASS, ByVal 0&, sNull,
sInfo, pInfo)
but alas, the 'equivelant' vb.Net code translated as:
lngReply = C... more >>
Printing in VB.Net
Posted by balaji r via .NET 247 at 6/16/2004 10:41:06 PM
I am right now involved in a vb to vb.net migration. Can you help me in giving me hints/tips in converting statements like:
Printer.CurrentX = (Printer.ScaleWidth - Printer.TextWidth(strTmp) - LEFT_MARGIN - RIGHT_MARGIN) / 2) + LEFT_MARGIN
There are too many similar instances, where positions a... more >>
Biggest problem to upgrade to VB.NET
Posted by Jack at 6/16/2004 9:22:03 PM
What is the biggest problem you have faced in migrating a application from VB 6 to VB .NET ? You are welcome to share your experiences.
Thanks... more >>
can't using the namespace microsoft.visualbasic
Posted by Eka Saputra via .NET 247 at 6/8/2004 11:32:15 PM
I've read that if you want to use the VB6.FixedLengthString in .net you must import microsoft.visualbasic
I've use that namespace but an error still occur. It said that Type 'VB6.FixedLengthString' is not defined. Can somebody help me solve this problem?
From: Eka Saputra
--------------------... more >>
Simple Property question
Posted by FOP at 6/8/2004 2:51:02 PM
Hi
Does any one know how can I declare a property as an array??
I build a structure called sListItem for my property's type
Public Property ListItems() As sListIte
but this property is supposed to be an array! I need to call
ListItems(1).xx
I've already read a lot but I couldn't find any... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
vb.net aspx page
Posted by ANOOP at 6/1/2004 5:21:03 AM
hello
Can I write javascript in my .aspx page, if possible how... more >>
|