14a66 go to a field in a form
Sign Up |  Live StatsLive Stats    Articles 37,467| Comments 178,613| Members 19,494, Newest Kartarsingh| Online 365
Home Contact
 (Forgotten?): 
    10 years of Excellence
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags

go to a field in a form

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 0 USD (0%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
A Form As a Field? =\ jillian.calderon@gmail.com Information Technology 1 28-Jul-2006 08:42 AM
Display a field in a form that cannot be edited from the form. AdamCPTD Information Technology 2 28-Jul-2006 08:38 AM
Form same field Daniell Information Technology 2 28-Jul-2006 08:33 AM
Adding a Field to a Form ktie2332 Information Technology 28 28-Jul-2006 08:26 AM
Update Field on a Form Matt W. Information Technology 1 11-Nov-2005 20:09 PM


Tags
field, form
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:17 AM
Izabella's Avatar Izabella
Guest
 
Posts: n/a
   
   
go to a field in a form

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I have vials that are kept in boxes. In the table vials, every vial is a
record. for every vial there is a field with the number of the box, another
for the column(represented by letters) and another for the row(1, 2, 3) and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/10953-go-to-a-field-in-form.html
the key is the vialID. I want to have a table that represents the boxes. Each
record will be a box, and the fileds will be the positions in the box: a1,
a2, a3, a4, b1, b2, b3. since each box has 10 columns and 10 rows, every
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10953
record has 100 fields. If vial 223 is in box 2, column a, row 2, I want to go
to the form boxes, record number 2, field a2 and write there 223. I managed
to use the goto command in a macro to go to the field a2 and the filed get
focus. but I don't know how to write 223 automatically (so the user don't
have to write it. I would appreciate some help, without the need to write in
visual basic, since I don't know it. Many thanks


Do you agree or disagree with the writer above? Why not share your immediate thoughts with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:17 AM
Wayne-I-M's Avatar Wayne-I-M
Guest
 
Posts: n/a
   
   
RE: go to a field in a form

You could use the "setvalue" macro - place it on the line "below" the GoTo
line on the same macro

Or - creat a form based on your Vial Table and insert a "find Combo"
[FinVial]. Set the small bit of code to Go To the Vial you select in the
combo drop down and then set the text in the [VialName] to whatever you want.
Set the code to run on the AfterUpdate option (and place me.FindVial = "" )
to clear the combo ready for the next search.

Try something like this - "I have not had time to check" this but if you
want to go ahead with the form let me know and I will look at it.

Private Sub FindVial_AfterUpdate()
On Error GoTo VialName_AfterUpdate_Err

DoCmd.GoToControl "VialName"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10953
Forms!frmFormName!VialName = "WhatEver"

CDStreet_AfterUpdate_Exit:
Exit Sub

End Sub

--
Wayne
Manchester, England.



"Izabella" wrote:

> I have vials that are kept in boxes. In the table vials, every vial is a
> record. for every vial there is a field with the number of the box, another
> for the column(represented by letters) and another for the row(1, 2, 3) and
> the key is the vialID. I want to have a table that represents the boxes. Each
> record will be a box, and the fileds will be the positions in the box: a1,
> a2, a3, a4, b1, b2, b3. since each box has 10 columns and 10 rows, every
> record has 100 fields. If vial 223 is in box 2, column a, row 2, I want to go
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10953
> to the form boxes, record number 2, field a2 and write there 223. I managed
> to use the goto command in a macro to go to the field a2 and the filed get
> focus. but I don't know how to write 223 automatically (so the user don't
> have to write it. I would appreciate some help, without the need to write in
> visual basic, since I don't know it. Many thanks

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:17 AM
John Vinson's Avatar John Vinson
Guest
 
Posts: n/a
   
   
Re: go to a field in a form

  Donate Today!  
On Wed, 7 Jun 2006 00:30:01 -0700, Izabella
wrote:

>I have vials that are kept in boxes. In the table vials, every vial is a
>record. for every vial there is a field with the number of the box, another
>for the column(represented by letters) and another for the row(1, 2, 3) and
>the key is the vialID. I want to have a table that represents the boxes. Each
>record will be a box, and the fileds will be the positions in the box: a1,
>a2, a3, a4, b1, b2, b3. since each box has 10 columns and 10 rows, every
>record has 100 fields. If vial 223 is in box 2, column a, row 2, I want to go
>to the form boxes, record number 2, field a2 and write there 223. I managed
>to use the goto command in a macro to go to the field a2 and the filed get
>focus. but I don't know how to write 223 automatically (so the user don't
>have to write it. I would appreciate some help, without the need to write in
>visual basic, since I don't know it. Many thanks


I'd REALLY suggest that you reconsider this table design. Storing data
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10953
- the vial position - in a fieldname is simply BAD DESIGN. Suppose you
go to new boxes with 144 positions? What do you do - redesign your
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10953
table, all your queries, all your forms?

I'd suggest two separate fields for the row and the column. Three
fields together - BoxID, RowNum, ColNum - will together uniquely find
a vial. Each vial should be in its own record in a table related
one-to-many to the box table.

John W. Vinson[MVP]
Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
What Really Happened on...
Today 05:36 AM
10 Replies, 128 Views
English Sri Guru Granth Sahib Ji Translations
By sikh15
Today 04:47 AM
0 Replies, 6 Views
Free Online Gurbani...
Today 03:56 AM
13 Replies, 4,298 Views
English Sri Guru Granth...
Today 03:51 AM
5 Replies, 135 Views
Edward Snowden: the...
Today 03:34 AM
3 Replies, 110 Views
Difference in Bowing...
Today 03:31 AM
10 Replies, 221 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 03:23 AM
407 Replies, 9,381 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Yesterday 17:57 PM
255 Replies, 6,016 Views
What Is Difference...
Yesterday 09:18 AM
6 Replies, 174 Views
First There is Water by...
By Ishna
Yesterday 05:03 AM
3 Replies, 189 Views
Cooking Without Alcohol
Yesterday 02:12 AM
12 Replies, 188 Views
Learning from Baba...
Yesterday 01:38 AM
0 Replies, 309 Views
Eckhart Tolle
17-Jun-2013 18:08 PM
2 Replies, 118 Views
Thought of the Moment!
17-Jun-2013 16:35 PM
115 Replies, 6,076 Views
New Quantum Dot...
17-Jun-2013 09:38 AM
0 Replies, 61 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 05:50 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.35383 seconds with 32 queries
0