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 Wanet Telecoms Ltd 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. DvlDawg

    File size limitaions....

    If I recall, the size limitations on the macros are 64k, which is roughly 1000 lines of code. I there a way to increase this limitation?
  2. DvlDawg

    SendKeys from VBA

    That part worked, however after I added more code to it, it just stops with no errors.
  3. DvlDawg

    SendKeys from VBA

    No that didnt work, however this did. Now to figure out sending data from a cell to the screen and I will be good to go. Sub Main() '-------------------------------------------------------------------------------- Dim Sessions As Object Dim System As Object Set System =...
  4. DvlDawg

    SendKeys from VBA

    What I am attempting to do is use the macro in excel to key someting to the session from different cells. I can get Extra macro to read from it, but halfway through the code it just stops. No errors, edits, nothing. This is the code I was trying to get to work in the VB editor. I can get it...
  5. DvlDawg

    Attachmate Macro to read data from Excel

    Got it, works like a charm now. This is exactly what I needed, sometimes you cant see the forest for the trees until you take a step back and regroup.
  6. DvlDawg

    Mulitple Dialog Boxes ??

    I havent tried to do this yet, but im curious. Is it possible to have more than one Dialog box? If so, how would I go about doing that? First box I have for one set of information, Second box remaining information. Dialog dMain1 Dialog dMain2 ?? As always your input is...
  7. DvlDawg

    excel macro

    Format the colum to text and it should work.
  8. DvlDawg

    SendKeys from VBA

    The code is in a Macro in Excel not Extra. I can do those all day long with no issues. Its crossing it over from VB/Excel is where I am having the problem.
  9. DvlDawg

    SendKeys from VBA

    I can get everything in my code to work except this one thing. I need to send data from my Excel spreadsheet to a session. But all the examples I have seen are not working. I tried everything in the help files from VB6, the standard ones in Extra! nothing is working. Any suggestions? I can...
  10. DvlDawg

    dialog box example

    Depending on what your wanting to do, you could set a location on the screen to equal something in your code, and have it updated based on your input from a Dialog box. MyField = MySession.Screen.Area( 01, 01, 01, 06, , xBlock)
  11. DvlDawg

    Attachmate Macro to read data from Excel

    I tried this code snipet, and all I can get it to do is open the session. What am I missing to get it to send a cell of data to the screen?
  12. DvlDawg

    Copy and Paste?

    This was a little challenging to me when I first started working on the copy/paste method in the same session. ' Copy a string of text from one location on the screen and paste in another location, within the same session ' Selects the text at Row 8 Column 14 through Row 8 Column 18...
  13. DvlDawg

    Uploading Text file?

    miss posted previous entry, if anyone can point me in the right direction of how to get the upload from a text file to work, I would greatly appreciate it.
  14. DvlDawg

    How do I limit character length in text box?

    I figured this out, no post reply needed. Thanks. Dim Myinput As String*8 'Number is the string length, andthing after that wont be sent to the screen. I needed this in case of fat fingers.
  15. DvlDawg

    Uploading Text file?

    I figured this out, no post reply needed. Thanks. Dim Myinput As String*8 'Number is the string length, andthing after that wont be sent to the screen. I needed this in case of fat fingers.
  16. DvlDawg

    Uploading Text file?

    I dont need to upload a file to a server, I need the information in the text file to upload like it was typing it on the screen. I have tried everything I can think of. Any help is appreciated.
  17. DvlDawg

    How do I limit character length in text box?

    How do I limit the number of characters entered in a textbox, regardless of the amount the user inputs? I thought is was something like: myinput = dMain.TextBox1,*8
  18. DvlDawg

    Data in Macro or in a Header File

    Update: I used this same format for my dialog box as well as other parts of code. This makes life alot more simple, as I can now use one Dialog to go do what macro I actually want to run. Thanks again!
  19. DvlDawg

    Data in Macro or in a Header File

    That worked like a charm. Thank you so much!
  20. DvlDawg

    Data in Macro or in a Header File

    No that makes sense to me, so if I take code section a, save it to a header file 1, then I use the 'Include myheader.edh where the code would have gone previously. And so on. Yep that makes sense, will try that and post an update, thanks for the assist.

Part and Inventory Search

Back
Top