- This topic has 304 replies, 5 voices, and was last updated 1 year ago by mauricem.
-
AuthorPosts
-
August 30, 2021 at 12:26 pm #95938ghostrideroftheniteMember
fixed all game links work on trivia working next https://www.dropbox.com/s/68qu4a2slrukpn0/NewBot%20Project%20files.zip?dl=0
August 30, 2021 at 4:34 pm #95942ghostrideroftheniteMemberpossible loop code for trivia not sure
con.Open _
“Provider=Microsoft.Jet.OLEDB.4.0;” & _
“Data Source=” & App.Path & “\Books.mdb;” & _
“Jet OLEDB:Engine Type=4;”
‘Are “A” and “B” stored Views?
rs1.Open “A”, con, adOpenKeyset, adLockPessimistic, adCmdTableDirect
‘##########################################
‘Make sure, Query “B” returns Matching_Criteria=”UnMatched”
‘SELECT ID, Description, “UnMatched” As Matching_Criteria FROM MyTableB ORDER BY ID
‘The “UnMatched”-Value corresponds to the Field-Position of Matching_Criteria, in this Case Column 3 (resp. Field(2) in the Fields-Collection)
rs2.Open “B”, con, adOpenKeyset, adLockPessimistic, adCmdTableDirect
‘##########################################rs1.MoveFirst
Do While Not rs1.EOF
rs2.MoveFirst
Do While Not rs2.EOF
If rs1(“ID”).Value = rs2(“ID”).Value Then
With rs2
!Matching_Criteria = “Matched”
.Update
End With
Exit Do
End If
rs2.MoveNext
Loop
rs1.MoveNext
LoopAugust 30, 2021 at 5:51 pm #95944ghostrideroftheniteMembernew version11 with screen size fixed min and max and all games working smooth
https://www.dropbox.com/s/c9qsqivgmuamju5/NewBot%20Project%20files.zip?dl=0
August 30, 2021 at 6:20 pm #95945ghostrideroftheniteMemberthat works pretty nice so far just cant do anything wid it but game links and music links all work nothing in chat room hahahah
August 31, 2021 at 4:13 pm #96018ghostrideroftheniteMemberwonder if and when this is working fully working as it uses current user login info to join , will allow users using new palcrap use it ?very nice by the way Thank You ALL The Help so Far
August 31, 2021 at 4:17 pm #96020ghostrideroftheniteMemberi’m Thinking here needs to be code to loop thru questions and answers from the adodc file
Private Sub Next_Que_Click()
Adodc1.Recordset.MoveNext
End SubAugust 31, 2021 at 4:30 pm #96022ghostrideroftheniteMemberperhaps need be a module or class module ive been looking ones ya added im not good wid that stuff hahahah im just nice at design hahahahah
September 1, 2021 at 5:51 pm #96092ghostrideroftheniteMembermade few changes folks request fer team play in trivia uploading now still ain tgot it working but ther patient hahahah or im full shit and no idea what im doing I added teams so men vs women so need get info from profile if man or woman is that possible?
https://www.dropbox.com/s/ybn923z6xp86nim/NewBot%20Project%20files.zip?dl=0
September 1, 2021 at 8:12 pm #96098ghostrideroftheniteMembermade few more changes some times i just start thinking and cant stop lol so dont get that version, hers new one then im going rest
https://www.dropbox.com/s/yb18cst7ak7cyg2/NewBot%20Project%20files.zip?dl=0
September 2, 2021 at 4:29 pm #96158ghostrideroftheniteMemberupdated pic of trivia not working yet just pic lol
September 3, 2021 at 11:15 am #96230ghostrideroftheniteMemberbeen looking ya trivia codes think i understand some with some , lol alot modifications would work
September 8, 2021 at 4:31 pm #96637ghostrideroftheniteMemberBeen offline few days had fix some power issues hope be back working on project again like to get it working and finished hahahah with alot help
September 9, 2021 at 8:03 pm #96704AdminAdministratorA lot lol 🙂 so have you tried implementing some of the Trivia codes into your program?
September 11, 2021 at 5:29 am #96754ghostrideroftheniteMembernot yet wasnt quite sure how and were to place them lol
September 11, 2021 at 5:47 am #96757ghostrideroftheniteMemberi was looking part of code for your trivia but think needs modification to work in my project lol or should say our project since you did most the work hahahah
-
AuthorPosts
Related
- You must be logged in to reply to this topic.