Search results for query: *

  • Users: Smallville
  • Content: Threads
  • Order by date
  1. S

    Store a Byte array in SQL Server

    Hi, I am trying to store a Byte() array in SQL Server ina field of type varbinary. The problem that I am having is that in a simple SQL like Select I cannot specify things like: cmdQuery.CommandText = "Select Name, Password from USERS where Name = " & EncryptUser & " And Password = " &...
  2. S

    Getting all SQL Servers on the network

    Hi, I am using the Netapi32 windows api to get all SQL Servers running on the network. Unfortunately this is not working. Again this piece of code used to work on the Private Declare Function NetServerEnum Lib "Netapi32.dll" ( _ ByVal strServerName As String, _ ByVal level As Integer, _...
  3. S

    Splash Screen and MDI Forms

    Hi, I have created a new VB .Net Applictaion with a Spalsh screen as the start up form and an MDI form. When the user clicks on the splash screen, I want to unload the splash screen and load the MDI form. dim Main as New Main Main.show() Me.Close() However, this does not work in VB...
Back
Top