Click here to Skip to main content
15,887,214 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: check smtp connection before sending ? Pin
Dave Kreskowiak9-Nov-12 9:52
mveDave Kreskowiak9-Nov-12 9:52 
GeneralRe: check smtp connection before sending ? Pin
alejx9-Nov-12 13:47
alejx9-Nov-12 13:47 
GeneralRe: check smtp connection before sending ? Pin
Dave Kreskowiak9-Nov-12 14:15
mveDave Kreskowiak9-Nov-12 14:15 
QuestionAllow a Desktop app to check for JavaScript errors on given URL? Pin
pogowolf9-Nov-12 6:17
pogowolf9-Nov-12 6:17 
QuestionUsing large XML dataset efficiently Pin
Dominick Marciano7-Nov-12 8:16
professionalDominick Marciano7-Nov-12 8:16 
AnswerRe: Using large XML dataset efficiently Pin
David Mujica7-Nov-12 9:10
David Mujica7-Nov-12 9:10 
Questionvb.net Web Browser Control! how to automate when web page is using frames. Pin
Kieran Sloan7-Nov-12 4:27
Kieran Sloan7-Nov-12 4:27 
AnswerRe: vb.net Web Browser Control! how to automate when web page is using frames. Pin
Zaf Khan26-Nov-12 2:13
Zaf Khan26-Nov-12 2:13 
Inside the page (in your link) you will find the following code.......

<html>
<head>
<title>Kona Europe</title>
<frameset rows="92,*">
    <frame name="enterpart" scrolling="no" noresize>
    <frameset cols="310,*">
        <frame name="treeframe" src="http://www.konaeuropeadmin.com/getcountry.htm">
        <frame name="basefrm" src="http://www.konaeuropeadmin.com/website/rightframe.htm">
    </frameset>
    <noframes>
        <body>
        <p>This page uses frames, but your browser doesn't support them.</p>
        </body>
    </noframes>
</frameset>
</html>



in THAT page (the page in your link - or even ANY other page you wish)


first assess if the FRAME or IFRAME tag is present and if it is then load the SRC file that the individual FRAME SRC points to and then run your code for EACH frame and treat each frame as a separate html document.

If the fields your looking for are there then your code will do what its supposed to and if not then your code shouldnt do anything and you simply continue to the next frame.

If theres NO frames then your code will operate as normal....

See the pseudo code below

'1   Get the ORIGINAL document
'2     look for the FRAME tag (if no frame tags jump to step 10)
'3       in the frame tag look for the SRC attribute/element
'4         load the document using the SRC as the file to load pointer
'5           == YOUR CODE HERE ==
'6         we are done with this document 
'7       we are done with this frame
'8     move to the next frame (and repeat till no more frames)
'9   All done - jump to step 12
'10  == YOUR CODE HERE ==
'11  All done  - jump to step 12
'12  Finished

QuestionHelp with Error Message Pin
GeorgieMPorgie5-Nov-12 3:32
GeorgieMPorgie5-Nov-12 3:32 
AnswerRe: Help with Error Message Pin
Wayne Gaylard5-Nov-12 4:05
professionalWayne Gaylard5-Nov-12 4:05 
GeneralRe: Help with Error Message Pin
GeorgieMPorgie5-Nov-12 5:03
GeorgieMPorgie5-Nov-12 5:03 
GeneralRe: Help with Error Message Pin
Wayne Gaylard5-Nov-12 18:31
professionalWayne Gaylard5-Nov-12 18:31 
QuestionUse Reportvier to Show Table with Unknown Number of Columns Pin
Member 76634803-Nov-12 15:03
Member 76634803-Nov-12 15:03 
AnswerRe: Use Reportvier to Show Table with Unknown Number of Columns Pin
Dave Kreskowiak4-Nov-12 4:25
mveDave Kreskowiak4-Nov-12 4:25 
AnswerRe: Use Reportvier to Show Table with Unknown Number of Columns Pin
Mycroft Holmes4-Nov-12 11:54
professionalMycroft Holmes4-Nov-12 11:54 
QuestionHow can i retrieve image to pictureBox ? Pin
heinhtataung1-Nov-12 18:04
heinhtataung1-Nov-12 18:04 
AnswerRe: How can i retrieve image to pictureBox ? Pin
Eddy Vluggen2-Nov-12 0:57
professionalEddy Vluggen2-Nov-12 0:57 
AnswerRe: How can i retrieve image to pictureBox ? Pin
SZLMCL6-Nov-12 23:20
SZLMCL6-Nov-12 23:20 
QuestionHow can i save image in my N-tier application? Pin
heinhtataung31-Oct-12 20:20
heinhtataung31-Oct-12 20:20 
AnswerRe: How can i save image in my N-tier application? Pin
Eddy Vluggen1-Nov-12 3:05
professionalEddy Vluggen1-Nov-12 3:05 
QuestionAI program Pin
Casey Edison31-Oct-12 5:04
Casey Edison31-Oct-12 5:04 
AnswerRe: AI program Pin
Simon_Whale31-Oct-12 5:08
Simon_Whale31-Oct-12 5:08 
GeneralRe: AI program Pin
Casey Edison31-Oct-12 5:13
Casey Edison31-Oct-12 5:13 
AnswerRe: AI program Pin
Richard MacCutchan31-Oct-12 7:59
mveRichard MacCutchan31-Oct-12 7:59 
GeneralRe: AI program Pin
Casey Edison31-Oct-12 12:26
Casey Edison31-Oct-12 12:26 

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.