Search:

Type: Posts; User: batori

Page 1 of 9 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    8
    Views
    1,129

    VS 2022 Re: HTTP request SSL connection

    I see.

    Well, thanks for helping out and pointing me in the right direction buddy, I really appreciate it 💪👍🙂
  2. Replies
    8
    Views
    1,129

    VS 2022 Re: HTTP request SSL connection

    Thanks!

    I tried to click your attachment but it says it's invalid.

    On the web page i didn't see any captcha to fill?

    Is there a way to "bypass" that?
  3. Replies
    8
    Views
    1,129

    VS 2022 Re: HTTP request SSL connection

    But while comparing response of ssl request i saw a difference while using the webpage and my code...maybe that could be the problem?
  4. Replies
    8
    Views
    1,129

    VS 2022 Re: HTTP request SSL connection

    Hi,

    Thank sou very much for your interest.

    Well i did copy the postdata from fiddler while testing on the webpage.
  5. Replies
    8
    Views
    1,129

    VS 2022 HTTP request SSL connection

    Hello,

    I am trying to get a insurance policy info through a license plate check available online by inputing date and license plate info. The url in question is and the details can be added at the...
  6. Replies
    3
    Views
    909

    VS 2013 Re: Filestream Upload

    I tried several...and im sure it has limit up to 2gb. I tried 4 hosts too.

    I've seen bytes count and then stop ... drop ... and again go up ... i mean memory just building up and going down ......
  7. Replies
    3
    Views
    909

    VS 2013 Filestream Upload

    Hi guys,

    I'm stuck with uploading obtaining a Stream. I'm putting the file with Filestream and it works great when files are smaller than 1gb.

    I tried changing buffer size ... but no luck. If...
  8. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    ident, i really don't understand what are you saying...

    Regardless, i found a solution....still, having the function stored in a module!

    Here it is :

    Start with a button to trigger the...
  9. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    By having the function/sub on the main form, everything works fine ....
    But , still....im interested why do i get the report in a msgbox and not in any other textbox , label, ecc ... i'm frustrated
  10. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    It doesn't really matter what the function is...


    Public Function CALCULATE_NUMBERS() As String
    Dim a As Integer = 0
    a = a + 1
    frmMain.WorkerL.ReportProgress(10, a)...
  11. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    Well, i'm having that function in a module because im used to have functions there and not "mess up" with my form code.

    @duckles , withing your code i'm trying to get

    ...
  12. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    @ident ... it is.

    @tg...i will try what you suggest! :)


    EDIT:

    @tg...i tried your last solution but still it did not work ... i still get the string in a msgbox but not in a textbox, label,...
  13. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    yes, with both my.forms.frmmain.workerl and with frmmain.workerL...

    progresschanged is triggered and msgbox return the value...but nothing else does.... ???? :/
  14. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    I tried your suggestion to use my.forms.frmMain...still does not work ...

    i can only get the string in progresschanged by using MSGBOX .... as usual....

    i still dont get it ....
  15. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    I tried TnTinMN method , it did not show anything....
    I tried dbasnett method , and it worked....

    So , what i did, i moved the Function from being Public in the module, to being Public in frmMain...
  16. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    Yes, of course it is.

    I'm even getting a message box when progress is "triggered" ... it's just that i cant get that userstate to a textbox or label...i can only get it in a message box...
  17. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    Ok, let me explain in a better way.

    So,


    Private Sub WorkerL_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles WorkerL.DoWork

    ...
  18. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    Thanks for the reply...

    This is what i do:

    start worker and calling a function in _DoWork ... that same function reports progress to the worker...which gets the reported progress and shows it...
  19. Replies
    38
    Views
    6,916

    VS 2013 Re: background worker progress changed

    bump? :(
  20. Replies
    38
    Views
    6,916

    VS 2013 background worker progress changed

    Hi,

    I'm having trouble getting the string from progress changed in bgw.

    Well, when i type the following code it works:

    msgbox(e.userstate)

    In this case i get the progress changed (string...
  21. Replies
    3
    Views
    957

    VS 2013 Re: Load DB info into Listview

    Thanks for your reply.

    I managed to get Teleriks WinForms - Listview which binds to db directly ... makes things much much easier...but, still...i have the same problems of adding image and text...
  22. Replies
    3
    Views
    957

    VS 2013 Load DB info into Listview

    Hi,

    I have a DB.accdb file which i would like completely to load into a Listview in a specific way

    So, basically this is the DB file:
    http://s2.postimg.org/v89z1v2ax/Untitled.png

    What i'm...
  23. Replies
    1
    Views
    1,380

    VS 2013 [RESOLVED] Point Of Sale : DB - MYSQL

    Hi guys,

    I would like to create a POS system for a day store ... but im not quite sure what to do at the back of it ...

    Need to load items from a db or mysql, with images, prices, stock number,...
  24. Replies
    6
    Views
    985

    VS 2010 Re: Browser faster than protocol?

    adding handlers...and when everything is done i check my uploaded files...which correspond to the progress of the app...

    why am i using http...well im just simulating what i've got from fiddler...
  25. Replies
    6
    Views
    985

    VS 2010 Re: Browser faster than protocol?

    bump? :(
  26. Replies
    6
    Views
    985

    VS 2010 Re: Browser faster than protocol?

    I've checked with Fiddler...and what i've seen is only one request being made when uploading through a webbrowser interface (mozilla, chrome) ... but upload speed is darn fast!

    I've simulated the...
  27. Replies
    6
    Views
    985

    VS 2010 Browser faster than protocol?

    Hi,

    I have recently tried various ways (even custom chillkat reference) of upload a file to a server via HTTP with POST command ... but nothing seems to be fast as a normal webbrowser (mozilla,...
  28. Thread: String to Array

    by batori
    Replies
    8
    Views
    1,195

    VS 2010 Re: String to Array

    maybe in the something like this but in vbnet:


    $content['custom_fields'] = array(
    array('key' => 'cricket', 'value' => true),
    array('key' => 'football', 'value' => true),
    ...
  29. Thread: String to Array

    by batori
    Replies
    8
    Views
    1,195

    VS 2010 Re: String to Array

    dim c as string = "Rugby,NFL,Football,ecc" ' could have more words ... one, two, twenty, ecc

    Dim Categ As String = c

    so now i need to split the Categ string into arrays and then put them...
  30. Thread: String to Array

    by batori
    Replies
    8
    Views
    1,195

    VS 2010 Re: String to Array

    Yes, thanks.

    And then getting the data back with :
    String.Join(", ", CategArray.ToArray)

    Now the main problem remains how to add all the random arrays into this shape :

    my.categories =...
  31. Thread: String to Array

    by batori
    Replies
    8
    Views
    1,195

    VS 2010 String to Array

    Hi,

    Im kinda stuck on a thing ...

    Im having a var containing a string :


    Dim Categ As String = "Rugby,NFL,Football,ecc"

    What i need to do is to add the string from Categ string in each...
  32. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    Thank you very much, it works.

    Im using this, if anyone needs it :


    dv.RowFilter = "loc like '%" & Replace(txtSearchT.Text, " ", "%' AND loc LIKE '%") & "%'"
  33. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    This is what i'm doing now:
    Record is : One-Two-Four-Five
    The code is :

    loc LIKE '%one% AND loc LIKE %four%'

    Still, i get all the records listed, not the one searched. I'm not sure why ...
  34. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    Tried to use this : "SomeColumn LIKE %wxy%xyz%" but what i was getting is all the record back as i never searched them.
  35. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    EDIT:

    let me read your post too :)

    EDIT:

    Ok, let's say my record is:

    One-Two-Four-Five
  36. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    on form load :

    ds = New DataSet()
    dv = New DataView()


    button to search:


    ds.Clear()
  37. Replies
    17
    Views
    5,368

    VS 2010 Re: .RowFilter search multiple words

    well if a record value is : "one-half-four" and i input in search "one four" i get this error :
  38. Replies
    17
    Views
    5,368

    VS 2010 [RESOLVED] .RowFilter search multiple words

    Hi,

    Im using datagridview with


    .RowFilter = "loc like '%" + txtSearchT.Text + "%'"

    Everything works fine when i filter one word but when i write in the txtSearchT box something like "find...
  39. Replies
    2
    Views
    1,735

    VS 2010 Re: [RESOLVED] Mouse buttons on WebBrowser

    In _DocumentCompleted add :


    With WebBrowser1.Document
    AddHandler WebBrowser1.Document.MouseDown, AddressOf wb_MouseDown

    then just add


    Private Sub wb_MouseDown(ByVal...
  40. Replies
    70
    Views
    39,430

    Re: Asynchronous File Downloading Queue System

    Great work there!

    Nice class, just downloaded the project and checking it out.

    What i would suggest is to add Remaining Time, Downloaded so far and Time remaining columns.
Results 1 to 40 of 354
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width