473,322 Members | 1,241 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

My program locks up.......


I am writing a simple name game that shows the user a picture. The user
selects a radio button that corresponds to the pictures name and then
clicks the submit button. If the answer is correct 20 points is added
to the score and if the score is less than 100 and less than 7 photos
have been shown the game continues. Thei is a counter that keeps tracks
of how many pictures have been shown. Only 7 photos are allowed to be
shown. 100 points wins the game. So as you see the goal is to get 100
points before 7 photos are shown, each correct answer is worth 20
points. OK that out of the way here is my problem. When the user has
80 points and 6 pictures have been shown and you click the submit
button and get it right then the game hangs. It is as if it is thinking
"What do I do, the user has 100 points so he wins but he has been shown
7 photos so he loses. Here is my code. I know some of you guys hate it
when someone pastes a crap load of code in thses posts but the only way
anyone can help is if they see it all. Yes I am a newbie and yes this
is a school project and finally yes it would be awesome if anyone with
their vast knowledge could solve this riddle. Here is the code:

''' Set some global varibles''''''

'String Array Stores Answers

Dim m_strOptions As String() = New String() _
{"1", "2", "3", "4", "5", "6", "7", "8", "9", _
"10", "11", "12", "13", "14"}

'Boolean array that tracks used pictures
Dim m_blnUsed As Boolean() = New
Boolean(m_strOptions.GetUpperBound(0)) {}

Dim m_iPicked As Integer 'gets value from getuniquenumber() to use
in case

Dim m_intCounter As Integer = 1 'tallies how many photos shown

Dim m_strPicture As String 'current pictures name

Dim m_Score As Integer = 0 'keeping the score

'''Windows factory code stuff was removed from here'''''''

''''''''======= 1ST
======''''''''''''''''''''''''''''''************** *****

Private Sub FrmFlagQuiz_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load
MessageBox.Show("Each correct answer equals 20 points and 100
points wins!!! You only get 7 trys, Good Luck!!!", "The Rules", _
MessageBoxButtons.OK, MessageBoxIcon.Information)

cbSel1.Text = ""
cbSel2.Text = ""
cbSel3.Text = ""
DisplayImage() 'go get the picture

'check what picture was selected and set up the answer grid
End Sub

'''''''''''''''''=============== 4TH ===========''''''''''''''
Function BuildPathName() As String

'begin with image name
Dim strOutput As String = m_strPicture

'throw image extension on string
strOutput &= ".jpg"

'add image location suffix
strOutput = strOutput.Insert(0,
System.Environment.CurrentDirectory _
& "\images\pic")

Return strOutput 'return full pathname

End Function


''''''''''''''''============== 3RD ======='''''''''''''''''''
Function GetUniqueRandomNumber() As Integer

Dim objRandom As Random = New Random 'new random
Dim intRandom As Integer 'represents result of random mix

'generate a random numbers unitl unused picture is found
Do
intRandom = objRandom.Next(0, m_blnUsed.Length)

Loop Until m_blnUsed(intRandom) = False 'look for unused images

m_blnUsed(intRandom) = True 'set subsc to true to indicate it has
been used

Return intRandom 'return subscript of image

' m_iPicked = intRandom 'set this for case to set up answer

End Function


