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. Vasile1991

    Array not found if ALEN used

    Thank you for your replies, I understood the problem, but how to test if the array is empty??
  2. Vasile1991

    Array not found if ALEN used

    I have found the problem and the caues was really ... strange... It seems you cannot use ALEN(arrayName) in an IF So : 1 IF ALEN(arrayName) ==0 2 Messagebox(""No results found") 3 ENDIF is INCORRECT... The Correct form would be something like this : 1 STORE ALEN(arrayName)...
  3. Vasile1991

    Array not found if ALEN used

    sorry, should be this select : 1 SELECT product.id_prod; 2 FROM product; 3 WHERE alltrim(product.name) == alltrim(VVname) ; 4 INTO ARRAY arrayIDs 5 6 IF ALEN(arrayIDs) (Here I want to say that if it has no records show that message) 7 MESSAGEBOX("No results found.", 48...
  4. Vasile1991

    Array not found if ALEN used

    Hello, I have a problem with arrays and determining the size of them. I'm writing a complex select statement for determining only the the IDs I have in that table for those products. I have simplified it to make it easier to understand... even simplified it will still not work... 1 SELECT...
  5. Vasile1991

    KeyListener add to a JPanel in Applet Problem

    I figured it out... I had to use only setFocusable(true) on the main panel in the class that contained that panel.
  6. Vasile1991

    KeyListener add to a JPanel in Applet Problem

    Hello, I'm doing an arithmetic expression calculator as an applet and I have encountered a problem... It's not crucial that this problem would be solved but if it can be solved it would make my applet better. So, I'm relatively new to Java (Java only) and I'd like to add a KeyListener so that...
  7. Vasile1991

    Change Button Caption in a YES/NO Messagebox

    Hello, I'm just wondering if there's possible that when you create a Messagebox with Yes/No buttons you could perhaps specify other captions for those buttons... This could help me a lot in a project I'm working on because I'd like them in some other language (although many people already know...

Part and Inventory Search

Back
Top