| Thread | Last Post | Replies |
|
| Picture Property Questions | 25 Sep 2005 21:11 GMT | 3 |
I would like to make pictures that can be used on tab controls and buttons. What size should they? 1"x1" or smaller? What format should they be? (bmp, jpeg?) Where can I save them so they can be selected from the drop down all the time?
|
| How to create a way of shift-clicking in a list to select a range | 25 Sep 2005 20:57 GMT | 1 |
This is a little tip i figured out on how to select a range of items in a listbox by clicking on a start item and pressing shift then clicking on another item and having all the items inbetween select too. (kinda like in windows explorer)
|
| Listbox Lines | 25 Sep 2005 18:46 GMT | 4 |
Anyone know how to kill those lines that divided the columns in a listbox? Thnaks DS
|
| Create a new Excel | 25 Sep 2005 18:05 GMT | 1 |
I have the following codes and I try to add a new worksheet for a new Excel app.: Is there anything wrong with the codes? I could not have the application open and it looks like a very quick flash on the screen and the app.
|
| make textbox text = listbox selection | 25 Sep 2005 05:01 GMT | 8 |
I want to have a selection in a listbox go to a textbox. So far I have... Private Sub lstEmployee_Click() txtAddEmployee.Text = lstEmployees.ListIndex
|
| problem synchronizing a data entry form | 25 Sep 2005 02:14 GMT | 4 |
I am trying to synchronize a data entry form (Me) so that when the data entry form opens, the "StudyID" value from a control on a subform "sfrmEPStudy" of "frmMaster" is placed into the "StudyID" control on the data entry form. The code shown below uses the "on open" event of the ...
|
| Tracking Users via Network Login | 24 Sep 2005 23:16 GMT | 1 |
I placed the following code in my module named FOSUserName. But what do I need to do to get the user name to show on my form after update and save it with the record??
|
| Query Problems | 24 Sep 2005 16:12 GMT | 4 |
I am using the following code to set up a recordset of a query. The query SQL is below. The problem is when I try to set a variable to the value of Field3 an error tells me InvLine is not in the collection. The first two fields,Field1 and Field2 are there. In the locals window ...
|
| Exclude weekends from calculations | 24 Sep 2005 14:42 GMT | 2 |
I am using this code in my text box. I work for an insurance company. The first code determines the number of days when an audit is assigned. The second code is for determining the number of days the audit has been in the office. My question is on both cases I want to exclude ...
|
| Calculate Weekdays Only | 24 Sep 2005 11:55 GMT | 5 |
I have a form with startdate on it. I need to calculate startdate + 3 days the time we are giving everyone to finish an item. But what if the startdate is on Friday? I don't want to factor in the weekends. Does anyone know how to do this??
|
| Invalid Use of Null - After Update | 24 Sep 2005 05:45 GMT | 2 |
I am trying to write a somewhat complex "AfterUpdate" event for a combo box [cboRenewalConditions] that designates the terms of renewal for a given legal agreement. Several date fields are involved:
|
| Problem w/ SWITCH function | 24 Sep 2005 04:18 GMT | 2 |
I have a form with several date fields [EffectiveDate], [InitialTermExp], [CurrentTermExp], and a combo box [cboRenewalConditions] that designates the terms under which the agreement [AgName] referred to in the record renews. I am trying to set up a complex AfterUpdate event so ...
|
| How do you test for a NULL value in a Combo Box? | 24 Sep 2005 00:31 GMT | 3 |
I have a combo box on a form which may sometimes have a null value in it. There is no way around that. It's complicated. Please just take my word for it. Is there a way to test for a null value in it?
|
| Count up every second | 24 Sep 2005 00:08 GMT | 4 |
I am looking for a way to have a counter on my form: 1) Once the user opens the form and presses btnDIAL the counter for the first time the counter starts counting up from 0. 2) even if btnDIAL is pressed again, the counter is no longer affected until
|
| Storing Data | 23 Sep 2005 21:01 GMT | 2 |
I want to permanently store a piece of data in the database that is entered one time when the database is first opened. I know I can do this with a table, but sometimes this gets a little clunky. Is there any other way to store data that changes from the first to the second ...
|