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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by uhu

  1. uhu

    Java License question - When to pay license ?

    Thank you very much both of you sedj & hologram now i'm ready to program in java :-)
  2. uhu

    Java License question - When to pay license ?

    Hi Sedj, Thank you for the reply. It's the clearest answer i've had so far. Just one more thing, do you know any website or where to find a list of classes which need license (eg. your example of java.net.URL) rather than checking each class manually. once again, thanks :-) vito
  3. uhu

    Where to get Excel DDE list of command

    Hi everyone, I'm writing application in Informix 4GL that interacts with Excel by using DDE. So far I only managed to find DDE command such as Open, Run, Select, changing font properties ( just the basic command). Where can I find out the list of command available to be executed from external...
  4. uhu

    Java License question - When to pay license ?

    Hi everyone, I just need to know, if I developed / modified an application (eg. Java Petstore) for J2EE platform and then sell it, do I need to pay any licensing fee to Sun ? In what case do I need to pay licensing fee ? Many thanks in advance Note: I'm using the free to download J2EE SDK &...
  5. uhu

    Adding 2 fields in SQL statement where 1 field is NULL

    Thank u very much Shriyan.. wow.. you're the real INFORMIX GURU here :-) vito
  6. uhu

    Adding 2 fields in SQL statement where 1 field is NULL

    Hi everyone, I'm trying to execute this statement SELECT integervalue1 + integervalue2 INTO totalvalue FROM testingtable When both integervalue 1 & 2 are not NULL then everything is fine. but when integervalue1 = NULL then I'll get totalvalue = NULL. Is there any tricks to overcome...
  7. uhu

    Jumps to a specified row,column in INPUT ARRAY

    Sorry for the late reply thanks very much Shriyan regards, vito
  8. uhu

    Jumps to a specified row,column in INPUT ARRAY

    Hi everyone, is there any Informix function that lets you jump to a specific row,column ? eg. ON KEY(F7) NEXT FIELD ma_testing[2].col3 -- 2nd row, 3rd column thanks in advance vito
  9. uhu

    Extending the default F2=Delete function

    Hi Shriyan, Thank you SOOOO MUCH !! That's exactly what i'm lookin for... too bad i've compeleted the reshuffleing of the array.. but i'll defintely use that method next time, and i'm gonna test the AFTER DELETE on Monday. cheers vito
  10. uhu

    Extending the default F2=Delete function

    Hi everyone, I need some help in extending F2 Delete functionality. I need F2 to do more than just delete a row in the screen array. Basically I need F2 to delete a row in the screen array and then move the cursor to the first column (Informix default made the cursor to stay in the current...
  11. uhu

    Tools for data class creation ???

    Hi everyone, Is there any tools that automates the creation of data class by importing the structure of the table from a ms-access database ? eg. From "Customer" table in Ms-access --> CustomerData class with variables & getter/setter. Thanks in advance vito
  12. uhu

    HELP: ListBox problem

    thanx, problem solved This is what I did: TextBox1.Text = ListBox1.SelectedItem(0) :-)
  13. uhu

    HELP: ListBox problem

    Hi, I have a listbox which is populated with values from DataSet: OdbcDataAdapter1.Fill(ds) ListBox2.DataSource = ds.Tables(0) ListBox2.DisplayMember = "Store" It displays fine in the form, but when I tried to execute this code: TextBox1.Text = ListBox1.SelectedItem VB produces...
  14. uhu

    Exporting dataset to CSV

    How do I export my VB .net dataset to a CSV file ? or any link discussing this issue ? thanks in advance vito
  15. uhu

    Excel Lookup to Access Database

    thanks :-) but, I found that i can create a custom function, which also works fine.

Part and Inventory Search

Back
Top