Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

Sebzy

@Sebzy
About
Posts
4
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Oracle question
    S Sebzy

    Yep have a look at this Namespace: System.Data.OracleClient OracleConnection http://msdn2.microsoft.com/en-us/library/system.data.oracleclient.oracleconnection.aspx OracleCommand http://msdn2.microsoft.com/en-us/library/y051k82s(en-US,VS.80).aspx OracleCommandBuilder http://msdn2.microsoft.com/en-us/library/0ca0k1ad(en-US,VS.80).aspx Example The following example uses the ExecuteReader method of OracleCommand, along with OracleDataReader and OracleConnection, to select rows from a table. Public Sub ReadMyData(ByVal connectionString As String) Dim queryString As String = "SELECT EmpNo, DeptNo FROM Scott.Emp" Using connection As New OracleConnection(connectionString) Dim command As New OracleCommand(queryString, connection) connection.Open() Dim reader As OracleDataReader = command.ExecuteReader() Try While reader.Read() Console.WriteLine(reader.GetInt32(0) & ", " _ & reader.GetInt32(1)) End While Finally ' always call Close when done reading. reader.Close() End Try End Using End Sub

    Visual Basic question database oracle

  • keyboard hooks stop Web Browser VS.net 2005
    S Sebzy

    Disable the web browser and now the issue is just the hooks dose anyone else have VS-2005 to try run the code ???

    Visual Basic csharp php visual-studio com help

  • keyboard hooks stop Web Browser VS.net 2005
    S Sebzy

    Have used the keyboard hooks from http://www.developer.com/net/vb/article.php/10926\_2193301\_3 Looks great but having a strange problem whenever the form loads the browser dose not navigate unless i remove the hooks anyone know whay this is happening On form load the following is run Code=> Dim Urladd As String Code=> Urladd = "http://www.google.ie" Code=> WebBrowser1.Navigate(New Uri(Urladd)) Code=> HookKeyboard() when the form closes Code=> UnhookKeyboard() Code=> Me.Close() Seb ....

    Visual Basic csharp php visual-studio com help

  • how do i retrieve remote MAC address using vb6?
    S Sebzy

    Might help Look at SendARP http://www.codeguru.com/Cpp/I-N/internet/internetprotocolip/article.php/c6153/ Seb...:)

    Visual Basic question help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups