If anyone have or can post link to
Gary Beene includes for his snippets
thx
I have PM you with 2 messages
thanks Chris
I will try :)
Now i have problem with
win32api.inc
omg
anyone know where to find it?
sorry if i bothering
i copy whole set of includes into semples folder and i finally can
compile Gary Scintilla examples
why i must do that now .i am not sure ..but now work
OMG
Hi Zlatko, you must use Jose Roca includes for those PB programs by Gary
but you can't use PB includes as they are very different
Jose Roca includes are downloable from this forum, I'm not sure where. I must find out
Found them amd you can download from here http://www.jose.it-berater.org/smfforum/index.php?topic=5061.0
Chris
I have headers/ includes but compiler somehow cannot found it ..but ok
i copy them to example folder ,still are some quirk which not work but Ok
my intention is to find proper way for
FindNext, Replace,ReplaceAll functions using scintilla messages
i already have it in my editor but only FindNext work properly
Hello Zlatko, what compiler that you using?
Are you using PBWin 10 compiler ?
If yes , then follow this instructions : 1. place your Winapi includes files into a folder called " C:\Jose includes"
2. In the PBWin 10 IDE, click on the tab at the top, called Window
3. Then select Options ...
4. A set of menu will be displayed , select the tab Compiler
5. You would includes paths -- select the browse button "..." on the right
And then click on "Add Folder" button
6. type in the folder C:\Jose Includes and then click Ok button
Now, once you compile all the Jose includes will be gotten included in the compilation.
i have never use scintilla and therefore cannot help you on this
No problem Chris
it is not problem in Jose includes then in garybeene programs
and yes i have problem with Scintilla i am not sure how properly make this subroutines
or functions i will look somewhere similar
here is part of code from O2HEdit
from Arnold or Roland ...from old JRS forum
but this code is not test and there is no proof that work properly
any expert?
case IDC_FINDNEXT 'Find next Button
SendMessage hFindEdit, WM_GETTEXT,len(szBuffer), szBuffer
if IsDlgButtonChecked(hDlg, IDC_FINDDOWN) then
down=true
FindTxt.Chrg.cpMin = SendMessage(hSci, SCI_GetCurrentPos,0,0) 'if up-curpos, if down-anchor
else
down=false
FindTxt.Chrg.cpMin = SendMessage(hSci, SCI_GetAnchor,0,0) 'if up-curpos, if down-anchor
end if
FindTxt.Chrg.cpMax = down * SendMessage(hSci, SCI_GetLength,0,0) 'if up-length if down-0
FindTxt.lpstrText=szBuffer 'The search pattern (NULL terminated)
dwSearchOptions=0
if IsDlgButtonChecked(hDlg, IDC_FINDMATCHWORD) then dwSearchOptions= SCFIND_WHOLEWORD
if IsDlgButtonChecked(hDlg, IDC_FINDMATCHCASE) then dwSearchOptions=dwSearchOptions OR SCFIND_MATCHCASE
if SendMessage(hSci, SCI_FINDTEXT, dwSearchOptions, FindTxt)=-1 then
mbox "No (more) matches found"
else
dwCurLine=SendMessage(hSci, SCI_LINEFROMPOSITION,FindTxt.chrgText.cpMin,0)
SendMessage hSci, SCI_ENSUREVISIBLE,dwCurLine,0 'Open the sub containing this line if necessary
SendMessage hSci, SCI_SETCURRENTPOS,FindTxt.chrgText.cpMax,0 'Set end of selection
SendMessage hSci, SCI_SETANCHOR,FindTxt.chrgText.cpMin,0 'Set begin of selection
SendMessage hSci, SCI_SCROLLCARET,0,0 'Scroll to the current caret position
end if
Can you upload all stuff that is hard to find into the "THird Party" Section of the forum, then everybody can download and use it.
It was long time ago i checked/used Gary Beene snippets
then i finally find it in one folder
..and strange some things missing(i think)
looks like are deleted or simply are not there
i mean on source codes of his programs
hmm that is strange
maybe i have it somewhere else
so i must look where they are
I saw that
https://www.garybeene.com/sw/gbsnippets.htm (https://www.garybeene.com/sw/gbsnippets.htm)
ist still available.
Also i found this:
https://www.reonis.com/POFFS/ (https://www.reonis.com/POFFS/)
OK so everything is there ...
I don't know if GB have source code
as it is code editor with splitter windows is great
example and can be translated to OxygenBasic program.
𝐼 𝑡𝘩𝑖𝑛𝑘 𝐼'𝑚 𝑛𝑜𝑡 𝑢𝑝 𝑡𝑜 𝑑𝑎𝑡𝑒 𝑏𝑒𝑐𝑎𝑢𝑠𝑒 𝐼 𝑟𝑎𝑟𝑒𝑙𝑦 𝑣𝑖𝑠𝑖𝑡 𝑡𝘩𝑒 𝑃𝑜𝑤𝑒𝑟𝐵𝐴𝑆𝐼𝐶 𝑓𝑜𝑟𝑢𝑚. 𝐻𝑎𝑠 𝑠𝑜𝑚𝑒𝑡𝘩𝑖𝑛𝑔 𝘩𝑎𝑝𝑝𝑒𝑛𝑒𝑑 𝑤𝑖𝑡𝘩 𝐺𝑎𝑟𝑦 𝐵𝑒𝑎𝑛? 𝐼𝑠 𝘩𝑒 𝑛𝑜 𝑙𝑜𝑛𝑔𝑒𝑟 𝑎𝑣𝑎𝑖𝑙𝑎𝑏𝑙𝑒? 𝑊𝘩𝑦 𝑖𝑠 𝑡𝘩𝑖𝑠 𝑎𝑛 𝑖𝑠𝑠𝑢𝑒?
#𝑃𝑜𝑤𝑒𝑟𝐵𝐴𝑆𝐼𝐶 #𝐺𝑎𝑟𝑦𝐵𝑒𝑎𝑛 #𝐹𝑜𝑟𝑢𝑚𝑈𝑝𝑑𝑎𝑡𝑒 #𝑃𝑟𝑜𝑔𝑟𝑎𝑚𝑚𝑖𝑛𝑔𝐶𝑜𝑚𝑚𝑢𝑛𝑖𝑡𝑦 #𝐷𝑒𝑣𝑒𝑙𝑜𝑝𝑒𝑟𝑁𝑒𝑤𝑠