'''''''''''''============ 2ND ======='''''''''''*************

'display random image in PictureBox
Sub DisplayImage()

'unique subscript ensures that a flag is used only once
Dim intRandom As Integer = GetUniqueRandomNumber()

'retreive picture name from array m_strOptions
m_strPicture = m_strOptions(intRandom)
Select Case m_strPicture
Case CStr(1)
cbSel1.Text = "Americas Best Friend"
cbSel2.Text = "Bill Clinton"
cbSel3.Text = "Tony Blair"

Case CStr(2)
cbSel1.Text = "Thomas Jefferson"
cbSel2.Text = "John Adams"
cbSel3.Text = "Paul Revere"

Case CStr(3)

cbSel1.Text = "Billy Blanks"
cbSel2.Text = "Philip Rivers"
cbSel3.Text = "Drew Brees"

Case CStr(4)

cbSel1.Text = "Cameron Diaz"
cbSel2.Text = "Courtney Love"
cbSel3.Text = "Super Hot Chick"

Case CStr(5)

cbSel1.Text = "Joe Schmo"
cbSel2.Text = "Tony Hamilton"
cbSel3.Text = "Will Ferrell"

Case CStr(6)

cbSel1.Text = "Aliens IV"
cbSel2.Text = "Burn Victim"
cbSel3.Text = "Michael Jackson"

Case CStr(7)

cbSel1.Text = "Jerome 'No means Yes' Jackson"
cbSel2.Text = "Kenyon 'I'll take it if I want it' King"
cbSel3.Text = "Kobe Bryant"

Case CStr(8)
cbSel1.Text = "John Kennedy III"
cbSel2.Text = "John Edwards"
cbSel3.Text = "King Arthur"

Case CStr(9)
cbSel1.Text = "Jose Offerman"
cbSel2.Text = "Sammy Sosa"
cbSel3.Text = "Juan Gonzalez"

Case CStr(10)

cbSel1.Text = "Superman"
cbSel2.Text = "Batman"
cbSel3.Text = "Spiderman"

Case CStr(11)

cbSel1.Text = "The Antichrist"
cbSel2.Text = "Joe 'Weapons of Mass Destruction' Smith"
cbSel3.Text = "George Bush"

Case CStr(12)

cbSel1.Text = "Jenny McCarthy"
cbSel2.Text = "Miss USA 2004"
cbSel3.Text = "Pamela Anderson"

Case CStr(13)

cbSel1.Text = "Cindy Crawford"
cbSel2.Text = "Laura Croft"
cbSel3.Text = "Angelina Jolie"

Case CStr(14)

cbSel1.Text = "Nicole Kidman"
cbSel2.Text = "Jenny Jones"
cbSel3.Text = "Sarah Gallagher"

Case Else

lblFeedback.Text = "System Error, Please blow up computer"

End Select

'get images pathname
Dim strPath As String = BuildPathName()
picImage.Image = Image.FromFile(strPath)
End Sub
Sub Clear()
lblFeedback.Text = "Wrong Awnser"
MessageBox.Show("Wrong Answer!!! Try Again", "Wrong Answer", _
MessageBoxButtons.OK, MessageBoxIcon.Warning)
DisplayImage()
btnNext.Enabled = False
lblFeedback.Text = ""
btnSubmit.Enabled = True
cbSel1.Checked = False
cbSel2.Checked = False
cbSel3.Checked = False
m_intCounter += 1
If m_intCounter >= 7 Then
MessageBox.Show(" Game Over!!! Only 7 photos are shown per
game", "Game Over", MessageBoxButtons.OK, _
MessageBoxIcon.Exclamation)

lblFeedback.Text = "Game Over!"
btnNext.Enabled = False
btnSubmit.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
lblScore.Text = "000"

End If
End Sub


'''''===== Clicking the Submit Button ===''''''''
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnSubmit.Click

If (cbSel1.Checked = False And cbSel2.Checked = False And
cbSel3.Checked = False) Then
MessageBox.Show("You must select an answer!!!", "Pick an
Answer", _
MessageBoxButtons.OK, MessageBoxIcon.Warning)
Exit Sub
End If
''''''===== Check the Awnser Selected and respond then adjust
score===='''''

Select Case m_strPicture
Case CStr(1)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Bill Clinton"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(2)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Thomas Jefferson"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(3)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Philip Rivers"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(4)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Cameron Diaz"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(5)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Will Ferrell"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If
Case CStr(6)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Michael Jackson"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub

End If

Case CStr(7)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Kobe Bryant"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(8)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "John Edwards"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(9)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Sammy Sosa"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(10)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Spiderman"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(11)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "George Bush"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(12)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Miss USA 2004"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(13)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Angelina Jolie"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(14)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Nicole Kidman"
m_Score += 20
lblScore.Text = CStr(m_Score)

Else : Clear()
Exit Sub
End If

'''' if wrong answer, let them know
Case Else
MessageBox.Show("Wrong Answer, Try Another One", _
"Wrong Answer", MessageBoxButtons.OK)

lblFeedback.Text = "Wrong Awnser!!!"

'display another image
DisplayImage()

End Select
'check if 7 or more pictures have been displayed if not keep
rolling
If m_intCounter >= 7 Then

If lblScore.Text = "100" Then
Exit Sub
End If

MessageBox.Show(" Game Over!!! Only 7 photos are shown per
game", "Game Over", MessageBoxButtons.OK, _
MessageBoxIcon.Exclamation)

