time out function

chidambaram

Well-known member
Joined
Dec 27, 2007
Messages
62
Location
Chennai,India
Programming Experience
Beginner
How i can use timeout function?

Thanks for ur reply sir.

I have another question

How i can use timeout function in vb.net

advance thanks

I need urgent reply plz...
 
What function are you referring to?
 
Sir,

I am automating one web site. In that web site when i click a button a pop up window will appear. I want to make that pop up window disappear after one minute how can i make this in vb.net? My friend gave me a sample in apple script

with timeout 86400 seconds--(One day)
--do stuff
end timeout

how can i do this in vb.net?
 
Sir,

Actually my need is click a button displayed in the message box when i click a button in the web page.

In that web page, the page owner written as

<img id="remove64" class="detailButton" onmouseover="hoverMany(this.id, 'actionTabDelete');" onmouseout="buttonMany(this.id, 'actionTabDelete');" onclick="if(window.confirm(constants.formatMessage(constants.MSG_TABCARD_002, new Array('Ownership Resources'))) && (onDelete.validate(22801, 64))) {setMenuBarCursor('wait'); storeScrollPosition(); doSubmitDetail('64','doRemoveConnection');;}" src="../appearance/images/actionTabDelete.gif" alt="Delete Ownership Resources" width="32" height="16" border="0" />

By clicking this img html element, javascripts window.confirm message box is displayed. In that message box i want to click the ok button.

How can i do this?

urgent plz....
 
Perhaps you can use SendKeys.Send("{ENTER}"). VB.Net has different Timer classes if you need one.
 
Back
Top