Search results for query: *

  1. A

    Question shortcut of a website to Visual Studio

    That was exactly what I was looking for. Thank you !
  2. A

    Question shortcut of a website to Visual Studio

    Using Microsoft Visual Studio 2010 Premium. I have an website which i open in VS2010. First i open VS2010, and then I open the website. I would like to create an shortcut on my desktop to open VS2010 with that website. I have googled around, but find only links of how to create shortcuts with...
  3. A

    Question .NET WebBrowser control's DocumentCompleted event passes no pDisp argument

    Did my post help you on the way, or are you still struggeling? If so, could you post what you have so far, concerning you problem.
  4. A

    CheckBoxes created in code

    I think you are looking for the checked property For Each objControl In Me.Controls If TypeOf objControl Is CheckBox Then objControl.checked= true End If Next
  5. A

    Question .NET WebBrowser control's DocumentCompleted event passes no pDisp argument

    Perhaps the code underneath could help you a hand, I don't have an example of a iframe page nearby, so it's untested. PrivateSub WebBrowser1_DocumentCompleted1(sender AsObject, e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted Dim url AsString...
  6. A

    Question .NET WebBrowser control's DocumentCompleted event passes no pDisp argument

    I'm guessing from the DocumentComplete Event (InternetExplorer, WebBrowser) and Private Sub DocumentCompleted(sender As Object, e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Sender is the 'same' as pDisp
  7. A

    Question NetworkStream Unexpected results.

    The sending application, is sending in 'blocks' of x. On the receiving side, you have to wait untill every thing is received Just a quick code which i used for some testing, i think you then got the idea Try 'Buffer for reading data Dim bytes(1024) AsByte Dim clientData AsStringBuilder =...
  8. A

    Question Using a integer variable in a string

    i.toString() Or using the & in stead of +
Back
Top