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 bkrike 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: pjani
  • Content: Threads
  • Order by date
  1. pjani

    object's all attributes

    I want to access O object's attributes using java reflection. O.getClass().getFields() returns only public attributes and all inherited. O.getClass().getDeclaredFields() returns public and private attributes. But none of the inherited. how can i get ALL Attributes in object O. I would really...
  2. pjani

    vb6 data report

    Please tell me how can i create data report which connects to database and shows six table data report, one after one. i want something like following and need it in one report: Table1 Column1 Column2 Column3 ...........data............. Table2 Column1 Column2 Column3 Column4 Column5...
  3. pjani

    Data Report in VB-6

    Hi, i am new to data report...i need to generate reports for my current project. can you please suggests me a good starting place to learn data reports, printing reports and use some advanced features in data reports. Thanking you, pjani
  4. pjani

    order multi-dimensional array by Number, text

    I want to sort an array by two fields. first on number in column1 and then text in column2. please help me with any ideas or sample code which does this? I can dump the array in a temporaty table in database. Then can run select * from TempTable order by col1, col2. Then i will have to drop...
  5. pjani

    dynamic detection of Primary key in ADO

    Hi, In following sample code dbTest connects to MS Access 2k database. I am showing all the fields in Table1 to list2 listbox. List2.Clear str = "Table1" Set tdtest = dbTest.TableDefs(str) For Each fdtest In tdtest.Fields List2.AddItem fdtest.Name str$ = fdtest.Type Next My...

Part and Inventory Search

Back
Top