473,385 Members | 1,356 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

command-line style commands

Hi Folk

I have written a module that allows you to type a bunch of commands in the
immediate window, for quick access to information when you are creating VB
code. Here it is, it may be helpful to you (I find it pretty fast and
friendly).... Some of it is specific to my database (I left out many as well
which were too specific), so you will have to rewrite it for yours, but you
may find it useful.... Any questions, please ask. Typing Im (false) in the
immediate window will show all the commands - so you only really have to
remember one.

Cheers

- Nicolaas

Public Sub Im(include_explanation As Boolean)
'explains all the immediate commands in more detail.
''on error GoTo er
Dim MDL As Module
Dim S As String
Dim Itm As Variant
'-
Call AllProcs("010 __________________________ IMMEDIATE WINDOW
COMMANDS", 0)
Call imMLet("0", include_explanation)
xt:
Exit Sub
er:
Resume 0
End Sub
Public Sub imFldNs(Tbln As String)
'lists all the field names for a table
''on error GoTo er
'-
Dim TBL As TableDef
Dim FLD As Field
Dim Dbs As DAO.Database
'-
Set Dbs = CurrentDb
Set TBL = Dbs.TableDefs(Tbln)
For Each FLD In TBL.Fields
Debug.Print FLD.NAME, FLD.type, FLD.Size
Next FLD
xt:
Set Dbs = Nothing
Set TBL = Nothing
Exit Sub
er:
MsgBox ERROR$
Resume xt
End Sub
Public Sub ImSqlE(S As String)
'puts the S string into a temporary query and opens it to show you what it
looks like
''on error GoTo er
'-
'on error Resume Next
DoCmd.DeleteObject acQuery, Q
'on error GoTo er
CurrentDb.CreateQueryDef Q, S
DoCmd.OpenQuery Q, acViewDesign, acEdit
xt:
Exit Sub
er:
MsgBox ERROR$
Resume xt
End Sub

Public Function ImOpenO(ObjN As String, Optional ObjT As Long)
'puts the S string into a temporary query and opens it to show you what it
looks like
'note that you need to swith windows to see the query (you will return to
the immediate window after running this function).
'on error GoTo er
Dim ObjC As Long 'object count
'-
If Nz(ObjT, 0) <> 0 Then
ObjC = 1
Else
ObjC = eCount("[ID]", "[msysobjects]", "[msysobjects]![name]='" & ObjN
& "'")
ObjT = eMin("[type]", "[msysobjects]", "[msysobjects]![name]='" & ObjN
& "'")
End If
Select Case ObjC
Case Is < 1
MsgBox "object does not exist"
Case Is > 1
MsgBox "there is more than one object with this name"
Case 1
Call OpenObject(ObjN, ObjT)
End Select
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function

