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 dencom 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: *

  • Users: tedb13
  • Content: Threads
  • Order by date
  1. tedb13

    Can anyone explain how text gets smaller and smaller each time you toggle through a texbox?

    I would also like to know if there is anyone out there who knows how to toggle through the textboxes using Tab and Shift+Tab. Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer) 'If KeyCode = vbKeyTab Then TextBox2.Activate If KeyCode = vbKeyUp...
  2. tedb13

    Is it possible to move data to clipboard once it has been obtained then manipulated using GetString?

    Hi, I need to take data I have retrieved then manipulated using the GetString function and enter it into Clipboard to be manually pasted afterwards without using a text file. Does anyone know if this is possible? It's always better to ask stupid questions; stupid questions have been known to...
  3. tedb13

    DropListBox option comes up as numeric value instead of String

    Can anyone explain why the selected string from a list is displayed as the number for which the string is found in the list? example: user selects "09:00", the value returned is 2, where "08:00" is at 0 in the list. I tried using real time values with a For/Next loop n an array, and it displayed...
  4. tedb13

    ..Get Excel to Extra! Droplist options. Why is this code not working?

    I know that I have approached you with this question before. This code I am presenting reflects my continued efforts to find a solution to my original query. Is there an answer to be given? Is there a solution? It eludes me. Any further pointers would be appreciated. Thank you. Dim Name1() As...
  5. tedb13

    Can I convert a macro into a function used by another macro?

    Hi, Is there a way to use this code in a function or header file that can be accessed by Main()? Sub main() Dim Sessions As Object Dim System As Object Set System = CreateObject("EXTRA.System") ' Gets the system object If (System is...
  6. tedb13

    Excel Get A if B And C ...Loop

    I have scanned through the forum discussions and examples, but none exactly clearly show a way to get Excel data using eb macro for what I need. I will keep looking through links I have already visited to see if there is something there that would assist me in solving this problem. What I need...
  7. tedb13

    DropListBox returns number instead of string?

    Hi. I am at a loss. I have asked this question once before but I feel as though I was not clear. In the following script I have an example of a droplistbox. DropListBox 120, 100, 75, 32, "Cris"+chr$(9)+"Micheal"+chr$(9)+"Krista"+chr$(9)+"Kevin"+chr$(9)+"Jennifer", .dbxOption If the user...
  8. tedb13

    HOUSE.EBM...

    Hello. Simple question??? I will assume that everyone is familiar with the HOUSE macro provided by Attachmate to showcase some of its functionality. It collects some input from the user, then is followed by a msgbox message: Congratulations! You just bought a ..., in Anywhere, USA. If I...
  9. tedb13

    converting a String to a value that could be manipulated

    I need to find a way to take, $4,500.00(String) and convert it to 4500. MyValue=MyTerminal.GetString 14, 18. Is there an easy way to do this? I have already created the hard, long way. My code can sometimes be long-winded like my brother-in-law. I have tried to wrap my head around it, but my...
  10. tedb13

    creating a user input dialogbox...word wrap

    Hello 'Extra!' programmers! I have an issue, though most likely simple for many, but not for me. I need to create a user input dialog box, which will include DropListBox(s), TextBox(s) and CheckBox(s). The data collected will then be brought together and used to form a diary of sorts. ex...

Part and Inventory Search

Back
Top