lblFeedback.Text = "Game Over!"
btnNext.Enabled = False
btnSubmit.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
m_intCounter = 0
m_Score = 0
Else
btnSubmit.Enabled = False
btnNext.Enabled = True
End If
cbSel1.Checked = False
cbSel2.Checked = False
cbSel3.Checked = False

End Sub

Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnNext.Click
DisplayImage()
cbSel1.Checked = False
cbSel2.Checked = False
cbSel3.Checked = False
lblAwn.Text = ""
lblFeedback.Text = ""
m_intCounter += 1
btnSubmit.Enabled = True
btnNext.Enabled = False

End Sub

''''===== Its a new Game, make the new game button visible and
'clean up text boxes and re-set score======''''

Private Sub btnNewGame_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnNewGame.Click
lblScore.Text = "000"
lblFeedback.Text = ""
DisplayImage()
btnSubmit.Enabled = True
btnNewGame.Visible = False
btnNext.Enabled = False
btnNext.Visible = True
m_intCounter = 0
m_Score = 0
End Sub

'''''====If the score is =to or greater than 100 game is over===''''

Private Sub lblScore_TextChanged(ByVal sender As Object, ByVal e As
System.EventArgs) Handles lblScore.TextChanged
If m_Score = 100 Then
lblFeedback.Text = "Game Over,You Win!!!"

m_Score = 0
m_intCounter = 0
lblScore.Text = "000"
btnNext.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
btnNext.Visible = False
btnSubmit.Enabled = False

Exit Sub
End If
End Sub

End Class ' TheNameGame
Mike_Mac

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #1
3 928
''''''Heres the part that was cut off
If m_intCounter >= 7 Then
MessageBox.Show(" Game Over!!! Only 7 photos are shown per
game", "Game Over", MessageBoxButtons.OK, _
MessageBoxIcon.Exclamation)

lblFeedback.Text = "Game Over!"
btnNext.Enabled = False
btnSubmit.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
lblScore.Text = "000"

End If
End Sub


'''''===== Clicking the Submit Button ===''''''''
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnSubmit.Click

If (cbSel1.Checked = False And cbSel2.Checked = False And
cbSel3.Checked = False) Then
MessageBox.Show("You must select an answer!!!", "Pick an
Answer", _
MessageBoxButtons.OK, MessageBoxIcon.Warning)
Exit Sub
End If
''''''===== Check the Awnser Selected and respond then adjust
score===='''''

Select Case m_strPicture
Case CStr(1)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Bill Clinton"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(2)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Thomas Jefferson"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(3)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Philip Rivers"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(4)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Cameron Diaz"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(5)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Will Ferrell"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If
Case CStr(6)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Michael Jackson"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub

End If

Case CStr(7)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Kobe Bryant"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(8)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "John Edwards"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(9)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Sammy Sosa"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(10)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Spiderman"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(11)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "George Bush"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(12)
If cbSel2.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Miss USA 2004"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(13)
If cbSel3.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Angelina Jolie"
m_Score += 20
lblScore.Text = CStr(m_Score)
Else : Clear()
Exit Sub
End If

Case CStr(14)
If cbSel1.Checked = True Then
lblFeedback.Text = "You Are Correct!!!"
lblAwn.Text = "Nicole Kidman"
m_Score += 20
lblScore.Text = CStr(m_Score)

Else : Clear()
Exit Sub
End If

