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: *

  • Users: pjani
  • 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

    Actually i want few records from table1 using "select * from table1 where (column3=5 or column3=4)" and in table2 "select * from table2 where (column5=5 or column5=4)" My database is MS Access 2000. I am using ADO. Thank you, pjani
  3. pjani

    Printing the contents of different tables in one Report

    Hi, I want to do similar work. I have eight unrelated tables and want one report showing data from them. I can try Pete's idea and have a table with TableName and TableData (memo) field. Before I do lot of work in that direction. I want to find if this can be done in an array and then array...
  4. 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...
  5. 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
  6. 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...
  7. pjani

    on error goto..

    hi I have a similar situation.... i was debating between use of resume and resume next..coz my problem is i can not deal with error during a run of program.. my need is to write entry to a <b>log file</b> and resume....but if i resume w/ dealing with error, i get run time error...so i was...
  8. pjani

    dynamic detection of Primary key in ADO

    Hi Chiph, Thank you for your guidance. I am now kind of comfortable with ADOX, but i wonder if I can do this using only ADO 2.1 this way i can save a extra reference to MS ADO Extension 2.5 My Win 98 pc have visual studio 6.0 and sp 3 and ADOX 2.5...i could not find ADOX 2.6
  9. 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 = &quot;Table1&quot; 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