Public Function ImSTF(FrmN As String, FrmT As Byte)
'standardizes a form - useful if you are building a new form - it adds all
the standard items, etc...
'the form should be closed to run this function
'frmT = 0 ... -EDI
'frmT = 1 ... -LIS
'frmT = 2 ... -SUB
'frmT = 3 .... -X
Dim FRM As Form
Dim Ctl As Control
'-
If IsLoaded(FrmN) = True Then
MsgBox "Please close form first - this is to prevent from overriding
any chances that you may not have saved yet."
End If
DoCmd.CopyObject , "FORM10", acForm, FrmN
Debug.Print "a backup of the form has been made as FORM10"
DoCmd.OpenForm FrmN, acDesign, , , , acHidden
Set FRM = Forms(FrmN)
With FRM
Call ImSTX("Please enter form caption", "caption", FRM)
Call ImSTX("Please enter RecordSource", "RecordSource", FRM)
.Tag = Left(FRM.RecordSource, 5)
.AllowFilters = True
.DefaultView = IIf(FrmT > 1, 1, FrmT)
.ViewsAllowed = 1
.AllowFormView = True
.AllowDatasheetView = False
.AllowPivotTableView = False
.AllowPivotChartView = True
.AllowEditing = False
.AllowEdits = True
.AllowDeletions = True
.AllowAdditions = True
.DataEntry = False
.RecordsetType = IIf(FrmT = 3, 1, 0)
.RecordLocks = 0
.ScrollBars = 3
.RecordSelectors = False
.NavigationButtons = True
.DividingLines = False
.AutoResize = False
.AutoCenter = False
.PopUp = False
.Modal = False
.BorderStyle = 2
.ControlBox = True
.MinButton = False
.MaxButton = True
.MinMaxButtons = 2
.CloseButton = True
.WhatsThisButton = False
.Width = TW(20)
.PictureTiling = False
.Cycle = 0
.GridX = 4
.GridY = 4
.LayoutForPrint = False
.FastLaserPrinting = True
.FetchDefaults = True
End With
'- adjust controls
For Each Ctl In FRM.Controls
Call ImSTX("are you happy with the name of the control: " &
Format(Ctl.NAME, ">"), "name", Ctl)
Select Case Ctl.NAME
Case "ID", "IDR", "IDL"
Ctl.Visible = False
Ctl.Width = TW(0.25)
Ctl.BackColor = 13408767
Ctl.BackStyle = 1
GoTo ctl_looper
Case Else
'do nothing
End Select
Select Case Ctl.ControlType
Case acListBox, acComboBox
With Ctl
.DecimalPlaces = 255 '2
.RowSourceType = "Table/Query" '8
Call ImSTX("What should be the controlsource for control: "
& Format(Ctl.NAME, ">"), "controlsource", Ctl)
Call ImSTX("What is the status bar text for control: " &
Format(Ctl.NAME, ">"), "statusbartext", Ctl)
.ControlTipText = .StatusBarText
.ColumnCount = 2 '2
.ColumnHeads = False '11
.ColumnWidths = "0;" & TW(12)
.BoundColumn = 1 '3
.ListRows = 12 '2
.ListWidth = TW(12)
.LimitToList = True '11
.AutoExpand = True '11
.IMEHold = False '11
.IMEMode = 0 '2
.IMESentenceMode = 3 '2
.Visible = True '11
.DisplayWhen = 0 '2
.Enabled = True '11
.Locked = False '11
.AllowAutoCorrect = True '11
.TabStop = True '11
.Height = 284 '2
.BackStyle = 0 '2
.BackColor = 52479 '3
.SpecialEffect = 0 '2
.BorderStyle = 1 '2
.OldBorderStyle = 1 '2
.BorderColor = 52479 '3
.BorderWidth = 0 '2
.BorderLineStyle = 0 '2
.ForeColor = 0 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 1 '2
.FontBold = 0 '2
.HelpContextId = 0 '3
.ColumnWidth = -1 '2
.ColumnOrder = 0 '2
.ColumnHidden = False '11
.Section = 0 '2
End With
Case acTextBox
With Ctl
Call ImSTX("What should be the controlsource for control " &
Format(Ctl.NAME, ">"), "controlsource", Ctl)
Call ImSTX("What is the status bar text for control: " &
Format(Ctl.NAME, ">"), "statusbartext", Ctl)
.ControlTipText = .StatusBarText
.DecimalPlaces = 255 '2
.IMEHold = False '11
.IMEMode = 0 '2
.IMESentenceMode = 3 '2
.EnterKeyBehavior = False '11
.AllowAutoCorrect = True '11
.Visible = True '11
.DisplayWhen = 0 '2
.Vertical = False '11
.AsianLineBreak = True '11
.Enabled = True '11
.Locked = False '11
.FilterLookup = 1 '2
.AutoTab = False '11
.TabStop = True '11
.ScrollBars = 0 '2
.CanGrow = True '11
.CanShrink = False '11
.BackStyle = 0 '2
.BackColor = 16777215 '3
.SpecialEffect = 0 '2
.BorderStyle = 1 '2
.OldBorderStyle = 1 '2
.BorderColor = 52479 '3
.BorderWidth = 0 '2
.BorderLineStyle = 0 '2
.ForeColor = 0 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 1 '2
.FontBold = 0 '2
.HelpContextId = 0 '3
.ColumnWidth = -1 '2
.ColumnOrder = 0 '2
.ColumnHidden = False '11
End With
Case acLabel
With Ctl
Call ImSTX("caption for the following label: " &
Format(Ctl.NAME, ">"), "caption", Ctl)
.Visible = True '11
.DisplayWhen = 0 '2
.Vertical = False '11
.BackStyle = 1 '2
.BackColor = 8870738 '3
.SpecialEffect = 0 '2
.BorderStyle = 0 '2
.OldBorderStyle = 0 '2
.BorderColor = 8454143 '3
.BorderWidth = 1 '2
.BorderLineStyle = 0 '2
.ForeColor = 12632256 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 2 '2
.FontBold = 0 '2
Call ImSTX("What is the ControlTipText for the following
label: " & Format(Ctl.NAME, ">"), "ControlTipText", Ctl)
.HelpContextId = 0 '3
.ReadingOrder = 0 '2
.NumeralShapes = 0 '2
.LeftMargin = TW(0.053)
.TopMargin = TW(0.053)
.RightMargin = TW(0.053)
.BottomMargin = TW(0.053)
.LineSpacing = TW(0.053)
End With
End Select
Select Case FrmT
Case 0
Ctl.Height = TW(1)
Case 1, 2
Ctl.Height = TW(0.5)
Ctl.top = TW(0.25)
End Select
ctl_looper:
Next Ctl
DoCmd.close acForm, FrmN, acSaveYes
DoCmd.OpenForm FrmN, acDesign, , , , acWindowNormal
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function

Private Function ImSTX(InputQuestion As String, ppt As String, Obj As
Object)
'helps with the imSTF function to set certain string using an 'optional'
input box
'the Obj can be a control or a form
''on error goto err
Dim S As String
Const NC = "{do not change}"
Dim P As String
'- get current entry
P = Obj.Properties(ppt)
If Nz(P, "") = "" Then
P = NC
End If
'- ask for input
S = InputBox(InputQuestion, InputQuestion, P, 50, 50)
If S <> P Then
Obj.Properties(ppt) = S
End If
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function
Public Function imopenF(FunctionName As String)
'opens a procedure
DoCmd.OpenModule , FunctionName
End Function

Public Function imSPRO()
'writes the skeleton of a standard procedure to the immediate window so that
you can copy it for a new function
Const SEP = "'-"
Debug.Print "function New () as boolean"
Debug.Print " on error goto er"
Debug.Print SEP
Debug.Print " Dim TblN as string"
Debug.Print " Dim Ctl as Control"
Debug.Print " Dim CtlN as string"
Debug.Print " Dim Frm as Form"
Debug.Print " Dim FrmN as string"
Debug.Print " Dim x,y,z as long"
Debug.Print " Dim Dbs as dao.database"
Debug.Print " Dim Rst as dao.recordset"
Debug.Print " Dim SqlS as string"
Debug.Print SEP
Debug.Print " "
Debug.Print " "
Debug.Print SEP
Debug.Print "xt:"
Debug.Print " exit function"
Debug.Print "er:"
Debug.Print " resume xt"
Debug.Print "end function"
End Function
Public Function AllProcs(ByVal MdlN As String, Optional ObjT As Byte)
'lists all the procedures in a module
'if objt = 0 then mdln = is a standard module
'if objt = 1 then MdlN is a form
'if objt = 2 then MdlN is a report
''on error GoTo er
'-
Dim MDL As Module
Dim count As Long
Dim CountDecl As Long
Dim i As Long
Dim ProcName As String
Dim aProcNames() As String
Dim intI As Integer
Dim MSG As String
Dim R As Long
Dim ProType As Long
Dim ProNote As String
Dim j As Integer
Dim L As Integer
Dim MdlN2 As String
'- delete old data
FRUNSQL ("delete [D-MDL].* from [D-MDL] where [D-MDL]![D] = '" & MdlN &
"';")
'- open a form to help with the transition of data
DoCmd.OpenForm "T-TEM-DEV", acNormal, , , acFormEdit, acHidden
'-establish the type of modules
ObjT = ObjT + 0
Select Case ObjT
Case 0
DoCmd.OpenModule MdlN ' Open specified Module object
Set MDL = Modules(MdlN) ' Return reference to Module object.
MdlN2 = MdlN
Case 1 'FORM
DoCmd.OpenForm MdlN, acDesign, , , , acHidden
If Not Forms(MdlN).HasModule Then GoTo xt
Set MDL = Forms(MdlN).Module
MdlN2 = " FORMS " & MdlN
Case 2
DoCmd.OpenReport MdlN, acDesign, , , acHidden
If Not Reports(MdlN).HasModule Then GoTo xt
Set MDL = Reports(MdlN).Module
MdlN2 = " REPORTS " & MdlN
End Select
count = MDL.CountOfLines ' Count lines in module.
CountDecl = MDL.CountOfDeclarationLines ' Count lines in Declaration
section in module.
ProcName = MDL.ProcOfLine(CountDecl + 1, R) ' Determine name of first
procedure.
Debug.Print ProcName
If Nz(ProcName, "") = "" Then GoTo xt
i = CountDecl + 1
GoSub register
For i = CountDecl + 1 To count ' Determine procedure name for each line
after declarations.
If ProcName <> MDL.ProcOfLine(i, R) Then ' Compare procedure
name with ProcOfLine property value.
ProcName = MDL.ProcOfLine(i, R)
GoSub register
End If
Next i
DoCmd.close acForm, "T-TEM-DEV", acSaveNo
Select Case ObjT
Case 0
'on error Resume Next
DoCmd.close acModule, MdlN, acSaveNo
'on error GoTo 0
Case 1
DoCmd.close acForm, MdlN, acSaveNo
Case 2
DoCmd.close acReport, MdlN, acSaveNo
End Select
xt:
Exit Function
er:
MsgBox ERROR$
Resume Next
register:
ProType = R
j = MDL.ProcBodyLine(ProcName, R)
L = j - i
If L < 7 Then L = 7
If i + L > count Then L = 1
ProNote = MDL.Lines(i, L)
Forms("T-TEM-DEV").Controls("1") = ProNote
FRUNSQL ("INSERT INTO [D-MDL] ( [D], [Dc], [D-MDT-ID], [MEM] )
SELECT '" & MdlN2 & "' AS N, '" & ProcName & "' AS P, " & ProType & " AS T,
Forms![T-TEM-DEV]![1] AS M;")
Return

End Function
Nov 13 '05 #1
1 2667

Awesome Dude!
\;
"xtra" <wi**********@hottermail.com> wrote in message
news:wO*****************@news.xtra.co.nz...
Hi Folk

I have written a module that allows you to type a bunch of commands in the
immediate window, for quick access to information when you are creating VB
code. Here it is, it may be helpful to you (I find it pretty fast and
friendly).... Some of it is specific to my database (I left out many as
well
which were too specific), so you will have to rewrite it for yours, but
you
may find it useful.... Any questions, please ask. Typing Im (false) in
the
immediate window will show all the commands - so you only really have to
remember one.

Cheers

- Nicolaas

Public Sub Im(include_explanation As Boolean)
'explains all the immediate commands in more detail.
''on error GoTo er
Dim MDL As Module
Dim S As String
Dim Itm As Variant
'-
Call AllProcs("010 __________________________ IMMEDIATE WINDOW
COMMANDS", 0)
Call imMLet("0", include_explanation)
xt:
Exit Sub
er:
Resume 0
End Sub
Public Sub imFldNs(Tbln As String)
'lists all the field names for a table
''on error GoTo er
'-
Dim TBL As TableDef
Dim FLD As Field
Dim Dbs As DAO.Database
'-
Set Dbs = CurrentDb
Set TBL = Dbs.TableDefs(Tbln)
For Each FLD In TBL.Fields
Debug.Print FLD.NAME, FLD.type, FLD.Size
Next FLD
xt:
Set Dbs = Nothing
Set TBL = Nothing
Exit Sub
er:
MsgBox ERROR$
Resume xt
End Sub
Public Sub ImSqlE(S As String)
'puts the S string into a temporary query and opens it to show you what it
looks like
''on error GoTo er
'-
'on error Resume Next
DoCmd.DeleteObject acQuery, Q
'on error GoTo er
CurrentDb.CreateQueryDef Q, S
DoCmd.OpenQuery Q, acViewDesign, acEdit
xt:
Exit Sub
er:
MsgBox ERROR$
Resume xt
End Sub

Public Function ImOpenO(ObjN As String, Optional ObjT As Long)
'puts the S string into a temporary query and opens it to show you what it
looks like
'note that you need to swith windows to see the query (you will return to
the immediate window after running this function).
'on error GoTo er
Dim ObjC As Long 'object count
'-
If Nz(ObjT, 0) <> 0 Then
ObjC = 1
Else
ObjC = eCount("[ID]", "[msysobjects]", "[msysobjects]![name]='" &
ObjN
& "'")
ObjT = eMin("[type]", "[msysobjects]", "[msysobjects]![name]='" &
ObjN
& "'")
End If
Select Case ObjC
Case Is < 1
MsgBox "object does not exist"
Case Is > 1
MsgBox "there is more than one object with this name"
Case 1
Call OpenObject(ObjN, ObjT)
End Select
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function

Public Function ImSTF(FrmN As String, FrmT As Byte)
'standardizes a form - useful if you are building a new form - it adds all
the standard items, etc...
'the form should be closed to run this function
'frmT = 0 ... -EDI
'frmT = 1 ... -LIS
'frmT = 2 ... -SUB
'frmT = 3 .... -X
Dim FRM As Form
Dim Ctl As Control
'-
If IsLoaded(FrmN) = True Then
MsgBox "Please close form first - this is to prevent from
overriding
any chances that you may not have saved yet."
End If
DoCmd.CopyObject , "FORM10", acForm, FrmN
Debug.Print "a backup of the form has been made as FORM10"
DoCmd.OpenForm FrmN, acDesign, , , , acHidden
Set FRM = Forms(FrmN)
With FRM
Call ImSTX("Please enter form caption", "caption", FRM)
Call ImSTX("Please enter RecordSource", "RecordSource", FRM)
.Tag = Left(FRM.RecordSource, 5)
.AllowFilters = True
.DefaultView = IIf(FrmT > 1, 1, FrmT)
.ViewsAllowed = 1
.AllowFormView = True
.AllowDatasheetView = False
.AllowPivotTableView = False
.AllowPivotChartView = True
.AllowEditing = False
.AllowEdits = True
.AllowDeletions = True
.AllowAdditions = True
.DataEntry = False
.RecordsetType = IIf(FrmT = 3, 1, 0)
.RecordLocks = 0
.ScrollBars = 3
.RecordSelectors = False
.NavigationButtons = True
.DividingLines = False
.AutoResize = False
.AutoCenter = False
.PopUp = False
.Modal = False
.BorderStyle = 2
.ControlBox = True
.MinButton = False
.MaxButton = True
.MinMaxButtons = 2
.CloseButton = True
.WhatsThisButton = False
.Width = TW(20)
.PictureTiling = False
.Cycle = 0
.GridX = 4
.GridY = 4
.LayoutForPrint = False
.FastLaserPrinting = True
.FetchDefaults = True
End With
'- adjust controls
For Each Ctl In FRM.Controls
Call ImSTX("are you happy with the name of the control: " &
Format(Ctl.NAME, ">"), "name", Ctl)
Select Case Ctl.NAME
Case "ID", "IDR", "IDL"
Ctl.Visible = False
Ctl.Width = TW(0.25)
Ctl.BackColor = 13408767
Ctl.BackStyle = 1
GoTo ctl_looper
Case Else
'do nothing
End Select
Select Case Ctl.ControlType
Case acListBox, acComboBox
With Ctl
.DecimalPlaces = 255 '2
.RowSourceType = "Table/Query" '8
Call ImSTX("What should be the controlsource for control: "
& Format(Ctl.NAME, ">"), "controlsource", Ctl)
Call ImSTX("What is the status bar text for control: " &
Format(Ctl.NAME, ">"), "statusbartext", Ctl)
.ControlTipText = .StatusBarText
.ColumnCount = 2 '2
.ColumnHeads = False '11
.ColumnWidths = "0;" & TW(12)
.BoundColumn = 1 '3
.ListRows = 12 '2
.ListWidth = TW(12)
.LimitToList = True '11
.AutoExpand = True '11
.IMEHold = False '11
.IMEMode = 0 '2
.IMESentenceMode = 3 '2
.Visible = True '11
.DisplayWhen = 0 '2
.Enabled = True '11
.Locked = False '11
.AllowAutoCorrect = True '11
.TabStop = True '11
.Height = 284 '2
.BackStyle = 0 '2
.BackColor = 52479 '3
.SpecialEffect = 0 '2
.BorderStyle = 1 '2
.OldBorderStyle = 1 '2
.BorderColor = 52479 '3
.BorderWidth = 0 '2
.BorderLineStyle = 0 '2
.ForeColor = 0 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 1 '2
.FontBold = 0 '2
.HelpContextId = 0 '3
.ColumnWidth = -1 '2
.ColumnOrder = 0 '2
.ColumnHidden = False '11
.Section = 0 '2
End With
Case acTextBox
With Ctl
Call ImSTX("What should be the controlsource for control "
&
Format(Ctl.NAME, ">"), "controlsource", Ctl)
Call ImSTX("What is the status bar text for control: " &
Format(Ctl.NAME, ">"), "statusbartext", Ctl)
.ControlTipText = .StatusBarText
.DecimalPlaces = 255 '2
.IMEHold = False '11
.IMEMode = 0 '2
.IMESentenceMode = 3 '2
.EnterKeyBehavior = False '11
.AllowAutoCorrect = True '11
.Visible = True '11
.DisplayWhen = 0 '2
.Vertical = False '11
.AsianLineBreak = True '11
.Enabled = True '11
.Locked = False '11
.FilterLookup = 1 '2
.AutoTab = False '11
.TabStop = True '11
.ScrollBars = 0 '2
.CanGrow = True '11
.CanShrink = False '11
.BackStyle = 0 '2
.BackColor = 16777215 '3
.SpecialEffect = 0 '2
.BorderStyle = 1 '2
.OldBorderStyle = 1 '2
.BorderColor = 52479 '3
.BorderWidth = 0 '2
.BorderLineStyle = 0 '2
.ForeColor = 0 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 1 '2
.FontBold = 0 '2
.HelpContextId = 0 '3
.ColumnWidth = -1 '2
.ColumnOrder = 0 '2
.ColumnHidden = False '11
End With
Case acLabel
With Ctl
Call ImSTX("caption for the following label: " &
Format(Ctl.NAME, ">"), "caption", Ctl)
.Visible = True '11
.DisplayWhen = 0 '2
.Vertical = False '11
.BackStyle = 1 '2
.BackColor = 8870738 '3
.SpecialEffect = 0 '2
.BorderStyle = 0 '2
.OldBorderStyle = 0 '2
.BorderColor = 8454143 '3
.BorderWidth = 1 '2
.BorderLineStyle = 0 '2
.ForeColor = 12632256 '3
.FontName = "Trebuchet MS" '8
.FontSize = 8 '2
.FontWeight = 400 '2
.FontItalic = False '11
.FontUnderline = False '11
.TextFontCharSet = 0 '2
.TextAlign = 2 '2
.FontBold = 0 '2
Call ImSTX("What is the ControlTipText for the
following
label: " & Format(Ctl.NAME, ">"), "ControlTipText", Ctl)
.HelpContextId = 0 '3
.ReadingOrder = 0 '2
.NumeralShapes = 0 '2
.LeftMargin = TW(0.053)
.TopMargin = TW(0.053)
.RightMargin = TW(0.053)
.BottomMargin = TW(0.053)
.LineSpacing = TW(0.053)
End With
End Select
Select Case FrmT
Case 0
Ctl.Height = TW(1)
Case 1, 2
Ctl.Height = TW(0.5)
Ctl.top = TW(0.25)
End Select
ctl_looper:
Next Ctl
DoCmd.close acForm, FrmN, acSaveYes
DoCmd.OpenForm FrmN, acDesign, , , , acWindowNormal
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function

Private Function ImSTX(InputQuestion As String, ppt As String, Obj As
Object)
'helps with the imSTF function to set certain string using an 'optional'
input box
'the Obj can be a control or a form
''on error goto err
Dim S As String
Const NC = "{do not change}"
Dim P As String
'- get current entry
P = Obj.Properties(ppt)
If Nz(P, "") = "" Then
P = NC
End If
'- ask for input
S = InputBox(InputQuestion, InputQuestion, P, 50, 50)
If S <> P Then
Obj.Properties(ppt) = S
End If
xt:
Exit Function
er:
MsgBox ERROR$
Resume xt
End Function
Public Function imopenF(FunctionName As String)
'opens a procedure
DoCmd.OpenModule , FunctionName
End Function

Public Function imSPRO()
'writes the skeleton of a standard procedure to the immediate window so
that
you can copy it for a new function
Const SEP = "'-"
Debug.Print "function New () as boolean"
Debug.Print " on error goto er"
Debug.Print SEP
Debug.Print " Dim TblN as string"
Debug.Print " Dim Ctl as Control"
Debug.Print " Dim CtlN as string"
Debug.Print " Dim Frm as Form"
Debug.Print " Dim FrmN as string"
Debug.Print " Dim x,y,z as long"
Debug.Print " Dim Dbs as dao.database"
Debug.Print " Dim Rst as dao.recordset"
Debug.Print " Dim SqlS as string"
Debug.Print SEP
Debug.Print " "
Debug.Print " "
Debug.Print SEP
Debug.Print "xt:"
Debug.Print " exit function"
Debug.Print "er:"
Debug.Print " resume xt"
Debug.Print "end function"
End Function
Public Function AllProcs(ByVal MdlN As String, Optional ObjT As Byte)
'lists all the procedures in a module
'if objt = 0 then mdln = is a standard module
'if objt = 1 then MdlN is a form
'if objt = 2 then MdlN is a report
''on error GoTo er
'-
Dim MDL As Module
Dim count As Long
Dim CountDecl As Long
Dim i As Long
Dim ProcName As String
Dim aProcNames() As String
Dim intI As Integer
Dim MSG As String
Dim R As Long
Dim ProType As Long
Dim ProNote As String
Dim j As Integer
Dim L As Integer
Dim MdlN2 As String
'- delete old data
FRUNSQL ("delete [D-MDL].* from [D-MDL] where [D-MDL]![D] = '" & MdlN &
"';")
'- open a form to help with the transition of data
DoCmd.OpenForm "T-TEM-DEV", acNormal, , , acFormEdit, acHidden
'-establish the type of modules
ObjT = ObjT + 0
Select Case ObjT
Case 0
DoCmd.OpenModule MdlN ' Open specified Module object
Set MDL = Modules(MdlN) ' Return reference to Module object.
MdlN2 = MdlN
Case 1 'FORM
DoCmd.OpenForm MdlN, acDesign, , , , acHidden
If Not Forms(MdlN).HasModule Then GoTo xt
Set MDL = Forms(MdlN).Module
MdlN2 = " FORMS " & MdlN
Case 2
DoCmd.OpenReport MdlN, acDesign, , , acHidden
If Not Reports(MdlN).HasModule Then GoTo xt
Set MDL = Reports(MdlN).Module
MdlN2 = " REPORTS " & MdlN
End Select
count = MDL.CountOfLines ' Count lines in module.
CountDecl = MDL.CountOfDeclarationLines ' Count lines in Declaration
section in module.
ProcName = MDL.ProcOfLine(CountDecl + 1, R) ' Determine name of first
procedure.
Debug.Print ProcName
If Nz(ProcName, "") = "" Then GoTo xt
i = CountDecl + 1
GoSub register
For i = CountDecl + 1 To count ' Determine procedure name for each line
after declarations.
If ProcName <> MDL.ProcOfLine(i, R) Then ' Compare procedure
name with ProcOfLine property value.
ProcName = MDL.ProcOfLine(i, R)
GoSub register
End If
Next i
DoCmd.close acForm, "T-TEM-DEV", acSaveNo
Select Case ObjT
Case 0
'on error Resume Next
DoCmd.close acModule, MdlN, acSaveNo
'on error GoTo 0
Case 1
DoCmd.close acForm, MdlN, acSaveNo
Case 2
DoCmd.close acReport, MdlN, acSaveNo
End Select
xt:
Exit Function
er:
MsgBox ERROR$
Resume Next
register:
ProType = R
j = MDL.ProcBodyLine(ProcName, R)
L = j - i
If L < 7 Then L = 7
If i + L > count Then L = 1
ProNote = MDL.Lines(i, L)
Forms("T-TEM-DEV").Controls("1") = ProNote
FRUNSQL ("INSERT INTO [D-MDL] ( [D], [Dc], [D-MDT-ID], [MEM] )
SELECT '" & MdlN2 & "' AS N, '" & ProcName & "' AS P, " & ProType & " AS
T,
Forms![T-TEM-DEV]![1] AS M;")
Return

End Function

Nov 13 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Chris Bolus | last post by:
I'm a teacher using MS Access on an RMConnect 2.4 network. On some workstations both I and my students sometimes get an error message when attempting to insert a command button on a form which...
10
by: Siemel Naran | last post by:
Hi. I'm writing a command shell that reads commands from standard input. At this point I have the command in a std::string. Now I want to execute this command in the shell. From the Borland...
2
by: micahstrasser | last post by:
I have been trying for days to send a command to the command prompt through the shell() function in vb.net. For some reason it is not working. Here is the code: Private Sub Button1_Click(ByVal...
5
by: Good Man | last post by:
Hi there I am trying to execute a custom-built java program on my linux server via PHP. Basically, a user uploads files via PHP, and then the java program performs some action on these files. ...
14
by: Kevin | last post by:
A couple of easy questions here hopefully. I've been working on two different database projects which make use of multiple forms. 1. Where's the best/recommended placement for command buttons...
11
by: jobs239 | last post by:
Can I use this line inside C program "system(java -jar <jarfilename>)" to run a java program from C? Or do I have to use some JNI interface.?
5
by: Odd Bjørn Andersen | last post by:
I have installed DB2 9 Enterprise Edition on my laptop and created the sample database. Now I'm having truble connecting to the database from Command Editor. If I connect from Command Window it's...
2
by: luanhoxung | last post by:
Hi, Folks Please show me what happen ? In my Code, I declare: cm as command the word "command" doesnot capital the first letter like : Command. And i think VBA doesnot know what is cm ?? But in...
2
by: Gil_H | last post by:
Hi, I'm trying to run a script over unix on a remote machine. In order to automate it, the procedure requests the following: 1. Using SSH connection. 2. Operating a command on the remote...
0
by: czerwww | last post by:
Can someone please help me? I have class for database connection and I need set command.commandTimeout. How can I do that? Code: Imports System.Data.SqlClient Imports System.Data Public Class...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.