Search results

  1. F

    A CanGrow question

    Hi All. I've built a reportcard report. On this report are five text controls: the subject area, and the grades for the four quarters for that subject area. Because of the length of some of the subject areas, I want to make the subject area control CanGrow. However, when the control grows in...
  2. F

    Unable to open exclusively

    I have a database that I have been maintaining for some time. Recently I decided to save it in SourceSafe. At the same time that I moved it to SourceSafe, I also switched to a new computer. When I open the database, and try to make changes to a form, Access tells me that I do not have the...
  3. F

    Accessing a SQL Server database from DAO

    Hi all. I've got a slight problem that I hope someone out there can help me with. The overall task: I have a SQL Server database established, and I need to be able to create a Microsoft Access 2000 mdb filled with a subset of the SQL Server data. This process needs to be executed from an asp...
  4. F

    Timeout Expired

    Hi all. I have a small problem. I am writing VB code to manipulate a SQL database. I need to open a recordset to a table that holds hundreds of thousands of records, if not millions. At this point I don't need to access the data in the table, but I do need to be able to append to this table...
  5. F

    Disable Arrow Keys?

    I made a related post yesturday about Subform Navigation... I want to control the way a user navigates around a continuous forms subform. I would like the interface to act in much the same way that excel does. I would like the up and down arrow keys to navagate up and down a record, but stay...
  6. F

    Subform Navigation

    Subform Navigation >Bump< Hi All. I have a data entry subform that is in continuous subform view. I would like the user to be able to use the standard navagation buttons. (Arrow Keys, Enter Keys, Tab, And Page Up and Down) What is the best way to do this? Here's What my form looks like...
  7. F

    Referencing Forms

    Easy Question, I hope. refrencing forms I know in VBA that you can refrence a form like so: public sub test() ....Dim frm as Form ....Dim ctl as Control ....set frm = forms("frmParent") ....for each ctl in frm.Controls ........msgbox(ctl.Name) ....next ctl end sub My question, is how do I...
  8. F

    dynamic rowsource on continuous subform

    I have a form with a continuous subform on it. This subform contains the subject areas of a subject. On this continuous subform, is a dropdown which holds the grade values that are available for the current subject area. Each subject are can have its own set of grade values. The problem is...
Back
Top Bottom