Search results for query: *

  1. S

    Running a Prog. in safemode?

    Hey guys, I have written a little program to remind me of selected things. I have recently changed it to also act like a security program. It prevents access to my system and is password protected. The question I have is, is there a way to get this program to run when the computer is booted in...
  2. S

    Where is the VS 6.0 -> VS .NET converter?

    Auto function! Hey! It is not a selectable item. Start Visual Studio.Net, go to File, then Open Project. Select the Visual Basic6 project that you want to convert. It will convert the project and load it as a Visual Basic.net project. It will list any problem spots in the project with a...
  3. S

    Converting this from VB6 to VBnet?

    Thanx for your interest! Hey guys I got it all working. It took me some brain storming or should I say some brain melting. Any way here is the finished code in VBnet. It seems to work fine. PublicDeclareFunction FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName AsString, ByVal...
  4. S

    Converting this from VB6 to VBnet?

    Not there yet! OK, I got most of this workout except for this section: Dim Val1 As String ReadProcessMemoryStr(pHandle, &H1000070, Val1, 1, 0&) 'Reads as String TextBox1.Text = Val1 In VB6 it would look like this: Dim Val1 As String * 1 ReadProcessMemoryStr(pHandle, &H1000070...
  5. S

    Converting this from VB6 to VBnet?

    The code converter converts it as is. But the code does not work in VBnet. Works great in VB6. Thanx
  6. S

    Converting this from VB6 to VBnet?

    Thanx for any help. The code below worked well in VB6 but as I was hobbiest in vb6, I am floundering in VBnet. Please help me convert this, VBnet seems to dislike this code. Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As...
Back
Top