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 mn12

  1. mn12

    conversion and casting

    Hello sedj, I think this is eg. for casting: Object o = session.getAttribute("abc"); Integer i = (Integer)o; int ii = i.intValue(); and this is conversion eg.: Object o = session.getAttribute("abc"); String s = +""o; int i=Integer.parseInt(s) Can you explain please when will I use each way...
  2. mn12

    conversion and casting

    what is the difference between conversion and casting? Thanks for your time!
  3. mn12

    conversion

    Thankk you,sedj!
  4. mn12

    conversion

    Hi All, Can I use the toString() method in order to convert an object to a String variable? How? Thanks mn12
  5. mn12

    session casting

    Hi All, I use the function getAttributes in my program. This function return an object. I want to convert it(the return value) to an int variable. How can I do it? Thanks, mn12
  6. mn12

    SQL PROB

    Hi Daisy, thank you for trying help me. I want to use the 2nd choise you have suggested,and it nearly works correctly. the problem: I get the right number and date,but not the right values on field1 and field2. e.x: the table: number date desc 10 10/2003 "aaa" 10...
  7. mn12

    SQL PROB

    Hi, I use access DB in my vb program,and I have SQL problem. I have a table with 4 records:date,number and 2 other records. each number can appear on some dates,e.x.: number date 10 10/2003 10 1/2003 10 5/2003 20 3/2003 20 5/2003 20 6/2003 I want all...
  8. mn12

    SQL PROB

    Hi, I use access DB in my vb program,and I have SQL problem. I have a table with 4 records:date,number and 2 other records. each number can appear on some dates,e.x.: number date 10 10/2003 10 1/2003 10 5/2003 20 3/2003 20 5/2003 20 6/2003 I want all...
  9. mn12

    excel prob

    Hi, I use excel in my vb application. I use excel by the control (and not by ref). I try to write on the control(excel workbook) via code, and I want the values to be displayed at run time. but--I don't succeed at all. how can I do it??? thanks for your time.
  10. mn12

    return value from DLL

    I have created a DLL,and I want it to return a matrix with values.how can I do that? can it return a vector of classes,or types? how? thank you very much!
  11. mn12

    resolution problem

    thank you,VBAdev I check all what you have written,and it was all right. but my problem is still valid. could you please help me?
  12. mn12

    resolution problem

    Hi All, I create report by excel and use it in vb program. my report includes text and frames around the cells. I use the printPreview command in order to display the report. when I display it on my computer,everything is right. But when I try to display it on another computer- everything(both...
  13. mn12

    move between pages in excel

    thank you combo,it works! see my previous massage as cancalled!
  14. mn12

    current page number in excel

    thank you,but this I know. I mean: How do i know the current page number at design time? I want to use it somewhere in my vb code. (maybe there is a property or something else)
  15. mn12

    move between pages in excel

    thank you, but I can't use it because I must know the position(coloumn and row)where the title is. (the title includes some titles: aaaa bbb ccc ddd eee--> this is my whole title. each one of them is a title of a coloumn in my report. and so I must know exactly where it is(col and row).

Part and Inventory Search

Back
Top