Recent content by roster67

  1. R

    [BETA]Facebook clickjacking script, testers needed

    You could. Ill PM this evening or tomorrow the eligible members with a 'how to' for the script. Regards.
  2. R

    [BETA]Facebook clickjacking script, testers needed

    Hello, Im looking for some people {moderators/old members} interest by testing a clickjacking script (beta) im currently developing for Facebook. This script is a "Proof Of Concept" and should not be used in any illegal purpose. Ill share it for free for this few members if correctly working...
  3. R

    Never programmed anything in my life...where do I start?

    Vb is one of the worst langage to start with. It's give you so many bad habits. But its all about programmer, not langage. Some vb application can be better than c++ or csharp if well coded. I'll suggest you to start with c#, not vb. But thats just my point of view.
  4. R

    The best eCommerce setup?

    I'll go for Prestashop, best solution from my point of view!
  5. R

    Data of Zip Codes by County? E-Commerce Site needs

    Is it the full list? http://www.zipcodestogo.com/Maryland/
  6. R

    CB Sale Submitter

    By the way, you could PM me, i could look at it with more details.
  7. R

    CB Sale Submitter

    Quite interesting idea! I think 200$ for a so useful tool is a fair price.
  8. R

    Yelp Bot?

    I could look at it. PM me for more details.
  9. R

    omg, I feel so stupid for asking this html question...

    Its not possible to do what you are wishing with iFrame!
  10. R

    Hello, programmer from the Philippines

    Thats a good point!
  11. R

    Clicking html element loaded by javascript (jquery live)

    You need to import mshtml It is: mshtml.IHTMLScriptElement
  12. R

    Hello, programmer from the Philippines

    So you ask BHW members how to make money but dont ask to your friends??? Well, quite strange...
  13. R

    Clicking html element loaded by javascript (jquery live)

    Ok this vb versio: Private Sub webBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) If e.Url.AbsolutePath <> TryCast(sender, WebBrowser).Url.AbsolutePath Then Return End If Dim head As HtmlElement =...
  14. R

    Clicking html element loaded by javascript (jquery live)

    This works for me: {sorry c#} void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { if (e.Url.AbsolutePath != (sender as WebBrowser).Url.AbsolutePath) return; HtmlElement head =...
Back
Top