473,405 Members | 2,444 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,405 software developers and data experts.

Need help

47
hi
I am very very new to working in access and need some help. I have a table where a specific data is stored and i have a form where i added a text box. I want to check if the data entered in the text box is the same as the one in the table. Is there a specific code i need to use. Sorry if this seems pretty silly, but ive just started working.
Thanks
Mar 13 '08 #1
6 1400
MindBender77
234 100+
hi
I am very very new to working in access and need some help. I have a table where a specific data is stored and i have a form where i added a text box. I want to check if the data entered in the text box is the same as the one in the table. Is there a specific code i need to use. Sorry if this seems pretty silly, but ive just started working.
Thanks
On the OnExit event of the textbox, you could use "DLookup" to find the record in the table. Example:
Expand|Select|Wrap|Line Numbers
  1. Dim data
  2.  
  3. data = dlookup("[Field Name]","YourTableName", "[Field Name] = Textbox")
  4.  
  5. If isnull(data) = true or data = "" then
  6. 'do something here
  7. Else
  8. Docmd.cancelevent
  9. End If
  10.  
Hope this Helps,
Bender
Mar 13 '08 #2
neosam
47
On the OnExit event of the textbox, you could use "DLookup" to find the record in the table. Example:
Expand|Select|Wrap|Line Numbers
  1. Dim data
  2.  
  3. data = dlookup("[Field Name]","YourTableName", "[Field Name] = Textbox")
  4.  
  5. If isnull(data) = true or data = "" then
  6. 'do something here
  7. Else
  8. Docmd.cancelevent
  9. End If
  10.  
Hope this Helps,
Bender
Just let me know if the code i have written is right....
"New_password" is the field name
"Password" is the table name
"PswdTBox" is the name of the text box
Expand|Select|Wrap|Line Numbers
  1. If Data = DLookup("New_Password", "Password", "New_Password = PswdTBox") Then
  2.         DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
  3.         DoCmd.Close acForm, Me.Name
  4.     Else
  5.         MsgBox "Wrong Password! Sorry."
  6.     End If
Thanks
Mar 13 '08 #3
MindBender77
234 100+
Just let me know if the code i have written is right....
"New_password" is the field name
"Password" is the table name
"PswdTBox" is the name of the text box

If Data = DLookup("New_Password", "Password", "New_Password = PswdTBox") Then
DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
DoCmd.Close acForm, Me.Name
Else
MsgBox "Wrong Password! Sorry."
End If


Thanks
Try:
Expand|Select|Wrap|Line Numbers
  1. Dim data 'This has to stay.
  2. data = DLookup("[New_Password]", "Password", "[New_Password] = PswdTBox") 
  3.  
  4. if isnull(data) = true or data = "" then
  5.          DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
  6.         DoCmd.Close acForm, Me.Name 
  7. else
  8.          MsgBox "Wrong Password! Sorry."
  9.     End If
  10.  
Bender
Mar 13 '08 #4
neosam
47
Try:
Expand|Select|Wrap|Line Numbers
  1. Dim data 'This has to stay.
  2. data = DLookup("[New_Password]", "Password", "[New_Password] = PswdTBox") 
  3.  
  4. if isnull(data) = true or data = "" then
  5.          DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
  6.         DoCmd.Close acForm, Me.Name 
  7. else
  8.          MsgBox "Wrong Password! Sorry."
  9.     End If
  10.  
Bender

Well it doesnt work ..... it directly jumps to the else command.... is there something that i have to change in the table. The table has only the new password.... no other data is there in the table.... i'm pretty stumped...
Mar 13 '08 #5
neosam
47
Try:
Expand|Select|Wrap|Line Numbers
  1. Dim data 'This has to stay.
  2. data = DLookup("[New_Password]", "Password", "[New_Password] = PswdTBox") 
  3.  
  4. if isnull(data) = true or data = "" then
  5.          DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
  6.         DoCmd.Close acForm, Me.Name 
  7. else
  8.          MsgBox "Wrong Password! Sorry."
  9.     End If
  10.  
Bender

Hey this actually works..... if i change the code to
"If IsNull(data) = False Or data = "" Then"
Thanks a lot dude... probably couldnt have done this without ur help...
Mar 13 '08 #6
NeoPa
32,556 Expert Mod 16PB
Try :
Expand|Select|Wrap|Line Numbers
  1. If IsNull(DLookup("[New_Password]", _
  2.                   "[Password]", _
  3.                   "[New_Password]='" & Me.PswdTBox & "'")) Then
  4.   MsgBox "Wrong Password! Sorry."
  5. Else
  6.   DoCmd.OpenForm "Homepage", acNormal, , , acFormEdit, acWindowNormal
  7.   DoCmd.Close acForm, Me.Name
  8. End If
Make sure when you're testing that you check it handles both successful AND unsuccessful password entry.
Mar 15 '08 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.