Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by klima

  1. K

    .Bat tu run myapp.exe as amministrator

    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.
  2. K

    .Bat tu run myapp.exe as amministrator

    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?
  3. K

    MerryWotsit

    Merry Christmas strongm!
  4. K

    get controll type, controll name from the second panel of SStab

    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
  5. K

    TEXTBOX non visible

    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.
  6. K

    merge .txt in one named big.txt

    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...
  7. K

    Extraction of Picture box point / pixel colors.

    I tried his "Even faster DIBs" code, never thought speed with VB。
  8. K

    Installing on Win11

    "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)
  9. K

    Installing on Win11

    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...

Part and Inventory Search

Back
Top