hi all,
I need your help
how to write these keywords in ListBox.SetItemData("ListBox1", 16, "......."); ?
":8080"":3128"":80" filetype:txt
im confuse when i try to mix the quotation marks
many thanks![]()
Professional Software Development Tools
hi all,
I need your help
how to write these keywords in ListBox.SetItemData("ListBox1", 16, "......."); ?
":8080"":3128"":80" filetype:txt
im confuse when i try to mix the quotation marks
many thanks![]()
Can you explain what you are trying to do here?
It looks like you are specifying different proxy settings on one line, but i can't really see how that's gonna work.
-
= Derek
["All glory comes from daring to begin" - fortune cookie]
yup, Derek...
what i want to do is when i double click the listbox, google search will automatically displaying the result of that keyword in browser (":8080"":3128"":80" filetype:txt)
The result like this
But first, i have to write that keyword in ListBox.SetItemData("ListBox1", 16, ".......");
My question is how to concatenate the Listbox.SetItemData's quotation marks with that keyword's quotation marks?
sorry 4 my english and thank you
Code:ListBox.SetItemData("ListBox1", 1, '":8080"":3128"":80" filetype:txt');
Thanks Shadow,
but this is what displayed in google search box with no result:
:8080:3128:80 filetype:txt (without quotation mark)
what i want is something like this : google result
actually this is my entire scripts:
It's done when im using input object, but not work with listbox.ListBox.SetItemData("ListBox1", 16, '":8080"":3128"":80" filetype:txt');
strGetDat = ListBox.GetItemData("ListBox1", 16);
File.OpenURL("http://www.google.com/search?query="..strGetDat, SW_SHOWNORMAL);
Thanks
The item data is set just fine. The problem is passing the " into Google. Doesn't wanna work for some reason.
-
= Derek
["All glory comes from daring to begin" - fortune cookie]
thanks all![]()
but, it works fine without the quotation marks
Code:strGetDat=":8080 :3128 :80 filetype:txt" -- Test File.OpenURL("http://www.google.com/search?query="..strGetDat, SW_SHOWNORMAL);
Open your eyes to Narcissism, Don't let her destroy your life!!
ThANKS mr. Dean....![]()
It works!
Many thanks![]()
![]()