'''' if wrong answer, let them know
Case Else
MessageBox.Show("Wrong Answer, Try Another One", _
"Wrong Answer", MessageBoxButtons.OK)

lblFeedback.Text = "Wrong Awnser!!!"

'display another image
DisplayImage()

End Select
'check if 7 or more pictures have been displayed if not keep
rolling
If m_intCounter >= 7 Then

If lblScore.Text = "100" Then
Exit Sub
End If

MessageBox.Show(" Game Over!!! Only 7 photos are shown per
game", "Game Over", MessageBoxButtons.OK, _
MessageBoxIcon.Exclamation)

lblFeedback.Text = "Game Over!"
btnNext.Enabled = False
btnSubmit.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
m_intCounter = 0
m_Score = 0
Else
btnSubmit.Enabled = False
btnNext.Enabled = True
End If
cbSel1.Checked = False
cbSel2.Checked = False
cbSel3.Checked = False

End Sub

Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnNext.Click
DisplayImage()
cbSel1.Checked = False
cbSel2.Checked = False
cbSel3.Checked = False
lblAwn.Text = ""
lblFeedback.Text = ""
m_intCounter += 1
btnSubmit.Enabled = True
btnNext.Enabled = False

End Sub

''''===== Its a new Game, make the new game button visible and
'clean up text boxes and re-set score======''''

Private Sub btnNewGame_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnNewGame.Click
lblScore.Text = "000"
lblFeedback.Text = ""
DisplayImage()
btnSubmit.Enabled = True
btnNewGame.Visible = False
btnNext.Enabled = False
btnNext.Visible = True
m_intCounter = 0
m_Score = 0
End Sub

'''''====If the score is =to or greater than 100 game is over===''''

Private Sub lblScore_TextChanged(ByVal sender As Object, ByVal e As
System.EventArgs) Handles lblScore.TextChanged
If m_Score = 100 Then
lblFeedback.Text = "Game Over,You Win!!!"

m_Score = 0
m_intCounter = 0
lblScore.Text = "000"
btnNext.Enabled = False
btnNewGame.Visible = True
btnNewGame.Enabled = True
btnNext.Visible = False
btnSubmit.Enabled = False

Exit Sub
End If
End Sub

End Class ' TheNameGame

Mike_Mac

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 20 '05 #2
Hi Michael,

You made a nice message, however checking your whole program is only done by
the persons who are really interested in your problem.

Try to make a piece from the part where it goes wrong. Or a sample with only
2 pictures by instance.

Cor
Nov 20 '05 #3
> points. OK that out of the way here is my problem. When the user has
80 points and 6 pictures have been shown and you click the submit
button and get it right then the game hangs. It is as if it is thinking
"What do I do, the user has 100 points so he wins but he has been shown


Have you stepped through the code with the debugger to see what execution
path it takes when you submit the last answer?

--
Chris

dunawayc[AT]sbcglobal_lunchmeat_[DOT]net

To send me an E-mail, remove the "[", "]", underscores ,lunchmeat, and
replace certain words in my E-Mail address.
Nov 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: aswinee | last post by:
I am running Microsoft SQL Server 2000 - 8.00.760 Enterprise Edition on Windows 2003 Enterprise Edition (NT 5.2 Build 3790:) I have 4CPU and 8GB of RAM. I have AWE enabled, /pae /3gb switch is on...
17
by: Dr NoName | last post by:
Help! I have a table that multiple processes must be able to write to concurrently. However, it for some reason gets locked in exclusive mode. I narrowed it down to one SQL statement + some...
6
by: John Carroll | last post by:
Is there a SQL query that can be run against a database that will give me all the details on any locks that are in place at the given time? I am interested in find the lock type and owner. Thank...
0
by: Bruce Pullen | last post by:
DB2 v7.2 (FP7 - DB2 v7.1.0.68) on AIX 5.2.0.0. We're seeing unexpected single row (then commit) insert locking behaviour. We're seeing Applications that already hold row-level W locks in...
4
by: Alex Callea | last post by:
Hi there, We have a web application handling thousands of requests per seconds reading sql server data which is heavily updated. We are generally experiencing no performance problems. On some...
22
by: RayPower | last post by:
I'm having problem with using DAO recordset to append record into a table and subsequent code to update other tables in a transaction. The MDB is Access 2000 with the latest service pack of JET 4....
1
by: shenanwei | last post by:
I have db2 v8.2.5 on AIX V5.3 with all the switches on Buffer pool (DFT_MON_BUFPOOL) = ON Lock (DFT_MON_LOCK) = ON Sort ...
7
by: praveen | last post by:
Hi When does DB2 go for an IS (Intent Share) lock? IS mode is defined as a mode in which "The lock owner can read data in the locked table, but cannot update this data. Other applications can...
82
by: Bill David | last post by:
SUBJECT: How to make this program more efficient? In my program, a thread will check update from server periodically and generate a stl::map for other part of this program to read data from....
1
by: =?Utf-8?B?Um9nZWxpbw==?= | last post by:
hey, I run long queries. like once that take my program about 3 minutes straight to complete.. like I grab over 100,000 rows, and loop throguh each row to update a certain value. etc.. the...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.