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 SkipVought 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: 557
  • Order by date
  1. 557

    Basic foem question

    If the name of the 2nd form is secondfrm, you should put your declaration as dim form2 as new secondfrm form2.show
  2. 557

    Access "Programmer" seeking VB.NET book

    Teach Yourself VB.net in 21 days is a really good book for beginners. Everything you have asked for is explained in easy steps.
  3. 557

    form enabling/disabling

    Thanks a lot earth and fire. I could use this tip for many form related issues I was facing. :-)
  4. 557

    form enabling/disabling

    suppose I have 2 forms. I need to call 2nd form from 1st form. when frm2.show() is given, I want to disable frm1. and when frm2 is closed, i need to enable frm1 again. How do I do this?
  5. 557

    convert database's table in excel format

    Can anyone pls tell me how to output contents of a table in sql server into a excel file pls
  6. 557

    SQL server date fields - 1/1/1900

    insert the date field as null (without quotes) eg:- insert into test_dates values('aa',null)
  7. 557

    Problem with CheckedListBox not triggering SelectedIndexChanged event

    I think you'll have to use the 'mouseup event' if you want to capture all the changes in the value irrespective of the speed at which the click events take place. when the speed is high and the clicks are similar to double clicks and if the value changes from 'select' to 'unselect' to...
  8. 557

    getting all combinations

    johnyingling, thanks a lot. your program worked perfectly. the only issue was that if there were too many combinations, it takes too long. is there any way we can eliminate a lot of unwanted numbers??
  9. 557

    while inserting what to do with autonumber

    is there any maximum number to which the autonumber will be set? each time, i'm clearing the table and adding new set of records. at that time, the autoincrement will not get reset. so, will the autoincrement number fail at any point of time?
  10. 557

    urgent-- please help

    not an intellectual exercise. there is a requirement. i've come up with an algorithm. i'll get back if it doesn't work as expected
  11. 557

    while inserting what to do with autonumber

    i have a table with one field set as autonumber. if i want to insert records into this table from another table using sql, insert into table1 select * from table2 will the autonumber field be updated automatically? how exactly should i give the sql to insert all the fields in table2 into...
  12. 557

    exporting from access to excel

    i'll get back to you with the details
  13. 557

    urgent-- please help

    thanks r937
  14. 557

    getting all combinations

    cbsm, i also had the same feeling. maybe a stack and recursion should be used to implement that logic, right?
  15. 557

    getting all combinations

    can someone tell me the logic to use for this problem i have a table with about 1000 records. each record has many detail fields and an amount field. when the user gives a particular amount ,say 10000, i want to find all combinations of records in this table which will give me a sum of exactly...
  16. 557

    exporting from access to excel

    my pc was upgraded from nt to xp. and now when i try to export from access to excel files, it is just not happening. can anyone please tell me what the problem could be and how to solve it.
  17. 557

    urgent-- please help

    can someone please help me with this problem i have a table with about 1000 records. each record has many detail fields and an amount field. when the user gives a particular amount ,say 10000, i want to find all combinations of records in this table which will give me a sum of exactly this...
  18. 557

    JOIN Help Needed (Subquery Needed?)

    got it.... thanks
  19. 557

    JOIN Help Needed (Subquery Needed?)

    so how do we do get this result?

Part and Inventory Search

Back
Top