K
kidkosmo
Hi, Gang,
Hoping someone can help me out here. I am working on a project to
update some information on a wiki page from data in my database. I've
gotten as far as this below (all foreign terrority):
strPath = rs1!wikiEdit
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate strPath
IE.Visible = True
Delay (10)
IE.Document.All.Item("content").Value = WIKI
What I need to do after I paste in the data is click the Save button.
Is there a command I can provide in my code that will perform this
function for me? Below is the source code I believe to be associated
with the Save/Cancel button (again...foreign territory).
<!-- content editor -->
<div class="inputSection">
<div class="submit-buttons">
<input
tabindex="102" accessKey="s"
type="submit" name="confirm" value="Save"/>
<input
tabindex="104" type="submit"
name="cancel" value="Cancel"/> </div>
<div id="draft-status">
</div>
<div id="editorDiv">
Any help would be greatly appreciated!
Hoping someone can help me out here. I am working on a project to
update some information on a wiki page from data in my database. I've
gotten as far as this below (all foreign terrority):
strPath = rs1!wikiEdit
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate strPath
IE.Visible = True
Delay (10)
IE.Document.All.Item("content").Value = WIKI
What I need to do after I paste in the data is click the Save button.
Is there a command I can provide in my code that will perform this
function for me? Below is the source code I believe to be associated
with the Save/Cancel button (again...foreign territory).
<!-- content editor -->
<div class="inputSection">
<div class="submit-buttons">
<input
tabindex="102" accessKey="s"
type="submit" name="confirm" value="Save"/>
<input
tabindex="104" type="submit"
name="cancel" value="Cancel"/> </div>
<div id="draft-status">
</div>
<div id="editorDiv">
Any help would be greatly appreciated!