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

Recent content by bizzzzzzz

  1. bizzzzzzz

    connect to a web site on https (ssl)

    Next step.... I test this and it doesn't work and i dont know why use LWP 5.64; my $url = 'https://servertest:8009/DownOptions/DOWN'; # Yes, HTTPS! my $browser = LWP::UserAgent->new; $browser->credentials('servertest:8009','','theuser' => 'thepassword'); my $response =...
  2. bizzzzzzz

    connect to a web site on https (ssl)

    well thanks for your help! first step work thanks again This is the next step.... use LWP 5.64; my $url = 'https://(myserver):8009'; # Yes, HTTPS! my $browser = LWP::UserAgent->new; my $response = $browser->get($url); die "Error at $url\n ", $response->status_line, "\n Aborting" unless...
  3. bizzzzzzz

    Connect to a https web site on port 8009 with a vb script

    I all, i'am confortable with vbscript put it seems difficult to do the job with. Do you know if i can connect to a web site on https with .net? My client is a windows xp my server is netware 5.1 portal http is on port 8008 https on port 8009 i juste want to get a page like this...
  4. bizzzzzzz

    connect to a web site on https (ssl)

    Is-it possible to open a page on a web server with https? i just want to get the page on port https://myserver:8009 BUt it seems hard thanks Eric
  5. bizzzzzzz

    Connect to a https web site on port 8009 with a vb script

    Hi all, I have a interesting question here! I have a web site who run on the port 8008 and after an authentification it switch to https with port 8009. I want to automated a task with a vb script but my knowledge of vb is not enough. for the moment i just want to open the page. it's easly to...
  6. bizzzzzzz

    how to use nwdir object

    Hi all, first thanks for your good job, i post many treads here and it was always solve. Here is my question. i want to include in my code a function who disable a novell account. I have netware 5.1 with edirectory 8.7.1 i just find on internet that exist an object nwdir but i have no idea...
  7. bizzzzzzz

    error in this simple code

    Thanks a lot for all your help, have a nice day A WOW for your time too Eric
  8. bizzzzzzz

    error in this simple code

    HO wow ok and how a can do that? I'am a beginner
  9. bizzzzzzz

    error in this simple code

    exactly there If usager(i).Text <> "" Then the first place where it find usager
  10. bizzzzzzz

    error in this simple code

    the code work well like this Private Sub cmd1_Click() Dim y As Integer Set objFSO = CreateObject("Scripting.FileSystemObject") Set objTextFileW = objFSO.OpenTextFile("d:\tools\transfert.dat", ForAppending, True) For y = 1 To 6 If usager1.Text <> "" Then objTextFileW.WriteLine (usager1.Text &...
  11. bizzzzzzz

    error in this simple code

    Compile error: Sub or fonction not defined yes i is now an as interger but still an issue
  12. bizzzzzzz

    error in this simple code

    this is my code with some bugs fix. but i'am still unable to do my "for next" with use the "i" Private Sub cmd1_Click() Set objFSO = CreateObject("Scripting.FileSystemObject") Set objTextFileW = objFSO.OpenTextFile("d:\tools\transfert.dat", ForAppending, True) 'For i = 1 To 6 If usager1.Text <>...
  13. bizzzzzzz

    error in this simple code

    why it dont find my usager(i).text? Private Sub cmd1_Click() Set objTextFileW = objFSO.OpenTextFile("d:\tools\transfert.dat", ForWriting, True) For i = 1 To 6 If usager(i).Text <> "" Then objTextFileW.WriteLine (usager(i).Text & "," & Source(i).Text & "," & dest(i).Text) Next objTextFileW.Close...
  14. bizzzzzzz

    populate the dropdownlist combobox from a text file

    HI I put a list in a text file, like this dog cat horse rabit i have 12 combobox where i want to retreive this information from the dropdown menu. is exit a path to directly add the list in the combo1.list fields? Thanks Eric
  15. bizzzzzzz

    Populate combobox from a text file

    HI i have 12 combo box with the same information, i want to populate this box with a text file. I'am looking for something like that at the start of the form... for each line in the text file put in a array for each combobox add all entry in the array can someone help me? Eric

Part and Inventory Search

Back
Top