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 Mike Lewis 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. bartmc

    Detect what a TextBox loses focus to.

    Already do all that. I had to write my own TabStop type stuff FOR Windows CE since .NET compact Framework doesnt have real good navigational tools especially for traversing pages and pages of textboxes on different tabpages on multiple forms, and we have Full Keyboard/number pads attached to...
  2. bartmc

    Detect what a TextBox loses focus to.

    At last count there were 120 text fields that they have to enter in I have some buttons on the top of the screen (ADD/UPDATE/DELETE/SAVE/QUERY/ABORT/PRINT/PROCESS). I'm just making sure that they are putting dates in the corect format and that any code they reference has an entry in the...
  3. bartmc

    Detect what a TextBox loses focus to.

    Is there a way to detect what an object is losing focus to. Here's my situation, i have these LostFocus() functions that i use to validate data in a TextBox, If the data is invalid, i just call tb.Focus() to not let them out of the box, now here's the problem, i have an abort button, that should...
  4. bartmc

    sending text through lp on SCO

    I have a zebra 802.11b printer, im generating my own ZPL and CPLC code to send to it. I can create a socket connection to the printer and send the ZPL to it and it prints fine. My problem is is that no matter how i set it up using scoadmin, it wont print. I just want lp to handle the spooling...
  5. bartmc

    force typing in all caps?

    Response to JurkMonkey, How? I've tried e.Key(Whatever) and they are all read only. How would i get access to it?
  6. bartmc

    force typing in all caps?

    CharacterCasing Requires. Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family Im using .NET mobile Framework, so that doesnt work.
  7. bartmc

    force typing in all caps?

    Yeah i think i am going to create a new control. The problem is the behavior of this.TB.Text=this.TB.Text.ToUpper() is a key press event is not trivial. I cant understand why it reverses the text when its a lower case letter but not when its a upper case one. So if i type in iMcG iget GMCI, i...
  8. bartmc

    force typing in all caps?

    Thats exactly what I dont want to do, is have to do that for EVERY thing they type in, thats going to be tons of redundant code, there are probably 40 textboxes on 1 screen. I want when they press "i" it shows up as "I" not after the fact. I guess i could derive something from text box that...
  9. bartmc

    force typing in all caps?

    Does anyone know how to intercept ALL keystrokes and force all input to be in UPPERCASE? We only accept uppers in our database. Bart

Part and Inventory Search

Back
Top