I want to make a page that performs some simple calculations and displays the answers using VBScript and Frontpage 2000. I am familar with forms in frontpage using ASP and have VB exeperience however I have NO Idea how to read and write to text boxes using VB Script at all.
Any information on...
I only dabble in access but here is what I have done. I have a website domain that costs me about $10.00 per month. The domain host allows unlimited access database connections and frontpage extensions. Throug active server pages and frontpage forms I can view records, add new records and edit...
Try This.
Private Declare Function apiGetUserName Lib "advapi32.dll" Alias _
"GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
Function fOSUserName() As String
' Returns the network login name
Dim lngLen As Long, lngX As Long
Dim strUserName As String...
Set the default value of the field in the table to now() or the before update or form current event procedure of the form can set the value in the text box.
Private Sub Form_BeforeUpdate(Cancel As Integer)
if IsNull(the_field) Then
the_field = Now()
End If
Many other methods can...
I took the 97 course in Memphis. It was my 1st + only formal instruction related to MS Access.
It's amazing what you can learn for free.
I'm glad I took the course but I'm also glad I didn't have to pay for it.
The materials were very good. The instructor knowledge regarding questions not...
The "Isloaded" function above is as follows.
Function IsLoaded(ByVal strFormName As String) As Integer
' returns True if the specified form is open in Form view or Datasheet view.
Const conObjStateClosed = 0
Const conDesignView = 0
If...
Try The below in a mocule.
Cortesy of frmsmp00.mdb
Function IsLoaded(ByVal strFormName As String) As Integer
' returns True if the specified form is open in Form view or Datasheet view.
Const conObjStateClosed = 0
Const conDesignView = 0
If SysCmd(acSysCmdGetObjectState...
You can make forms and reports "Look" any way you want. If the main purpose is the form and not the data, maybe it's best to stay with excel.
Access can use excel data if its properly formatted.
The form for entering the data can look one way and the printed output another.
Excel...
in the "Particular Field" after update event, use code similar to below.
If not isnull(particular field) then
comboboxcontrol="closed"
else
comboboxcontrol="Open"
end if
Some better suggestions may come up from others but this may get you started.
Good day
Is the switchboarditems table in the front end or back end database? If it is in the back end, import it to the front end and rename the linked table.
Maybe something is causing access to freeze. You could place some code in the form to see if the code is running after the workstation is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.