Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cryoburned

    String Parsing

    I figured out how to parse it I think.. I get an error with this code: Dim HTMLMYSPACE As String Private Sub KewlButtons1_Click() Do Until Inet1.StillExecuting = False HTMLMYSPACE = Inet1.OpenURL("www.myspace.com") Loop Dim What As String Dim ToS As String Dim FromS As String Dim TMP As String...
  2. cryoburned

    String Parsing

    yea so.. if I had string "Abc im cool cba" how could i get the stuff between abc and cba? I don't have direct acess to this string so I cn't edit it myself
  3. cryoburned

    Connecting by IP through router (VB6)

    so say its was UPnP NAT what would I need to do?
  4. cryoburned

    Connecting by IP through router (VB6)

    I was hoping that wouldn't be the case. Microsoft's Remote Connection uses a Domain feature that I think allows you to connect through a router...
  5. cryoburned

    Connecting by IP through router (VB6)

    So i'm using winsock to connect to a winsock on another computer.. the second computer is behind a router.. how do I connect to the router and get it to connect to a computer by its local ip in that router/network?
  6. cryoburned

    Connecting by IP through router

    nope only one machine is under the router..
  7. cryoburned

    Connecting by IP through router

    Im connecting using winsock.. and the socks are just sending text strings.... and I'm not sure if NAT is involved.. I've heard of it but I don't know what it is.. its just a D-Link Router... not sure about the publicness of it
  8. cryoburned

    Connecting by IP through router

    I need to connect to a computer by its IP Address when that computer is using a router... Not sure how this needs to be done or if i should have posted it in the VB6 section.. sorry
  9. cryoburned

    document.write(); not writing???

    sorry guys.. i've been away.. but yes the code you gave me did work, and i finnaly resolved my problem. I was was subtracting a sttring from an integer.
  10. cryoburned

    Easy date subtraction not working

    Awesome and thank you. Do you have the link to microsoft help so i can explore this?
  11. cryoburned

    document.write(); not writing???

    well... in both IE and FF document.write("test"); and var myvar = "test"; document.write(test); simply doesn't write. I'm not picking up errors, it just isn't working. I do have javascript enabled aswell.
  12. cryoburned

    Easy date subtraction not working

    Awesome comment speed.. thanks.. so.. anyone know how i can subtract dates across months (and maybe years?)
  13. cryoburned

    document.write(); not writing???

    It just doesnt write anything at all...
  14. cryoburned

    Easy date subtraction not working

    I'm trying to get this script to work: var year = time.getYear(); var months = time.getMonth(); var days = time.getDate(); var prestamp = Math.ceil((year*10000)+(months*1000)+days); var posteddate = 20061121; document.write(Math.ceil(prestamp-posteddate)); Basically it should put November 23...

Part and Inventory Search

Back
Top