Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pseudoman

    Extensive Macro Example

    Hello guys, I have been given alot of help in this forum so I figured it would make sense to give alittle back, as my company is dumping attachmate all together and building their own database app... It'd be a shame to let the code go to waste. So here it is you can all take a look and maybe...
  2. pseudoman

    Flash and Notes

    Hello all I am new to Notes Designer and started with a strong background in Webpage design and VB. My question was in regards to embedding flash objects into a Notes database. does anyone have an example of the code used to do this?
  3. pseudoman

    Accessing IE Via Attachmate

    Yes Calc, that is what I was referring to the text boxes, dropdowns, and buttons(submit). As far as I know these: http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/reference/objects/internetexplorer.asp are the only objects accessible, which if that is the case...
  4. pseudoman

    Extra pulling data from excel9?

    thank again calc your a guru, When I grow up I want to be just like you
  5. pseudoman

    Extra pulling data from excel9?

    I was wondering if anyone could do me a favor and post a example of code written in extra which pulls data from excels cells, and if possible an example of extra populating a excel sheet? thx in advance... I thought this was the correct syntax for excel but it fails to work, given the object...
  6. pseudoman

    Accessing IE Via Attachmate

    Calc... I have looked high and low for a answer on how to navigate a webpage from extra and populate data in that page... but still no luck have any ideas?
  7. pseudoman

    Endless looping

    South I think you need to do a little good old fashion debugging to find out what it is that the acType is being populated with. use the watch varible feature of the macro editor and step through you code to the point where that varible is being read.
  8. pseudoman

    Accessing IE Via Attachmate

    The code I have so far is along these lines Sub Main() Dim Explorer As Object Set Explorer = CreateObject ("InternetExplorer.Application") If (Explorer is Nothing) Then Msgbox "Could not create the IE object. Stopping Program." STOP End If...
  9. pseudoman

    How do I Set Focus on the first field of a dialog box?

    Jess can't believe I over looked this all I need to do was move the buttons... so the text came first... I'm a meathead
  10. pseudoman

    Waithostquiet... how many time???

    garrett1977 could you explain that function alittle more, and mbars: that # 1200 represents how many milliseconds that the macro is going to wait before firing try lowering the # and the macro will preform faster. as for the not working on other machines I have found that different machines...
  11. pseudoman

    How do I Set Focus on the first field of a dialog box?

    I thought adding this line would work but still no dice.... DlgFocus mydialogbox.TextBox1
  12. pseudoman

    How do I Set Focus on the first field of a dialog box?

    I would like my dialog box to function more like a inputbox, because with my current code I have to click the first field of the dialog box with the mouse in order to set the focus there... this is a problem because any mouse interaction slows the speed of the process that this dialog box is...
  13. pseudoman

    Getting text from IE object

    bill not that I have done alot with this but if you can get IE as a object try saving the page as text and using you app to search for the info in the textfile rather than the webpage
  14. pseudoman

    How to prevent a error message?

    here is the code: Sub Main() rc%=Shell (&quot;C:\Program Files\Internet Explorer\IEXPLORE.EXE www.metroreporting.com&quot;, 1) g_HostSettleTime=2000 AppActivate (&quot;Metropolitan Reporting Bureau - Microsoft Internet Explorer&quot;) SendKeys(&quot;<TAB>,<TAB>,<ENTER>&quot;)...
  15. pseudoman

    EXTRA &amp; INTERNET EXPLORER WORKING TOGETHER?

    Well this is my second post with no response, but I will try again anyway... what it is that I am trying to do is have EXTRA open a web page and paste strings in given fields on the page, and use the <TAB>, <ENTER> Keys to navigate the page. has anyone been able to do this before? I can only...
  16. pseudoman

    SendKeys To Internet Explorer

    Well as you can see from the subject I am trying to send some keystrokes over to IE (used to navigate the fields), can this be done with The Shell, ActiveApp, and some sendkeys? or will I have to go it some java scripts in IE. Let me know if anyone can solve this one thx....

Part and Inventory Search

Back
Top