-
Content Count
139 -
Joined
-
Last visited
-
Days Won
1
microtronx last won the day on May 10 2022
microtronx had the most liked content!
Community Reputation
38 ExcellentTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I had the same experience in the beginning. After encountering the initial issues, I decided to reinstall all third-party components (TMS, DevExpress, etc.), and now everything is running smoothly without any problems. You might want to try reinstalling those components as it could resolve the access violations and debugging issues you're facing.
-
Delphi 12.1 : Freezed during words search
microtronx replied to gioma's topic in Delphi IDE and APIs
I've been dealing with this issue for years, even before Delphi 11, and it's incredibly frustrating—especially when it happens after I forget to save my work. -
What do you think of "Local Global variables"
microtronx replied to Tommi Prami's topic in RTL and Delphi Object Pascal
I use them sometimes but I ensure that all variables and constants in local procedures have a _ as prefix procedure Main(); var vmyString:string; procedure _one(); begin vmyString:=vmyString+'_def'; end; procedure _two(const _var:string); begin vmyString:=vmyString+' : '+_var; end; begin vmyString:='abc'; _one(); _two( copy(vmyString,1,3) ); end; -
It seems one of the declared variables as :integer was the problem. Changing all "integer" vars to "longint" and the problem is gone somehow
-
Hi All, If we have a XML element in an XML-file with more than 32k size, we got a RangeError in delphi. I tried to write a issuereport on https://github.com/kattunga/NativeXml/issues/9 but it seems that this page is not active. has someone a better solution than following lines: function TsdBufferWriter.Write(const Buffer; Count: Integer): Longint; var Idx, Siz: integer; begin // index in the source buffer Idx := 0; // remaining size Siz := Count; while FRawPosition + Siz >= FChunkSize do begin Move(TByteArray(Buffer)[Idx], FRawBuffer[FRawPosition], FChunkSize - FRawPosition); WriteChunk(FChunkSize); dec(Siz, FChunkSize - FRawPosition); inc(Idx, FChunkSize - FRawPosition); FRawPosition := 0; end; // copy the raw buffer Move(TByteArray(Buffer)[Idx], FRawBuffer[FRawPosition], Siz); inc(FRawPosition, Siz); Result := Count; end; It seems that this works only for a speficic datasize. Any ideas / hints to make it better?
-
Wohoo - crazy stuff ...
-
We have been utilizing ReportBuilder for over a decade and have never encountered any insurmountable issues. The support provided is commendable, and we have successfully developed numerous additional features for their "RAP" - the runtime scripting engine to create functionalities for our special needs.
-
Ann: TsiLang Components Suite v7.9.5 with ChatGPT integration is here!
microtronx replied to Igor Sitikov's topic in Delphi Third-Party
Your ChatGPT extension is working very very good. Thanks Igor. -
ANN: HelpNDoc 8.6 is available Introducing a Powerful Non-Destructive Multi-Layered Image Editor, and more...
microtronx replied to HelpNDoc's topic in Delphi Third-Party
Hi John, is any discount for us / Delphi users available? -
Yes I know, but I was unable to fully comprehend the question.
-
simply change your line from x := StrToInt('x'); to x := StrToInt(inttostr(x)); crazy, but will work. But I do not understand why someone would do this
-
Can Delphi set session data in opening a webpage?
microtronx replied to PiedSoftware's topic in Network, Cloud and Web
Yes, look at tidHTTP and its CookieManager property (tidCookieManager). I think there are some examples out there. -
Can Delphi set session data in opening a webpage?
microtronx replied to PiedSoftware's topic in Network, Cloud and Web
Normally Sessiondata is stored in cookies and yes you can handle them with delphi -
1. try: Updated with Webinstall ... started doing something, uninstalled getit packages and delphi, installed delphi and registered some dlls + closed setup ... Starting Delphi does not show anything. 2. try: Same with ISO-install 3. uninstalled manually everything, deleted everything from delphi from install-path and started ISO install again ... now successful
-
Hi Ian, on our mainapp we have one tDataModule with tEngine, tSession but we create all other tTables and tQuery etc. in runtime on each form. This is different when we have threads: for each thread, we create a seperate tSession