Yes, it's the abbreviation of "Steuerung", the german word for the noun "control"gnozal hat geschrieben:I assume strg is CTRL ?

Code: Alles auswählen
Procedure SDK_IsAvaiable()
IsAvaiable = 0
If RegCreateKeyEx_(#HKEY_CURRENT_USER, "Software\Microsoft\MSDN\8.0\Help", 0, 0, #REG_OPTION_NON_VOLATILE, #KEY_READ , 0, @NewKey, @KeyInfo) = #ERROR_SUCCESS
index = 0
Repeat
ValueName$ = Space(260)
ValueNameSize = 260
ValueData$ = Space(260)
ValueDataSize = 260
Result = RegEnumValue_(NewKey, index, @ValueName$, @ValueNameSize, 0, @ValueType, 0, 0)
If Result = #ERROR_SUCCESS And ValueType = #REG_SZ
If Left(LCase(ValueName$),17) = "ms-help://ms.msdn" ; current version: ms-help://MS.PSDK.1033
PlatformSDKHelpString$ = ValueName$
IsAvaiable = 1
Break
EndIf
EndIf
index + 1
Until Result <> #ERROR_SUCCESS
RegCloseKey_(NewKey)
EndIf
ProcedureReturn IsAvaiable
EndProcedure
Code: Alles auswählen
;{-__notify sciedi DoubleClick
Case #SCN_DOUBLECLICK
WaitForLMBUp()
startPos=SCI_GetSelectionStart()
StartLine=SCI_LineFromPosition(startPos)
If SCI_MarkerGet(StartLine)&#FoldMask_Start
;-___Click in Faltline
PostMessage_(MainWin,#mywm_OpenFold,0,StartLine) ; <-----
Else
If GetAsyncKeyState_(#VK_CONTROL)&$FF00
FindDefinition(startPos,SCI_GetSelectionEnd()) ;<-------
EndIf
EndIf
What about option 'SDK anstelle von Win32.hlp verwenden' ?hallodri hat geschrieben:Koennte man MSDN V8 auch noch als Alternative zur win32.chm einbauen ?
I guess most users like it. Why do you double-click on procedures then ?hallodri hat geschrieben:Dann noch der Doppelklick auf eine "Procedure"
Unfortunately, I use a non unicode OS (Win98SE) and don't know nothing about unicode/utf-8 etc...ts-soft hat geschrieben:Wenn es vielleicht möglich wäre, das jaPBe den BOM Header auswertet, so wie die IDE?
Und natürlich auch schreibt!
Diese Option laesst aber nur PSDK und nicht MSDN zu.gnozal hat geschrieben:What about option 'SDK anstelle von Win32.hlp verwenden' ?hallodri hat geschrieben:Koennte man MSDN V8 auch noch als Alternative zur win32.chm einbauen ?
Ich bin faul und brauch das zum markierengnozal hat geschrieben:I guess most users like it. Why do you double-click on procedures then ?hallodri hat geschrieben:Dann noch der Doppelklick auf eine "Procedure"
So the BOM is 'EF BB BF' at the beginning of the source.ts-soft hat geschrieben:Zu BOM: http://de.wikipedia.org/wiki/Byte_Order_Mark
Keine Ahnung, ich hoffegnozal hat geschrieben:So the BOM is 'EF BB BF' at the beginning of the source.ts-soft hat geschrieben:Zu BOM: http://de.wikipedia.org/wiki/Byte_Order_Mark
1. LOADING : if there is a BOM, jaPBe should :
- skip the BOM and load the source ;
- set editor mode to UTF-8.
2. SAVING : if editor is in UTF-8 mode, jaPBe should :
- add BOM at beginning of file ;
- save the rest as usual.
Is this correct ?