You might have to force to open Word 2003:
Try this:
.OpenDataSource Name:="\\path\folder\FileName.rtf", _
LinkToSource:=True, _
Connection:="TABLE FileName", _
SQLStatement:="SELECT * FROM [FileName]"
SubType = wdMergeSubTypeWord2003
Not sure if this will help you but have the subform on the tab unbound and make it invisible. then use the following code, but you
Private Sub TabCtl0_Change()
Select Case TabCtl0.Pages.Item(TabCtl0.Value).Name
'Case "pg1"
' If Len(sfrm1.SourceObject) = 0 Then
'...
I am using tabs with subforms and although I am keeping the grey buttons, I do use the following to change whether there is data in the Notes section or not.
Private Sub Form_Current()
If IsNull(Me!Notes) Or Me!Notes = "" Then
Me!NotesPage.Caption = "NO NOTES"...
I just came on board and not sure if you tried this, but I put the tab control stip in either the header or the footer of the main form, instead of the detail section. This will not make the tabs disappear.
B
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.