Viewing 6 posts - 1 through 6 (of 6 total)
With username u can find out the department. In table where departments are stored you add a field Swithboard where you put in the formname per department. On the first...
August 18, 2006 at 6:52 am
I normally use two id colomns, guid and int
with select NewId() i place a new guid in a varaible and use that one on the insert statement.
than to get the int...
August 18, 2006 at 6:40 am
or use docmd.runsql in vba
August 12, 2006 at 5:43 am
I find it better to use a sql back-end...
Maybe you should try using VBA.
Set cn = CurrentProject.Connection
Dim rst As New ADODB.Recordset
Dim sqlStr, PrevPackSlipID As String
Dim i As...
August 11, 2006 at 10:19 am
Solution:
declare @PackSlipID float, @ProductName varchar(50), @Num integer, @PreviosPackSlipID float
declare rst cursor for
select PackSlipID, ProductName
from WorkTable
order by PackSlipID, ProductName
Set @PreviosPackSlipID = 0
Set @Num = 1
open rst
fetch next...
August 11, 2006 at 8:33 am
What Dick said and with this code in a module you can obtain the userinfo without prompting them each time they open the program (users get tired of that very quikly;-)...
August 11, 2006 at 7:54 am
Viewing 6 posts - 1 through 6 (of 6 total)