Search results

  1. R

    randomize and rnd

    Since I'm not getting any responses for the Dlookup procedure, I thought I'd check if I can achieve the same goal differently. I need to get the randomizing in the application to start at a different point each time it is started. I tried to put the Randomize, Randomize Timer and Rnd at...
  2. R

    Dcount and Dlookup in vb6

    I am working on an application that uses an access db and was having a problem where randomizing kept starting at the same point all the time. On the Access forum they helped me get randomizing to work but through using Dlookup and Dcount as follows: Randomize...
  3. R

    MS Access Form from within vb6

    Any control over showing only the MS Access form by itself when you execute activate it from within VB6. Right now I get the form and access as well. Is there some sort of filtering statement or something. Appreciate any advice.
  4. R

    Use randomize and rnd in the same query to get real random choices

    The queries go like this at present : SELECT TOP 1 [Table].[QuestionText], [Table].[Answer] AS CorrectAnswer FROM [Table] GROUP BY [Table].[QuestionText], [Table].[Answer], rnd([IDQuestion]) ORDER BY rnd([IDQuestion]); SELECT TOP 3 Table.Answer AS Correct, qQuestionTextAndAnswer.QuestionText...
Back
Top Bottom