

limelect
Members-
Content Count
907 -
Joined
-
Last visited
-
Days Won
1
Everything posted by limelect
-
I copied a toolbar from the Gexpert procedure list form Now, someone can explain The toolbar is on a NEW FORM. As one can see from the DFM, it has 2 sections object ToolBar: TToolBar Left = 0 Top = 27 Width = 552 Height = 22 AutoSize = True DisabledImages = dmSharedImages.DisabledImages <<<<<<< Images = dmSharedImages.Images<<<<<<<<<<<<< And the buttons show the icons On the form, there are no uses !!!! for it Can anyone explain why I see pictures on the buttons? Is it because GEXPERT is in my IDE? This means I can use all Delphi resources, even if they are hidden. P.S. Running this form, the icons disappear !!!
-
@Uwe Raabe I thought so as long as the Gexpert DLL is installed. @Lajos Juhász Is wrong. I suggest you try it, it's so simple to do. The toolbar pictures will not disappear
-
Yes, it took a while to cook
-
This is a guy not worth considering why https://github.com/mesutde/Delphi-Youtube-Downloader/issues/1 does not respect the knowledge of others "I'm currently downloading a video that you can't download. First, improve yourself." Sorry, usually I do not respond, but in this case, he made me angry
-
@Die Holländer My problem is understanding why I see the bmp on the keys, even though I have no link to any bitmaps Just try it and see if you can explain the phenomenon Get Gexpert procedure list from the source and copy the toolbar to a new form That's it.
-
The only way it knows is from the Gexpert DLL, which means that it has hidden resources. Try it yourself and see if you have the Gexpert source P.S. I just copied the toolbar from the FORM ( procedure list), nothing else!!!!!!!!!!!
-
It does not matter. Things can fail on restart and then go back to OK. It happens to me hundred of times.
-
Read carefully this is my experience similar to yours
-
Anyone tried Structured Outputs with OpenAI?
limelect replied to misc_bb's topic in Delphi IDE and APIs
In order to test your idea, is it possible to put it here a full source as there are a lot of unknown -
This is my free application https://limelect.com/downloads/youtube_downloader_shell/ That is a shell for youtube-dl proven application
- 12 replies
-
- delphi xe7
- youtube
-
(and 1 more)
Tagged with:
-
ScroogeXHTML for Object Pascal 9.2.1 - fast RTF to HTML5 conversion
limelect replied to mjustin's topic in Delphi Third-Party
That's not important as the application you give can be done with TMS-rich with one line of code!!! So good luck -
ScroogeXHTML for Object Pascal 9.2.1 - fast RTF to HTML5 conversion
limelect replied to mjustin's topic in Delphi Third-Party
And the source? TMS-rich does that So what's so special? -
I am trying to understand my problem with reverse HEBREW TEXT. I have 3 rich edit components and a memo for testing. RichEdit1, jvRichEdit, and AdvRichEditor jvRichEdit and AdvRichEditor reverse my string(my Hebrew name) The source is a Richedit file. procedure TForm1.BitBtn2Click(Sender: TObject); var s: TStringList; begin s := TStringList.Create; OpenDialog1.Filter := 'RTF files (*.rtf)|*.rtf|Any files (*.*)|*.*'; if OpenDialog1.Execute then begin AdvRichEditor1.Clear; RichEdit1.Clear; jvRichEdit1.Clear; RichEdit1.Lines.LoadFromFile(OpenDialog1.FileName); jvRichEdit1.Lines.LoadFromFile(OpenDialog1.FileName); s.LoadFromFile(OpenDialog1.FileName); Memo1.Clear; memo1.Text := RtfToText(s.Text, true); <<<< procedure from the Internet AdvRichEditor1.InsertText(0, memo1.Text); <<<<< Inserting memo text to ADVrich is OK AdvRichEditor1.Repaint; AdvRichEditorRTFIO1.Load(OpenDialog1.FileName); <<<<< reverse Hebrew string s.Free; end; end; My main rich is AdvRichEditor. P.S My final file contains pictures too Unless I have to go into the sources any solution? Untitled_1.bmp
-
ScroogeXHTML for Object Pascal 9.2.1 - fast RTF to HTML5 conversion
limelect replied to mjustin's topic in Delphi Third-Party
https://www.habarisoft.com/scroogexhtml/9.2.1/ScroogeXHTMLDemo.zip does not work wants resources -
@Uwe Raabe Since I have been with Delphi since #1, History proved that there are a few stable versions. In my D10.2.3, GetIt does not work, but that does not impair work, for example And I am not alone on this matter
-
Sorry, I do not want to move to the newer Delphi after seeing all those problems I know Embaecadero hase to make money, but my stable Delphi is more important to me.
-
https://readwrite.com/the-nsa-list-of-memory-safe-programming-languages-has-been-updated/ The US government says it would be better for them if you ceased using C or C++ when programming tools In no particular order, the NSA suggests these memory-safe programming languages Go Rust C# Swift Java Ruby Python Delphi/Object Pascal <<<<<<<<<<< waaaa Ada
-
Are we in the wrong business? https://www.tiobe.com/tiobe-index/ https://www.tiobe.com/tiobe-index/python/ https://www.tiobe.com/tiobe-index/delphi-object-pascal/
-
This time I have a solvable one. It took me a whole day to figure it out, and I had no solution. It all started when my Delphi stopped working. It loads and then closes itself with errors. Very often rtl.bpl What I did. All took a whole day. First, I thought it was the main bin. So I brought it from my backup. Every time I had to start Delphi or start my computer. It did not help Then I thought of sources. Got the backup, but it did not help. Every time it closed, I had to use the task manager too. As the almost last resort, I have an Expert directory. I renamed it did not help. Then I renamed the BPL directory to BPL! It did help with success. Now what? I moved all the BPL directory to the temp dir and returned half of it to BPL. The way I found the last BPL, I used C4DWizard.bpl It has the last projects used great, And now to what's going on. This BPL worked for many days !!!!! It seems that the developer did not encounter such a problem. Well, I just wanted to give you a day of a professional. My thought is how much I rely on Delphi to work. It is my life even after 30 years.
-
VSoft.System.Console - Delphi implementation of c# Console class
limelect replied to Vincent Parrett's topic in I made this
That it? contr C -
VSoft.System.Console - Delphi implementation of c# Console class
limelect replied to Vincent Parrett's topic in I made this
New one // Console.SetWindowSize(200,60); Console.SetWindowSize(150,48); Now Ok, but stack does nothing What is supposed to do? turned endlessly while true do Sleep(200); -
VSoft.System.Console - Delphi implementation of c# Console class
limelect replied to Vincent Parrett's topic in I made this
Same as above D10.2.3 window 7 -
Can you show what you did for embedding? With a few lines of code, if possible
- 12 replies
-
- delphi xe7
- youtube
-
(and 1 more)
Tagged with:
-
@dwrbudr This is the demo of TRichView with mixed Hebrew and English but the PDF is PDF24 But as I wanted the PDF to be built within I used AdvRichEditor maybe I will consider it too P.S. I suspect one can take PDF basic of AdvRichEditor and use it for TRichView