dcb -Dim sql as string
Dim data1, data2 as string ''Undefined
Dim db as database
Dim rst as Recordset
sql = "Select * from undefinedTable;"
Set db = CurrentDb
Set rst = db.OpenRecordset(sql)
Do Until rst.EOF
data1 = rst("NAMEDCOLUMN")
data2 = rst("NamedColumn")
''DO STUFF WITH THE DATA
rst.MoveNext
Loop
I've found it to be one of the best sites for tutorials....but on this site they seem to explain it pretty good
I've found it to be one of the best sites for tutorials.
By the way, what is your native language?
Well the reason I have learnt to use them is I have a freind who codes C# - It is a very structured language and I have picked up (what I believe) are a few good tricks from it...
The link Bob has given is great by the looks of it!
Ah, well I definitely can't help in THAT realmRussian
Well, I think you're doing great for having to deal with such complex tasks in another language. I don't know that I would do as well having to do that the other way around.i came here when i was 15, i'm 35 now, so my english is good, but only when it comes to talking and stuff
reading specialized literature is a bit harder
LOTS I don't know. I've been working with it for almost 13 years now and I still find I have things to learn and get corrected and confused by other, more technical, users. So, I guess it is all relative....is there anything you don't know about access?)))))))))))))
LOTS I don't know. I've been working with it for almost 13 years now and I still find I have things to learn and get corrected and confused by other, more technical, users. So, I guess it is all relative.![]()
oops, one problem
how do i make it stop?
it keeps looping))))))))))))))
... I still find I have things to learn and get corrected and confused by other, more technical, users. So, I guess it is all relative.![]()
Umm
The rst.MoveNext should have got it to the EOF?
Press break to stop it - and then debug