Im hoping someone can help me out here.
I am looking to create a virtual type database that is created on runtime and is destroyed when the program ends.
After looking at my program I figure this would be the best way to handle the data rather then trying to play around with a bunch of arrays and "if then"s.
I have done it before with VBScript in ASP but cannot find any articles for VB6 in regards to this.
If anyone can help me out it would be great.
Incase you dont know what Im talking about, this is a snip of what I was doing in ASP:
Code:<object runat="Server" scope="Application" id="rstActiveUsers" progid="ADODB.Recordset"> </object> Const adInteger = 3 Const adVarChar = 200 Const adDate = 7 rstActiveUsers.Fields.Append "id", 3 rstActiveUsers.Fields.Append "nickname", adVarChar, 25 rstActiveUsers.Fields.Append "area", adVarChar, 75




Reply With Quote