Welcome, Guest. Register Now!
   
Mark Forums Read Mark Forums Read Mark Forums Read


Reply
 
LinkBack Thread Tools Display Modes
  #21 (permalink)  
Old 12-12-2007, 11:00 PM
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

The "standard" way of doing that is to use a separate table for the keywords, in which each inventory item/keyword combination is a record, and to use a subform for the keywords instead of a multi-select list box.
Follow the below instructions:
General recommendations:
- Turn off "Track Name AutoCorrect Info" in the General tab of Tools | Options... in each database you create.
- Set the Subdatasheet Name property of all tables to [None].
- Avoid creating duplicate indexes; Courses, for example, had two indexes on CourseID.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #22 (permalink)  
Old 12-12-2007, 11:01 PM
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

Sometimes it's possible to delete the problem control by trying to delete it repeatedly, but there's no guarantee you will succeed. Rebuilding the form is probably easiest. You could copy all controls except the WordArt object, and all VBA code (if any) to a new form.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #23 (permalink)  
Old 12-12-2007, 11:10 PM
Junior Member
 
Join Date: Oct 2007
Posts: 7
iTrader: (0)
Hippo86 is on a distinguished road
Thumbs up

Thanks Tony for the advice, I did as you said by rebuilding the form.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #24 (permalink)  
Old 12-13-2007, 05:47 AM
Junior Member
 
Join Date: Oct 2007
Posts: 6
iTrader: (0)
NewBridge is on a distinguished road
Default

Thank you Tony.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #25 (permalink)  
Old 12-15-2007, 08:07 PM
Junior Member
 
Join Date: Oct 2007
Posts: 4
iTrader: (0)
Ginger is on a distinguished road
Default Need help in converting integer value to letter value for grades

I am trying to do my grades in Access 2000 and have hit a snag - I've figured out how to calculate the grades (with a linked Excel worksheet) using a 0-4 point scale, but want the grades to be displayed as a A-F value.

I did this in Excel with a formula (example):
=IF(COUNT(Y2)=0,"",IF(Y2>3.4,"A",IF(Y2>2.7,"B",IF(Y2>1.7,"C",IF(Y2>0.9,"D","F")))))
which took care of not counting blank (grade) assignments and making sure the final average only calculated graded items.

I am trying to accomplish the same thing in Access, focusing primarily on the IIf function. Maybe a macro? I'm trying to learn! I've tried several IIf variants, but the best one gave a circular reference error.

Basically, all I want is if the value is Null, the field in the report will be blank. If the value is 0, and "F" is displayed, if it is 1, a "D" is displayed, if it is a 2, a "C" is displayed, if it is 3, a "B" is displayed, and if it is 4, an "A" is displayed. The report is from a table with grades recorded as 0,1,2,3,4, or blank.

Any ideas?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #26 (permalink)  
Old 12-17-2007, 06:42 AM
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

Try this,
=IIf([intGrade]=0,"F",IIf([intGrade]=1,"D",IIf([intGrade]=2,"C",IIf([intGrade]=3,"B",IIf([intGrade]=4,"A","")))))
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #27 (permalink)  
Old 12-18-2007, 04:17 AM
Junior Member
 
Join Date: Oct 2007
Posts: 5
iTrader: (0)
Imagineer is on a distinguished road
Default Startup MenuBar is missing?

I have MS access contact database and I was playing around with the Startup MenuBar Property and defult menu and now my tool bar ans menu is gone, only show File , Window Help , and startup is gone how do i undo this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #28 (permalink)  
Old 12-18-2007, 04:27 AM
Junior Member
 
Join Date: Oct 2007
Posts: 5
iTrader: (0)
DLong is on a distinguished road
Default Is it possible to refreshing a report on a SQL server?

I would like to know if it is possible to refresh a MS Access report which was built from a table on SQL Server via ODBC automaticaly when I open it ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #29 (permalink)  
Old 12-19-2007, 09:28 PM
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

Hold down shift key while you open the db. then go to TOOLS > STARTUP ... to reset it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #30 (permalink)  
Old 12-19-2007, 09:30 PM
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

The record source behind a report should show up-to-date data when you open it. It is never refreshed unless you close/re-open the report. If the report is based on a temp table or a 'dummy' table which is loaded via some stored procedure, that's a different story and of course that proc. has to be rerun--but typically this would be part of the code behind your 'Open Report' button on whatever form you use.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
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

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



All times are GMT -6. The time now is 11:02 PM.