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 Wanet Telecoms Ltd 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: *

  1. Boorgy

    wave file analysis

    Thanks Dave that's real cool!!
  2. Boorgy

    wave file analysis

    Thanx Dave, I'll look into that. But at a more starting level, how do I even refer to the conent of a wave file?
  3. Boorgy

    wave file analysis

    Hey folks!! Does anubody know how to manipulate wave files from inside a C++ program? I would need to do some rythmic analysis on it, like determining the main and secondary beat rates, or maybe finding some pattern in the sound (if there is little or no bass). Any tip would be useful and...
  4. Boorgy

    wave file access

    Hey folks, Does anybody know how I could do some analysis on a wave file from inside a C++ program. I mainly need some rythmic analysis, like finding the main and secondary beat rates, or maybe to detect some pattern within the sound (like for example if I analysed a flute track, with no...
  5. Boorgy

    Method to return available ODBC connections

    Hi people... Does anyone know of a method that returns the available ODBC connections on a computer, in VB? I need it at run time. Or even a function that would check if a certain ODBC connection exists on the computer, that could do ... Thanks, Nick
  6. Boorgy

    Help with queries within 2 ComboBoxes

    Hi again, Yeah, I understand, but I wasn't really clear the first time. All I mentioned (the query, clearing the second combobox and updating it) should be encoded in your combo1_click module, so the 2nd combobox gets updated each time. I think the code would look like (using ADO): Private...
  7. Boorgy

    Help with listboxes

    Hi there I think I know what the problem is: see, ListCount returns 20, the numbers of items in your list. However, they are indexed 0 to 19, so when you try to access list1.ItemData(20), you get an error message, cause that one doesn't exist.. Try to run your for loop from 0 to ListCount-1...
  8. Boorgy

    Search for names containg the ' char 2

    Hi again, Ok, the thing I forgot to mention is that I am using SQL in a VB6 application. Now the "O'Connor" thing doesn't work, no more than using brackets and lots of other things I've tried... So if you have the answer, or if you know someone who's likely to, please help!!! Boorgy
  9. Boorgy

    Search for names containing the ' char

    Hi there SQL experts... There's this problem I've been stuck on for a few hours: I have a search query that checks for the name, like: SELECT IDnumber FROM Employees WHERE Name='-----' The problem is some of the names contain the ' char (O'Connor... who put an irish name in a database?) Of...
  10. Boorgy

    Help with queries within 2 ComboBoxes

    Hi I would try something like this: I would have an SQL statement ready, like "SELECT Model FROM yourTable WHERE [Equip Group]= ". Then program your combobox so when you click on it, it adds its selected field to the string, so the string should be some like: "SELECT Model FROM...
  11. Boorgy

    Queries on multiple fields or only updated fields ?

    Hi bud', hmmm, well the way I do it is to check which text boxes are filled, and then have my application form the query depending on that... It means a little more coding, but at least it works... So unless anybody has a better idea :-) Good luck, boorgy
  12. Boorgy

    2 fields relating to a same table...

    Thanks Joe, that should do the trick... The thing is, I'm not allowed to change the database, the whole system relies on it... I've just been asked to add this new little feature. Anyway, thanks again bourgui
  13. Boorgy

    2 fields relating to a same table...

    Hi folks, hope somebody can help... I got a table, nights, in which 2 fields, shift1 and shift2, both correspond to an entry in another table, employees. Shift1 and shift2 contain an employeeID which is used to relate to an employee in the employees table. Question is, how do I write an SQL...

Part and Inventory Search

Back
Top