Search results for query: *

  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

    I've seen it in MSDN Library too but I don't understand why this is not working. The language used is Visual Basic .net so the types are not exactly the same but I tried to map them in Visual Basic .Net as you have seen above. Do you know what I did wrong or do you have any idea of how I can...
  3. S

    Getting all SQL Servers on the network

    Well I've forgot to mention that I called NetServerEnum to get the list but seems that it returns some value like 2351. And that on the network there are actually more than 2 SQL Servers.
  4. 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, _...
  5. S

    Splash Screen and MDI Forms

    Thanks a lot ;)
  6. S

    Splash Screen and MDI Forms

    Thanks to both of you, both solution works. Since I am new to VB .Net, can you please tell me then, if I apply the solution provided by Kulrom, will I be able to deploy my application without any impact?
  7. 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