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 strongm 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. DaviiD2010

    Looking for DLL hookable to Winsock API and read its data

    Hi all . could any one point me to a DLL that i can inject to another application process and be able to read its winsock API arrival data ? Looking forward for some replies.Thanks
  2. DaviiD2010

    How to hook another applicaton winsock API "recv" and parse its packet

    justin i know i have used few of them in the past but i want to write my own so i could filter traffic to things i need not to get all the garbage.So i hope some expert help achieve that task.
  3. DaviiD2010

    How to add close button to my webbrowser tabs ?

    Ignore my last post. I fixed it by adding: Dim newtab As Object But why the first(default) tab is getting ignored .Nothing get loaded on that at start?
  4. DaviiD2010

    How to add close button to my webbrowser tabs ?

    Thanks for your reply . Now i get this error: Compile error: Varibale not defined pointing at : NewTab = Set NewTab = TabStrip1.Tabs.Add(, , IIf(Option1.Value, Left(List2.List(List1.ListIndex), InStr(List2.List(List1.ListIndex), ".") - 1), List1.List(List1.ListIndex)) & ":" &...
  5. DaviiD2010

    How to hook another applicaton winsock API "recv" and parse its packet

    Hi all . could any one show me an example on how to hook another application winsock API "recv" and parse its packet which contain given value for example "value="? There is this external application that i don't have its source code. That application communicates with its server via winsock...
  6. DaviiD2010

    How to add close button to my webbrowser tabs ?

    Thanks for your reply. I keep getting syntax error in this line: Set NewTab = TabStrip1.Tabs.Add(, , IIf(Option1.Value, Left(v2, InStr(v2, ".") - 1), List1.List(List1.ListIndex) & ":" & List1.ListIndex) Does it created new tab for each click on listbox ? How about ability to close the tabs ?
  7. DaviiD2010

    How to add close button to my webbrowser tabs ?

    Hi all . I got a tab in my webbrowser and a listbox. Every time i click a listbox item a html loads in to my new tab inside webbrowser controle. Now i want to add a close button to each tabs. so when i press that button i want that tab closes. I placed the code for adding new tabs when listbox...
  8. DaviiD2010

    Problem Programatically clicking links in WebBrowser control

    thanks vb5progrmr that worked well is it possible that get the url of that next page as well ?
  9. DaviiD2010

    Problem Programatically clicking links in WebBrowser control

    Hi all i have html page loaded in to my webbrowser controle that looks like this: <a href="http://www.somesite.com/recordds.wmt?page=31" title="Go to Next Page" onfocus="if(this.blur)this.blur();" >  next &raquo;</a> I used the following codes to click on it but it doesn't work . could you...
  10. DaviiD2010

    Problm using webbrowser controle in a loop!

    Thanks for your reply. Should i put search for button code after loop or between do eents and loop ? When i put it after loop some time the browser doesn't do click the button untill i refresh the webbrowser controle !! is there any solution for that ?
  11. DaviiD2010

    Problm using webbrowser controle in a loop!

    Hi all . I have list of webpages that need to go in each one of them and a press a print button on each one of them(once i press the print button then the button no longer show as it means i have already send it for print). So I tried doing: Dim i As Integer For i = 0 To List1.Items.Count - 1...
  12. DaviiD2010

    How to select an item from an external TreeView having its Handle?

    Hi all . I wonder how i can select an item from a treeview(which is in other application) having the handle of treeview and position of item in treeview? could any one show me how i can write a CrossProcess function giving it the handle of treeview to select an item. Looking forward for...

Part and Inventory Search

Back
Top