Search results for query: *

  • Users: kAnne
  • Order by date
  1. K

    Resetting datasets

    That worked great (as always), Thankyou very much! :)
  2. K

    Resetting datasets

    Hi, I need some help with resetting a dataset (well, I think thats what I need to do!). I have a quiz form where questions are loaded into a dataset depending on the subject. At the end of the quiz there is a 'play again' button which when pressed should reset the dataset and display the...
  3. K

    app path Help

    Ohhhh! I see! Thanks for clearing that up for me. Really helpful! Kristy :)
  4. K

    app path Help

    No, that didnt work
  5. K

    app path Help

    Yeah, Ive tried that one...It takes me to /bin folder. Do I have to put the files I need in there?
  6. K

    app path Help

    Hi, Im having some trouble specifying relative file paths in VB.NET (App path seems not to work outside VB6) Ive tried pretty much all I can think of, but this leads me to the /bin directory of my folder which is not where the file I want is held! Any suggestions? Thanks :)
  7. K

    Radio Buttons and Their text values

    Hi, just tried your code out...Its just what I needed! Thankyou sooo much. Youve been such a help. much appreciated :)
  8. K

    Radio Buttons and Their text values

    It gets a bit confusing beacuse the questions, answers and correct answers are pulled from the DB so the correct answer will depend upon the current record being shown. But il try and fit that code into my app and let you know how it works out. Thanks :)
  9. K

    Radio Buttons and Their text values

    Hi all, I know ive been posting alot on here lateley, dunno if thats a bad thing or not but sorry anyway!! Anyhoo, i have 3 radio buttons on a form to select an answer for a question. I need to be able to keep a score of how may questions the user has got right. But to do this, I need to...
  10. K

    datareader - move to next record

    I wouldnt dream of ignoring you!! Have a look at my last post... there isnt much data being pulled from the DB (access btw), so im thinking data set will suffice. Ive got it working so far, but still cant move to next record. It gets confusing (well..for me anyway!) because I have two...
  11. K

    datareader - move to next record

    Right, well, I guess im in trouble then! Ive only just mastered getting data from the DB using a reader. Now I have to use a dataset? Ive looked around, and cant really find anything useful to teach me datasets and datatables. Any links etc would be very much appreciated!! Not really keen...
  12. K

    Strange Things...Advice Please! (form load)

    Never mind, sorted it now. Just move F2.showdialog to the end of the while loop. Had it in the wrond end place! Thanks :)
  13. K

    Strange Things...Advice Please! (form load)

    Yep, that worked. Thanks :) Only now, when I close the form, and click on another subject (which creates a new SQL to pick questions for that subject from DB) the form wont open at all.
  14. K

    Strange Things...Advice Please! (form load)

    Okay, Ill have to break this down a little bit, so you know what im on about! My program is an app 4 kids. Its built in FMX and VB.NET. When a user clicks on a button in the flash app (embedded into VB.NET form1) it opens a new form (form2) and connects to a database which holds questions for...
  15. K

    datareader - move to next record

    Hello again everyone, I have a simple question, Well, it seems simple but I cant get it to work! I have successfully got the connection to the database etc and its all fine, but I cant get the app to move to the next record from a button click. Im guessing its something to do with the...
  16. K

    OleDBCommand SQL Syntax help

    Finally!!!! Thankyou so much TechGnome...I can go and eat now (this things been driving me crazy, and all over a few quotes!):):D
  17. K

    OleDBCommand SQL Syntax help

    Thanks for your help (and links!). I'll try and figure it out somehow :)
  18. K

    OleDBCommand SQL Syntax help

    I think your right...im getting nothing back.
  19. K

    OleDBCommand SQL Syntax help

    Well, it gets confusing because im using fscommand to communicate with Flash in order to display questions and answers from a database onto a new form. Ill show you what I have so far...... (forgive me if its crap, ive never used flash and VB togther before!) con = New...
  20. K

    OleDBCommand SQL Syntax help

    Dim SelSTMT As String = "SELECT * from " & tablename & " WHERE subject = " & subject cmd = New OleDbCommand(SelSTMT, con) Now im getting a syntax error in FROM clause error message
Back
Top