Click here to Skip to main content
15,949,686 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Publish OR install project Pin
Dave Kreskowiak23-Nov-07 5:03
mveDave Kreskowiak23-Nov-07 5:03 
GeneralRe: Publish OR install project Pin
Paul Conrad23-Nov-07 14:17
professionalPaul Conrad23-Nov-07 14:17 
QuestionWriting a Plugin With Dependencies Pin
TheFarsider23-Nov-07 2:48
TheFarsider23-Nov-07 2:48 
QuestionCalling Windows App from command line prompt? Pin
barney_197223-Nov-07 2:15
barney_197223-Nov-07 2:15 
AnswerRe: Calling Windows App from command line prompt? Pin
Dave Kreskowiak23-Nov-07 4:55
mveDave Kreskowiak23-Nov-07 4:55 
GeneralRe: Calling Windows App from command line prompt? Pin
barney_197223-Nov-07 5:48
barney_197223-Nov-07 5:48 
GeneralRe: Calling Windows App from command line prompt? Pin
Dave Kreskowiak23-Nov-07 6:39
mveDave Kreskowiak23-Nov-07 6:39 
QuestionProblems in implementing WebBrowser control Pin
Abhishek Joshi23-Nov-07 2:04
Abhishek Joshi23-Nov-07 2:04 
Hi
I have developed an application using WebBrowser control under the .Net 2.0 framework which enables the user to navigate Web pages inside the form..
In this application the user visits web-sites in WebBrowser control.
Whichever sites he is visiting I am recording all sites along with PostData, Url and Frame information in the XML file.

Before navigating the following event is raised up and in that event I am saving the navigation information in XML file.
<br />
Protected Friend Sub OnNavigatingExtended(ByVal Url As String, ByVal Frame As String, ByVal Postdata As Byte(), ByVal Headers As String, ByRef Cancel As Boolean)<br />
        Dim e As WebBrowserNavigatingExtendedEventArgs = New WebBrowserNavigatingExtendedEventArgs(Url, Frame, Postdata, Headers)<br />
        'Save data to XML file if not in Replay mode.<br />
        If recordFlag = True Then<br />
            Dim xFunctions As New XMLFunctions<br />
            stepNo = xFunctions.WriteRequest(stepNo, Url, Frame, e.PostdataToString(Postdata), Headers, Cancel.ToString)<br />
        'This is fucntion is written in another class and it stores the information into XML file.<br />
  End If<br />
<br />
        RaiseEvent NavigatingExtended(Me, e)<br />
        Cancel = e.Cancel<br />
    End Sub<br />


But unfortunately the above event is not raised in following scenarios and because of that I am not able to store these steps in XML.
1.	When user is downloading any file from the web-page displayed in the WebBrowser control.
2.	If user is visiting the pages and doing steps within same page,
        ie. He is navigating such that the page remains same only the data in frames of the page changes.
I’ve kept option to replay the user’s visits. If user wants to see the pages he has visited then he can replay the
websites using Replay button. But for above two cases it is not displaying those steps in replay.

Please tell me what can be the remedy for these problems.



Abhishek J

QuestionDynamically build excel worksheet with VSTO2005 problem Pin
epetri23-Nov-07 0:56
epetri23-Nov-07 0:56 
AnswerRe: Dynamically build excel worksheet with VSTO2005 problem Pin
Dave Kreskowiak23-Nov-07 4:50
mveDave Kreskowiak23-Nov-07 4:50 
GeneralRe: Dynamically build excel worksheet with VSTO2005 problem Pin
epetri23-Nov-07 9:04
epetri23-Nov-07 9:04 
QuestionRichTextBox Lines(0) Remove does not work Pin
ESTAN22-Nov-07 22:52
ESTAN22-Nov-07 22:52 
AnswerRe: RichTextBox Lines(0) Remove does not work Pin
Luc Pattyn23-Nov-07 1:30
sitebuilderLuc Pattyn23-Nov-07 1:30 
QuestionProblem in Integer array in VB.net Pin
kokilaB22-Nov-07 22:46
kokilaB22-Nov-07 22:46 
AnswerRe: Problem in Integer array in VB.net Pin
SHatchard22-Nov-07 23:32
SHatchard22-Nov-07 23:32 
AnswerRe: Problem in Integer array in VB.net Pin
Dave Kreskowiak23-Nov-07 4:46
mveDave Kreskowiak23-Nov-07 4:46 
QuestionObject reference not set to an instance of an object.+ Sourabh Pin
Dot Net Jantu22-Nov-07 22:03
Dot Net Jantu22-Nov-07 22:03 
AnswerRe: Object reference not set to an instance of an object.+ Sourabh Pin
Mustafa Ismail Mustafa23-Nov-07 0:09
Mustafa Ismail Mustafa23-Nov-07 0:09 
AnswerRe: Object reference not set to an instance of an object.+ Sourabh Pin
Dave Kreskowiak23-Nov-07 4:37
mveDave Kreskowiak23-Nov-07 4:37 
Questionhow to get the DateTime value of a remote mahine Pin
georgegarvasis22-Nov-07 21:07
georgegarvasis22-Nov-07 21:07 
AnswerRe: how to get the DateTime value of a remote mahine Pin
epetri23-Nov-07 3:43
epetri23-Nov-07 3:43 
Questionan unhandled exception of type 'System.ExecutionEngineException' occured in crdb_adoplus.dll Pin
jhyn22-Nov-07 20:23
jhyn22-Nov-07 20:23 
AnswerRe: an unhandled exception of type 'System.ExecutionEngineException' occured in crdb_adoplus.dll Pin
Dave Kreskowiak23-Nov-07 4:33
mveDave Kreskowiak23-Nov-07 4:33 
QuestionHow to open a word file from a web site folder? Pin
arslanjatt22-Nov-07 20:05
arslanjatt22-Nov-07 20:05 
AnswerRe: How to open a word file from a web site folder? Pin
Vasudevan Deepak Kumar23-Nov-07 1:51
Vasudevan Deepak Kumar23-Nov-07 1:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.