| Thread | Last Post | Replies |
|
| Referencing a Subform Error | 29 May 2008 09:46 GMT | 1 |
I am very confused - am working with Access 2007. Yesterday - I created form with 2 levels of nested subform - and referenced the controls on both from the top level, and it worked fine. Code extract as follows:
|
| exit function | 29 May 2008 08:06 GMT | 1 |
I have a function checking two controls Saldo and Stock. Sometimes one of the two controls may be empty, having no figures in it.In this case I want to give the command to exit the function.For example, when the control stock is empty, I get the following message :
|
| expecting one parameter | 29 May 2008 07:45 GMT | 1 |
I have the following code: strsql1 = "select * from los_service where (los_service.los_service_date = #" & Forms!frm_administration_menu!rpt_date & _ "# and los_service.service = 'PRAG') or
|
| count of group with out groupby | 28 May 2008 22:57 GMT | 2 |
In a report I am trying to get a count of each group in a field, without using groupby in a query builder. I trying to creat an experession in control source property of a control in the report. Using the count function, I get the total count for that field. I need to be able to ...
|
| Displaying data in a subform | 28 May 2008 22:51 GMT | 4 |
I don't have Flexgrid nor Datagrid ocx. What I want to accomplish is this: Having 3 buttons, one named Concluded and the others I don't need to explain. When I click the Concluded button, it passes 4 arguments thru a query into a recordset:
|
| Detecting case in Access 2000 | 28 May 2008 22:09 GMT | 1 |
What code can I use to detect whether the first 3 letters of a string are upper or lower case?
 Signature Thank you,
|
| Use Form and VBA to Send Query Results to Excel | 28 May 2008 22:01 GMT | 2 |
I thought a simple sub, such as the following, which I found on this DG, would allow me to copy/paste the results of a Query to an Excel SS: Private Sub Command1_Click() Dim stDocName As String
|
| Using a function to print | 28 May 2008 21:54 GMT | 13 |
I'm trying to make a function work found on-line. My module looks like this: Option Compare Database Public Const SW_Hide = 0 Public Const SW_Minimize = 6
|
| Insert name of the caption into the message box | 28 May 2008 21:28 GMT | 1 |
How could I parse the name of the caption to the message box ? For example, if the caption of the control is Paris, I would like to insert the caption in the message box and the message there to read “There are problems with the warehouse in Paris”
|
| 80080005 Error in Visual Basic 2008 | 28 May 2008 20:26 GMT | 1 |
I tried posting this in the MSDN discussion groups, but received no response, so I thought I'd try posting it here. I realize that this is, perhaps, more of a VB question than an Access question, but I thought someone here might have some experience with this.
|
| Spell Check w/o Word loaded doesn't seem to work | 28 May 2008 19:28 GMT | 8 |
I have a user that does not have any Office products loaded. I install Access Runtime 2003 when my software is installed and use the following code snipet to check spelling, however I am able to enter misspelled word and the code does not catch it. I have tested on machine that ...
|
| Cannot sort on calculated field in Query or Report | 28 May 2008 19:20 GMT | 2 |
I have a field, calculated in a query, and I want to write a report to show "Sell Thru Pct", Descending. Query runs fine, UNTIL I put the sort in -then I get "Expression is typed incorrectly or too complex....Simplify....."
|
| why isn't the parameter seen? | 28 May 2008 18:38 GMT | 10 |
I have a program in VBA in which I tried to run an SQL for which two parameters (text) are entered by calling for them from the 'criteria' field. I also want to use those same parameters as the front part of the name of a file to save. However, no matter what I do (Public, Dim, ...
|
| Append Query/ Custom PK | 28 May 2008 18:07 GMT | 3 |
I have created an Append Query (qryAppendTests) that looks like the following: INSERT INTO tblQueue ( REQUEST_NO, REQUESTOR, DUE_DATE, TEST_TYPE, CYCLE_NO, TEST_ID ) SELECT tblTest.REQUEST_NO, tblRequest.EMP_ID, tblRequest.DUE_DATE,
|
| Creating loop to run functions for each variable in database | 28 May 2008 16:55 GMT | 4 |
I have a simple flat file database of a questionaire of about 130 questions/variablea. I need to a report with the frequencies, mean, median, mode, min, max, range, standard deviation etc. I thought it would be easier if I could code VBA to create functions for each of the above ...
|