| where is the printer class (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I am a new user of .net, who can told me where can I find the "RRINTER" class? Is it as easy as the old VB6 class to use? thanks! John |
|
| Can I create an object that is a thread (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I have managed to create a thread that is basically a sub procedure easily enough. However I have not managed to find out how to create an object from a class as a thread. Imagine that I wish to create an object that will start to execute and then behave in an autonomous manner... before finally deciding based on its own internal logic when to end and then to release itself from memory. (Thats ano... |
|
| Language chnages resources? (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I am converting a VB 6 app over to VB.Net and I'm running into some language conversion problems. For example, the Abs() function is apparently no longer supported, and I'm looking for it's .Net equivalent. I have a few of these issues, and I'm wondering if there is a web site or some place that lists ALL the changes made, not just an overview like most of the MSDN articles? Thanks, Kevin |
|
| DataGrid Navigation Causes Application Crash (3 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I've been struggling with a problem for a week or so now and I've just reported it as a bug....here's a description of the problem...if anyone has seen this problem or has found a workaround, I would appreciate hearing from you. The problem occurs with a DataGrid combined with some table styles and columnstyles to format it connected to a DataSet that has some tables joined by relations. When you ... |
|
| Marshaling of arguments in VB.NET (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| Hello, I'm quite new to VB.NET and I'm trying to do something (that in my opinion) is quite hard. What I'm trying to do is use VB.NET to create a wrapper(.NET) object around a non COM DLL and use that object to comunicate with ASP.NET. The DLL I'm comunicating with is propriatery DLL (it's the ISIS database DLL from Bireme), so I cannot edit that DLL myself. I've managed to comunicate with the DLL... |
|
| Where have PSet and Point gone? (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I am trying to paint to a picturebox using Pset and Point like VB6, but these methods are not supported in VB .NET. How can this be done in VB .NET? Here is some sample code: Pic1.Pset(10,20),vbwhite 'to set a pixel color a Pic1.Point(10,20) ' to get the pixel color |
|
| Convert Picture.Line to .Net Equiv. (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I would like to use a VB6 routine that draws lines in a picturebox. 'Line' is no longer a member of the picturebox class. Any ideas on converting the following line? SignaturePic.Line (PlotXold * 15, PlotYold * 15) (PlotX * 15, PlotY * 15) Thanks, J |
|
| Byte Array (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| I am trying to change the following code from VB6 to VB.NET, but the implementation seems to have changed. Dim bCreditCardNo() As Byte, sNewCCNum As String sNewCCNum objCryptography.Encrypt(sCreditCardNo, sPassword) bCreditCardNo sNewCCNum This basically converts the encrypted Credit Card Number String into binary data. Any suggestions on implementing this in VB.NET. Thanks, Aric Levin |
|
| Control collection vs Control Array (2 replies) |
| microsoft.public.dotnet.languages.vb.upgrade |
| Hello, How can I do this in vb.net I know that I must to use a control collection, but I can t find an example about this. ' VB6. ' I have an array with 3 buttons in a form. Private Sub Form Load() cmdButton(0).caption "Button 1" cmdButton(1).caption "Button 2" cmdButton(2).caption "Button 3" End Sub Private Sub cmdButton Click(Index as Integer) msgbox "You pressed " & cmdButton(Index).caption End... |
|