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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to sending a url address through winsock to another browser?

Status
Not open for further replies.

hbutt

Programmer
Apr 15, 2003
35
GB
hi,
im trying to send a url address to another browser i created in vb. so far i can send the address but, something similar to the following appears at the end of the url address "||". is it possible to remove this through some form of string formatting or any other way?

PS: i think the "||" at the end of the address represents the enter key when its pressed, but i arent 100% sure.
Hamad
 
Check out Left() function and Len() function in VBHelp:

myString = Left(myString,Len(myString) - 2)


________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'People who live in windowed environments shouldn't cast pointers.'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top