It seems that manifest is your first choice. I agree with you and I wan't to give a hint of “detail" you skipped. If no need other resource file, .res is the better way.
It would be complicated when there are other resources in program. Manifest file is recommended. Or, how about set administrator right in a install tools?
SSTab may be not a container.
Try this to find the typename, then get others:
Dim ctl As Control
For Each ctl In Me.Controls
Debug.Print TypeName(ctl)
If TypeOf ctl Is SSTab Then Debug.Print "SSTab"
Next ctl
End Sub
You'd better reset position in form_resize event. If you just want to find the control in IDE, you may find the control in the property drop list, then the control will be selected.
I prefer binary access.
Private Sub MergeIt(ByVal sPath As String)
Dim sFile As String
Dim bText() As Byte
sFile = Dir(sPath & "*.txt")
Open "textFile.txt" For Binary Access Write As #1
Do While Len(sFile) > 0 '
bText = sLoadFile(sPath & sFile) 'encoding is not...
"C:\Program Files (x86)\Common Files\Microsoft Shared\VS98" is right path.
I have no idea about splash. Could you confirm your control version like this?
Project->Components->control->Microsoft Comm Control 6.0 (SP6)
Hi, you may find "vshelp.dll" in \OS\SYSTEM\ from VB install CD, or download one.
Then, copy it to system32 folder.
Then, open a cmd window via administratorr privileges and type "regsvr32 %yourpath%\vshelp.dll" to regist the dll file.
Then, the msdn help file will link to VB IDE.
F1 key may not...
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.