Search found 96 matches: tscintilla

Return to advanced search

Some Command on Tscintilla

https://i.postimg.cc/xTCkxN1s/tet.gif I need and I like to set my editor ( made with Tscintilla) these commands if it's possible Find (Ctrl+F) to Display a dialog box to search for an expression within the text. for this command I found the method oMemo:DlgFindText() ...
by Silvio.Falconi
Thu Nov 28, 2024 12:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Some Command on Tscintilla
Replies: 0
Views: 271

Re: Tscintilla save a file

... + ":\" + CurDir(), .T., .T. )   MemoWrit(cFile, oMemo:cTitle ) return nil yes of course but I saw there was a method into Tscintilla I thinked to use this .....
by Silvio.Falconi
Thu Nov 28, 2024 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tscintilla save a file
Replies: 2
Views: 338

Re: Tscintilla save a file

Code: Select all  Expand view  RUN
function Salva_File(oMemo)
   local  cFile := cGetFile32( , FWString("Save as"), 0, ;
                          hb_CurDrive() + ":\" + CurDir(), .T., .T. )
   MemoWrit(cFile, oMemo:cTitle )
 
return nil
by alerchster
Wed Nov 27, 2024 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tscintilla save a file
Replies: 2
Views: 338

Tscintilla save a file

...   1] = C   C:\work\silvioscript\script\silvio.slsStack Calls===========   Called from: .\source\classes\scintila.prg => TSCINTILLA:SAVE( 1049 )   Called from: test.prg => SALVA_FILE( 322 )   Called from: test.prg => (b)SILVIOSCRIPT( ...
by Silvio.Falconi
Wed Nov 27, 2024 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tscintilla save a file
Replies: 2
Views: 338

Re: scintilla sample - RESOLVED -

I only have problems resizing the dialog, the Folders i.e. the one on the right and the one under Tscintilla do not behave well, i.e. I cannot set them well. Overall, however, everything is working, the scripts can be executed without using Hb_compile(), as you can see in ...
by Silvio.Falconi
Wed Nov 27, 2024 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scintilla sample - RESOLVED -
Replies: 16
Views: 2315

Re: scintilla sample - RESOLVED -

... I just didn't understand how to click on the tree and insert the function, for example Fuori90, in the source code control (Tscintilla) I made oItem1:Add( "Fuori90()",1,  {|| nOpt:=2 }  )       oItem1:Cargo = {|| cLine:="Fuori90()",oMemo:InsertText(oMemo:GetCurrentPos() ...
by Silvio.Falconi
Tue Nov 26, 2024 9:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: scintilla sample - RESOLVED -
Replies: 16
Views: 2315

Re: Cual es la clase ?

... pregunto, es posible desactivar/activan los controles con la cláusula WHEN? La opción para generar el código fuente me reclama la TSCINTILLA, donde la encuentro? Saludos y gracias por el apoyo
by Armando
Sat Feb 24, 2024 12:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cual es la clase ?
Replies: 10
Views: 1065

Re: Mejoras para scintilla

... ======================== [ 1] = A { ... } length: 34 [ 2] = N 517 Stack Calls =========== 000002 Called from: .\source\classes\SCINTILA.PRG => TSCINTILLA:SETFONT( 4541 ) 000003 Called from: .\source\classes\SCINTILA.PRG => TSCINTILLA:OPENFILE( 2232 ) 000004 Called from: .\source\classes\TFIVEDIT.PRG ...
by Willi Quintana
Wed Jun 10, 2020 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras para scintilla
Replies: 1040
Views: 932180

Re: Mejoras para scintilla

... 36 TXBRWCOLUMN 37 TSCROLLBAR 38 TCLIPBOARD 39 TBUTTON 40 TBUTTONBMP 41 TSAY 42 TMULTIGET 43 TLISTBOX 44 HBFORMATCODE 45 CODEFORMAT 46 TCURSOR 47 TSCINTILLA 48 TSPLITTER 49 TFILE 50 TTXTFILE 51 TGROUP 52 TPANEL Memory Analysis =============== 693 Static variables Dynamic memory consume: Actual ...
by caducca
Tue Jul 30, 2019 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mejoras para scintilla
Replies: 1040
Views: 932180

Re: Building a TTreeView with all folders and files

Dear Antonio, I get following error: Error description: Error BASE/1004 Class: 'NIL' has no exported method: EVAL Args: [ 1] = U [ 2] = O TSCINTILLA Stack Calls =========== Called from: => EVAL( 0 ) Called from: .\source\function\MEMOEDIT.PRG => SETUPSCINT( 790 ) Called from: .\source\function\MEMOEDIT.PRG ...
by Otto
Tue Feb 05, 2019 9:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building a TTreeView with all folders and files
Replies: 10
Views: 1818

Re: Base sample with scintilla

... Please rename to SciLexer.Dll ( X86 ) and SciLex64.Dll ( 64 ) for use with TScintilla
by cnavarro
Thu Mar 22, 2018 10:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Base sample with scintilla
Replies: 20
Views: 4544

Re: Base sample with scintilla

...  oWnd:oClient:SetText(cIni)   oWnd:oClient:Refresh()   ACTIVATE WINDOW oWndreturn 0class MyScintilla FROM TScintilla   METHOD SetupendclassMETHOD Setup( nMark, lInit ) CLASS MyScintilla   ::SendMsg( SCI_SETLEXER, SCLEX_PROPERTIES, ...
by AntoninoP
Wed Mar 21, 2018 2:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Base sample with scintilla
Replies: 20
Views: 4544

Re: Base sample with scintilla

oScintilla:SetKeyWords( 0, "keyword1 keyword2 keyword3" ) works fine. i have tried this: ::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 ) ::oEditor:cLexer := 7 ::oEditor:SetLexer( 7 ) // SCLEX_SQL ::oEditor:Setup() but i receive an error: ...
by cnavarro
Mon Mar 19, 2018 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Base sample with scintilla
Replies: 20
Views: 4544

Re: Base sample with scintilla

oScintilla:SetKeyWords( 0, "keyword1 keyword2 keyword3" ) works fine. i have tried this: ::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 ) ::oEditor:cLexer := 7 ::oEditor:SetLexer( 7 ) // SCLEX_SQL ::oEditor:Setup() but i receive an error: ...
by marzio
Mon Mar 19, 2018 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Base sample with scintilla
Replies: 20
Views: 4544

New FTDN January/Enero 2018 (FWH 18.01)

... file. This function uses TXmlDocument class of (x)Harbour and can display only such xml files that can be read by this class. * Enhancement: CLASS TScintilla METHOD MnuMargen(), added clause COLORS to the popup menu definition: MENU oMnu POPUP COLORS * Fix: function WndCenter() was not properly ...
by Antonio Linares
Wed Feb 14, 2018 5:03 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2018 (FWH 18.01)
Replies: 1
Views: 2967
Next

Return to advanced search