Search:

Type: Posts; User: Ianis

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,107

    Re: Multithreading Use Class

    I lauched several threads with working and non-working ftp.
    All threads do the work correctly.
    My problem is to get result into the VB project.
    I'll maybe try to work with events and delegates......
  2. Replies
    8
    Views
    1,107

    Re: Multithreading Use Class

    Still a little Problem with threads while returning
    Debug.Print(cFTP.servWork)
    This return incoherent and Mixed results from other threads.



    Are there better way to return results, from my...
  3. Replies
    8
    Views
    1,107

    Re: Multithreading Use Class

    Thanks it's really better now, i don't have Socket errors anymore.
    But still not working :o
    If i send Thread 1 by 1 it's ok but not severals at once.
  4. Replies
    8
    Views
    1,107

    Re: Multithreading Use Class

    Thanks for your answer MonkOFox. :)
    But I'm sure there is a better way...
    It's seem complicated for a such thing...
    i already tryed créating Class array yesterday.
    If someone have a better method...
  5. Replies
    8
    Views
    1,107

    [Resolved] Multithreading Use Class

    Just had to remove remove statics and use Delegates refering to class.
    Thanks to :
    Evil_Giraffe

    Hello, i have got a little problem in one of my project.
    I need help to resolve it.
    My...
  6. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Do you think there is a way for Make the Server in console ?
    Cause the protocol i'm working on make server without Send Message from Server.
    The Server is just like a IRC Server.
    Something which...
  7. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Well ok but,
    do you have a simple exemple of a ModMain in Console.
    Just few lines HOWTO replace the Server Main Form > Console
    (The most simple you can do with console.writeline / debug.print )
  8. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    I found what's going wrong :

    it's a Console Application, so this need a

    Sub Main()

    End Sub


    But..
  9. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    There are several Errors which, i think are cause beceause there are no from anymore.
    I only tryed to turn the Server into Console.
    I am sure my code is good, also errors comes from the class's.
    ...
  10. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    if instr(GrabbedURl, CurrentWebsite) = true then
    Navigate it with the same Webbrowser.
  11. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    No, this is one of my problems.
    The RequestedData = source code
    in sourceCode i will get

    <script type="text/javascript" src="Link.js">
    </script>


    because the particularity of Javscript is...
  12. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    Yes i'm reffering this link.
    and sorry for my bad explaination. :duck:
  13. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    What i want is not hard to understand, what i want is not simple to do.
    Use the files i posted.
    Get the Random URL Genrated by the JS with the VB.net webbrbowser control each time you visit the...
  14. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Hello,
    i'am trying to use your Class in Console.
    But i have several bugs during devugging like :


    On Connection Event.
  15. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    My english level can't increase if i use this.
    And in that case Google Translator is not so good as you think.
  16. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I'm French :cool: and i need it to create a Web Ananlyse tool.
    And I need my application to be able to grab JS Generated Links.
    Thanks for helping me.
  17. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I would get the link with a VB.net code which use the webbrowser control.
  18. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    http://rapidshare.com/files/314873355/JS_Link.rar.html

    Here is The Exemple.
    Try to get the link in visual basic when you visit the index.html page with the visual studio webbrowser component.
  19. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I found a better exemple, you may know Google Adsense ?
    You insert a script in your webpage and that generate advertising.

    Insert this in a random page:

    <script name="Vbtest"...
  20. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    There is maybe a way with
    Navigator.Document.InvokeScript(obj,arg)
    If i set a name to my javascript...
    I'll work on it Tomorow.
  21. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I read a part of this but it's not really what i'm looking for.
    Z Javascript is executed in the navigator i can't get the url of a generated url in a webrequest...

    You should try to do what i...
  22. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    Actually my code is blank cause all i tryed didn't worked.
    I want to know how to get the url of any link generated by any Javascript file in any html webpage with the WebBrowser component or...
  23. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    If You want to know what is the page where i want to use my application ?
    => Anywhere i just want to grab links genreated by a javascript ..
    Else, I don't understand what you are asking for cause...
  24. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I found a Very Good exemple, try to get the url of "Developer > DevX" in the bar (internet.com bar) at the top of this page (vbforums.com).
    By using someting in vb.net...

    without grabbing them...
  25. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    By getting the HTML of the webpage i'll only get normal lnks.

    This don't work :


    For I = 0 To Wb.Document.Links.Count - 1
    ...
  26. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    I'm creating a WinForm application.
    And i didn't found a good way to find a random link genereated by a javascript..
  27. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    You also can post C# Code.
    ( Or any language )

    Thanks.
  28. Replies
    0
    Views
    490

    VS 2008 [Resolved] MD4 From a File

    Hello !
    I would know how to get the MD4 from a file in Visual basic 2008.
    IF someone have MD4 Class / Function... i'm Interested.
    Thanks.

    Code Here
  29. Thread: Email validation

    by Ianis
    Replies
    4
    Views
    799

    VS 2008 Re: Email validation

    Imports System.Text.RegularExpressions

    Regex => RegularExpression
  30. Thread: Email validation

    by Ianis
    Replies
    4
    Views
    799

    VS 2008 Re: Email validation

    here it is

    Public Function CheckEmail(ByVal strEmail As String) As Boolean
    If Regex.IsMatch(strEmail, "^[a-z09._-]+@[a-z09._-]{2,}\.[a-z]{2,4}$") = True Then
    Return True...
  31. Replies
    32
    Views
    2,063

    VS 2008 Re: Grab Link Generated by Javascript

    Is there any trick with .NET Framework 3.5 ?
  32. Replies
    32
    Views
    2,063

    VS 2008 Grab Link Generated by Javascript

    Hello,

    I would know how to Grab a link Generated by a javascript.

    Exemple :

    page1.html

    <html>
    <script type="text/javascript" src="Link.js">
  33. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Hmm i don't reall know why but the bug don't happen in the original source.
    Only with mine ( i modified a the class for working a Chat app) .
    And not always.
  34. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Hello,
    I found a little problem ( but didn't found solution ).


    FR : Une exception de première chance de type 'System.IO.IOException' s'est produite dans System.dll
    EN : A first chance...
  35. Replies
    0
    Views
    370

    VS 2008 [Resolved] Structure and Property

    Hello,
    I'm still working with the Socket class By jmcilhinney.
    There are 2 Property, Hostname and Port.

    And i'm trying to add a new one UID ( Integer )

    What i want to do :
    Each Socket should...
  36. Replies
    4
    Views
    763

    VS 2008 Re: Insert object in Listview

    Ok i FOund an other way
    i added a new UID (userid) property in Hostinfo.

    dim intHint as integer

    Connection Event :
  37. Replies
    4
    Views
    763

    VS 2008 Re: Insert object in Listview

    jmcilhinney >
    Hummm... :cool:
    I know how to add string item in a Listview but not that kind of items..
    What i want to do is more sophisticate, I'am using your Socket Class and I want to assign a...
  38. Replies
    4
    Views
    763

    VS 2008 Insert object in Listview

    Hello i'm French,
    i was coding vb6 since 4 years.
    and few month ago i decided to learn Vb.net and i'am working with VS08

    I'm would use this Socket class Here
    By jmcilhinney

    But i need to...
  39. Re: [VB2008/.NET 3.5] Asynchronous TcpListener & TcpClient

    Very nice Socket. :thumb:
    I would replace the combobox by a listview but u don't really know how to do...
    Someone can help me ?
Results 1 to 39 of 39



Click Here to Expand Forum to Full Width