CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dedub

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    1,313

    Re: radians vs degrees

    Mike, thanks for the explanation, I got the formula to work
  2. Replies
    3
    Views
    1,313

    radians vs degrees(Resolved)

    Im trying to get the Log() of the number in VB. After messing with the formula for a while I realized I could not get the same answer on the simplist number as I would with the M.S. calculator. It...
  3. Thread: mgrs conversion

    by dedub
    Replies
    0
    Views
    2,662

    mgrs conversion

    I'm looking for a prewritten Module/Function or someone who can point me in the right direction. Basically I want to convert M.G.R.S. to Lat/Long *and* Deg.Min.Sec (DD.MM.SS.) . Ive been behind VB6...
  4. Replies
    6
    Views
    880

    Re: string concantenation

    Mike, that is exactly what I wanted to do. After I added the xtra "" it worked like a charm and now Im that much smarter with strings, THANKS!

    Darrin
  5. Replies
    6
    Views
    880

    Re: string concantenation

    To ********, this is what Im doing...
    Parsing text of a website. Im using the replace to pull out several instances of this line.

    </td><tr bgcolor="#FFFFFF"><td>

    notice the qutoes already in...
  6. Replies
    6
    Views
    880

    string concantenation

    I'm doing a replace() in a string of text but unfortunately there are two " " with in the text. Well, VB isn't liking that, Is there a trick to concantenate the true "" that are surounding my text?
  7. Replies
    2
    Views
    722

    Re: WebBrowser control

    No, not in the webbrowser but look into the internet Transfer Control (INET). You can set a proxy there
  8. Replies
    8
    Views
    1,340

    Re: On Error for a project

    I could be wrong but I would think that on form load
    on error goto ____
    should work
  9. Replies
    6
    Views
    718

    Re: resetting/reloading form

    I understand now about the Winsock1_Close. event, thanks for setting me straight. Info like that I could not find in any tutorial. As far as the packets, they are broadcast packets DEFINATELY...
  10. Replies
    6
    Views
    718

    Re: resetting/reloading form

    To answer your question I had just a simple winsock1.close . I'm sure that closed the socket but there after I could not make another request without creating an error. I could of trapped it but...
  11. Replies
    6
    Views
    718

    Re: resetting/reloading form

    This is the code I found here that worked like a champ. Unfortunately the .close alone would not do the trick





    Public Sub reloadForm(frm As Form)
    Winsock1.Close
    Winsock2.Close
    ...
  12. Replies
    6
    Views
    718

    resetting/reloading form (RESOLVED)

    Hello, it's been a while since I have posted, here goes.

    I would like to know if there is a way to reload a form during runtime. What I mean is to simulate you closing the form out and...
  13. Thread: creating packets

    by dedub
    Replies
    0
    Views
    536

    creating packets

    Is there a way to create broadcast packets using VB as opposed to the client/host port listening type stuff Im used to?

    Thanks in advance
  14. Replies
    6
    Views
    5,461

    Something else to think about. There is another...

    Something else to think about. There is another program called RealBasic. It is not a M$ product and is like a poor mans VB6. You can download it at www.realbasic.com

    the program language is...
  15. Replies
    12
    Views
    6,222

    This may or may not help you out but it could...

    This may or may not help you out but it could push you in the right direction. I'm not sure how firewalls work exacly but here are my thoughts.

    1. There are API that will give you all running...
  16. Replies
    2
    Views
    779

    Internet Browser Advice (RESOLVED)

    Hey Yall'
    Ive created an internet Browser for my 8 year old but my next step is to filter what pages he goes on. I was thinking about creating some sort of database with authorized pages and have...
  17. Thread: Rma

    by dedub
    Replies
    4
    Views
    850

    This is a start, crude but it may help a little....

    This is a start, crude but it may help a little.
    All you need is a textbox and button. Im not sure but an integer has a limit, you may have to use long or something else but check on it because Im...
  18. Replies
    2
    Views
    970

    Here is a start. This will at least capture it....

    Here is a start. This will at least capture it.



    Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
    If Shift = vbAltMask Then
    Select Case KeyCode
    Case vbKeyF4...
  19. Thread: test to speech

    by dedub
    Replies
    0
    Views
    850

    test to speech (RESOLVED)

    After switching computers and reinstalling VB6 I seemed to have lost the ability to do text to speech. I cant bring up any of my old projects that used that control before. I think it was DirectSS1...
  20. Replies
    1
    Views
    647

    I am by no means a network guru but here are some...

    I am by no means a network guru but here are some options.

    You can ping a certain IP and dismiss replies but when there is no reply call your code.

    You can query the Registry and look for the...
  21. Replies
    3
    Views
    676

    Wilk, I like your idea but what you want to do is...

    Wilk, I like your idea but what you want to do is very dificult(I think). You see, routers like the Linksys and D-Link use a web based language called Java Script(Netscape) or J Script(Microsoft)not...
  22. Thread: Mscomm

    by dedub
    Replies
    3
    Views
    817

    Hey Bignin, I completed a project almost...

    Hey Bignin, I completed a project almost identical. Except I pulled the gps info from the buffer and parsed the text to display speed, and direction with a compass that spins on a form. I dont...
  23. Replies
    4
    Views
    932

    Sorry Jamesa, here is an aliby. ...

    Sorry Jamesa, here is an aliby.

    PictureBox.PaintPicture picture, x1, y1, [width1, height1, [x2, y2, _
    [width2, height2, [opcode]]]]

    so you could specify each size in your paintpicture call

    ...
  24. Replies
    4
    Views
    932

    Try the Paintpicture event. ...

    Try the Paintpicture event.



    Picture1.PaintPicture LoadPicture("c:\yourpic1.jpg"), 0, 0
    Picture1.PaintPicture LoadPicture("c:\yourpic2.gif"), 600, 0


    ENSURE that the autoredraw is true. ...
  25. Replies
    4
    Views
    932

    Do you mean you want to display different...

    Do you mean you want to display different pictures at different times in one picture box? What you will need is an Image list, you can add that control through projects....components. From there...
Results 1 to 25 of 127
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured