-
Content Count
64 -
Joined
-
Last visited
Community Reputation
0 NeutralTechnical Information
-
Delphi-Version
Delphi 10.2 Tokyo
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Yes right need to remove strings in brackets including brackets
-
Thanks a lot for reply I have Memo line in which there are such strings which are not specific otherwise I can use StringReplace method ,strings are in brackets () and I want to delete those strings which are with brackets suppose This is (string) which need to (remove) Need to delete (string and (remove) from the above
-
This is basic and you have tried to replace the string you already know. String can be anything in brackets and need to delete the string including brackets .. all the string occurrences in line which is with bracket need to delet
-
I have a string like This is (string) which need to (remove) How can I delete strings (string) and (remove) so that result should be This is which need to
-
but on my system TOSVersion.ToString returns Windows 10
-
Hi Is there any way to detect the Windows 11 in Delphi like the way OS := TOSVersion.ToString ;
-
Hello I am trying to check file existence in both directories c:\windows\system32 and c:\windows\syswow64 I tried to use Wow64EnableWow64FsRedirection true and false method, when I do not use Wow64EnableWow64FsRedirection method I get c:\windows\syswow64 but when I use Wow64EnableWow64FsRedirection(False); I get c:\windows\system32 but issue is when I use Wow64EnableWow64FsRedirection(True); I do not get c:\windows\syswow64 I am actually trying On Disable, c:\windows\system32 On Enable, c:\windows\syswow64
-
How to implement these methods
-
No I don't have control over Exe-2, Exe-1 must not run if it is not executed by its own
-
Is there any possibility to check if the exe is executed by clicking on its own icon or by external exe Suppose Exe-1 and Exe-2 Need to check Exe-1 is whether executed by clicking on its own icon or executed by external Exe-2
-
Sorry but completely not working on Windows 7 32/64 bit
-
@programmerdelphi2k LFind := ['micro.pds', 'other.cff', 'world.exe']; LWhereIsIt.AddStrings(['hello.tt', 'other.cff', 'world.exe', 'delphi.dp', 'some.pds']); In this case it doesn't work
-
There are no non-printable characters around extensions
-
Yes Exactly I create a Splash Form and free it then check If Splash is created before creating login form
-
I have just give an Example .. I know I can't free MainForm .. I have simply given the name here Form1 and Form2