Search:

Type: Posts; User: Roccoman

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    662

    VS 2008 Re: text split

    is the data always going to be in this format?

    #-#:#

    if so then you can write some code to look for your separator characters (the "-" and the ":") and then add them to a stringbuilder


    ...
  2. VS 2008 Re: How to determine if a user has scrolled to the bottom of a control

    having used Crystal a ton over the last decade i have had my fair share of frustrations - good luck to ya
  3. VS 2008 Re: How to determine if a user has scrolled to the bottom of a control

    did you unhook your previous event handler?



    AddHandler vscroll.Scroll, AddressOf Me.OnViewerScroll


    also, if you put breakpoint on the line
  4. Replies
    90
    Views
    99,855

    Re: Using the BackgroundWorker Component

    thanks Jmc - i'll take a look a your sample
  5. VS 2008 Re: How to determine if a user has scrolled to the bottom of a control

    does the CRViewer have any events are properties that pertain to the scrollbar and its value?
  6. Replies
    11
    Views
    2,281

    Re: Duplicate form by button click

    enclose the offending code in a TRY / CATCH block, and check the stack trace

    see if you can pinpoint where exactly the error is occurring.



    i just worked up a sample app that did what you...
  7. Replies
    13
    Views
    5,696

    VS 2010 Re: Export data to excel

    have you tried filling a datatable, not a dataset?



    dim dt as new datatable()
    oConn.Open()
    oData.Fill(dt, "Bestn")
    oConn.Close()
  8. Replies
    90
    Views
    99,855

    Re: Using the BackgroundWorker Component

    thats the problem - i need it to be the opposite. i need my function to control its own form (as there can be multiple threads running at the same time, each with their own FormWait form)

    perhaps...
  9. Replies
    90
    Views
    99,855

    Re: Using the BackgroundWorker Component

    the way i wrote the ClassA object it has a private member FormWait that is the progress form for that particular job.

    there is a main form for the application but it is not the one that needs to...
  10. Replies
    90
    Views
    99,855

    Re: Using the BackgroundWorker Component

    thanks for the quick response techgnome

    yea i worded that badly - BW is threading of course. i was refering to using either a Thread object or a BW object.

    anyway i think i have found a...
  11. Replies
    90
    Views
    99,855

    Re: Using the BackgroundWorker Component

    not %100 sure this is the place for this - its a question about using the BackgroundWorker that is part of a class, not a form.



    i have a class the processes a general tasks, ClassA. it...
  12. Replies
    4
    Views
    2,361

    Re: IE blocks Javascript from running

    its out of my hands - i just gotta solve the problems that others create!

    thanks for the heads up on the DHTMLEdit control, gonna give it a try
  13. Replies
    4
    Views
    2,361

    Re: IE blocks Javascript from running

    thanks for the reply - yea, this is really IE / javascript issue, not a VB issue


    no message from IE about blocked content (i verified our test machine is using IE7)


    on our test machine we...
  14. Replies
    4
    Views
    2,361

    IE blocks Javascript from running

    new to these forums, as best i could tell this is the place to post this issue i am having

    my application is using the WebBrowser control in VB.Net to display a local HTM file - this file uses...
Results 1 to 14 of 14



Click Here to Expand Forum to Full Width