Search results for query: *

  1. A

    Question pc to pc communication with Server/Client

    Its kinda normal ... {Internet} ---- {Modem} --- {Router} --< {Both PCs} if it looks like that ... you need to use the internal address {PC1} --- {Router} ---{Modem} --- {Internet} --- {Modem} --- {Router} --- {pc2} if it looks like this ... you need to setup the routers
  2. A

    Question pc to pc communication with Server/Client

    you probably aren't screwing up ... you are probably being blocked are there any personal routers in the way ?
  3. A

    Question Link to google with input in textbox

    System.Diagnostics.Process.Start("http://www.google.com/#hl=en&source=hp&q=" & textbox1.text.replace(" ","+") something like that
  4. A

    Concatenate the name

    change this Private Sub picOn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles picOn.Click picOn.Visible = False picOff.Visible = True lblMessages.Text = txtName.Text lblMessages.Text = "Turn off the light" to this Private Sub picOn_Click(ByVal sender As...
  5. A

    Automated "Simon Game" Player

    I think your making it hard on your self ... I would make each circle its own picture box and just store the order and number of times the picturebox was clicked in the click event
  6. A

    DirectX click object?

    I used a "pick" sub ... that worked to finding the if i clicked in the mesh or not Private Function MeshPick(ByVal mesh As Direct3D.Mesh, ByVal x As Single, ByVal y As Single) As Boolean Dim v3Near As New Vector3(x, y, 0) Dim v3Far As New Vector3(x, y, 1) Dim...
  7. A

    Direct 3D

    Ok a little update ... I put a spot light on the spot that I wanted to paint ... which works great until I rotate the "world" the spot light stays in the same place ... does anyone know of a way to rotate the light with the world ... or a better way to "paint" that area any help would be great...
  8. A

    Question pc to pc communication with Server/Client

    the address 127.0.0.1 point back to itself ... somewhere in your program you need to give it the address of the other computer ...
  9. A

    Question pc to pc communication with Server/Client

    that is connecting to itself ... . are you running the client and the server on the same machine ?
  10. A

    How to make sinusoid graphic

    This might not work ... but why don't you try adding a serialsensor to the timer tick Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick 'read the voltage: Serialsensor 'Added this to get the lastest reading volts = value 'get...
  11. A

    How to make sinusoid graphic

    do you call Serialsensor more then just on the load ... I only see where the data from your serial port is being read once ? It looks to me that there will only ever be one value placed in the queue ?
  12. A

    Direct 3D

    anyone know how to "paint" a spot on a direct 3d mesh I have a vector set that I want to put a red spot on ? anyone have any ideas ?
  13. A

    How to make sinusoid graphic

    Do you know how to create a GDI layer ? your going to need something like this Dim g As Graphics = PictureBox1.CreateGraphics g.DrawArc(New Pen(Color.Black), 1, 1, 100, 100, 5, 10)
  14. A

    Picturebox rotating

    ...For i As Int16 = 0 To 3 corners(i).X -= cx corners(i).Y -= cy Next i Dim theta As Single = Degrees * PI / 180.0 Dim sin_theta As Single = Sin(theta) Dim cos_theta As Single = Cos(theta) Dim X As Single Dim Y As...
  15. A

    Question Problem with Insert Command

    Whats your database layout like ?
  16. A

    How do I scan?

    why do you want to use twain ? is there a certain reason ? ... you should probably look in to WIA
  17. A

    Question Forward & Back Navigation

    if you could explain it a littler better maybe I could help
  18. A

    Picturebox rotating

    ...For i As Int16 = 0 To 3 corners(i).X -= cx corners(i).Y -= cy Next i Dim theta As Single = Degrees * PI / 180.0 Dim sin_theta As Single = Sin(theta) Dim cos_theta As Single = Cos(theta) Dim X As Single Dim Y As...
  19. A

    Question Forward & Back Navigation

    I think your looking for this : Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown Debug.Print(e.KeyValue.ToString) End Sub The next key produces a 176 the prev key produces a 177 on a microsoft keyboard 6000 series
  20. A

    Picturebox rotating

    do you just displaying an image file in a picture box ? (if so bitblt is what you need to be looking at)
Back
Top