Stéphane Wierzbicki
Members-
Content Count
232 -
Joined
-
Last visited
Everything posted by Stéphane Wierzbicki
-
Parnassus Bookmarks for Delphi 11 Alexandria?
Stéphane Wierzbicki replied to PeterPanettone's topic in Delphi IDE and APIs
FWIW I haven't installed Bookmarks nor navigator plugins right now. I'll next week. If the same issue happens I will try to uninstall all experts, start Delphi and reinstall Bookmarks and navigator through Getit to see how it will behave. I'll keep informed. -
Parnassus Bookmarks for Delphi 11 Alexandria?
Stéphane Wierzbicki replied to PeterPanettone's topic in Delphi IDE and APIs
Do you have any expert installed ? (Mmx code explorer or GExpert) -
Can someone provide inbound and outbound ports used by IDE?
Stéphane Wierzbicki posted a topic in Delphi IDE and APIs
I'm desperately seeking for this information. Our Delphi is installed on a secured network and I need to provide inbound and outbound UDP/TCP ports that need to be opened for RAD studio to work. Same question about proxy settings. Anyone know how to get this ? (Already asked Embarcadero support and never got an answer...). Thanks PS:please don't tell me to install Wireshark and monitor everything... This should not be done by Embarcadero's customers -
SynEdit just got a major uplift
Stéphane Wierzbicki replied to pyscripter's topic in Delphi Third-Party
You are on Steroids 🙂 ... New features every week 🥳. Thanks 👍 -
Can someone provide inbound and outbound ports used by IDE?
Stéphane Wierzbicki replied to Stéphane Wierzbicki's topic in Delphi IDE and APIs
Thanks but it would be nice if Embarcadero could provide detailed information such as URLs to allow, public IP adresses, TCP / UDP ports ranges and so on. -
Can someone provide inbound and outbound ports used by IDE?
Stéphane Wierzbicki replied to Stéphane Wierzbicki's topic in Delphi IDE and APIs
Well, web installation did work. IDE is running but i'm facing issues with GetIt. GetIt is able to display, filter items but as soon as I click the Install button I'm getting errors (I'm no more at the office now but from memory it was related to network connectivity issue) I suspect our proxy to be too strict... this is only guessing as Embarcadero isn't providing any info about installing Rad Studio in a "secured" network environment. -
Faced somehow the same issue. All packages were left, but search path was screwed (some path survived the update while a lot didn't).
-
For the last 10 years, I used to export Delphi reg keys (help, variables, experts, ide packaged, package and all libraries path). That saved my time today as all libraries path where screwed...
-
Rad Studio Access Violation
Stéphane Wierzbicki replied to Michael Collier's topic in Delphi IDE and APIs
I'm getting as well a lot of Access violation... As soon as I display a form in my project. I thought that this was solved by restarting my VM but this is happening again... https://quality.embarcadero.com/browse/RSP-37078 I will not be surprised if this is related to their protection system! -
Firedac GetFieldNames doesn't retrieve all fields list
Stéphane Wierzbicki posted a topic in Databases
Hi, I am recovering MsSQL tables fields with the help of the GetFieldNames method, however some list fields are incomplete. For example, I do have a table name with a string field called "USER' (reserved word, i know but I cannot to anything against this), calling GetFieldNames retrieve everything except the 'USER' field. I'm calling GetFieldNames this way: FDConnection.GetFieldNames('','',Tablename,'',Fieldlist) Where Tablename is a string containing table name and Fieldlist is a TStringlist. Is there anything I can do? PS: I'm using Delphi 11 -
Firedac GetFieldNames doesn't retrieve all fields list
Stéphane Wierzbicki replied to Stéphane Wierzbicki's topic in Databases
@joaodanet2018 thanks for the workaround (using TFDMetaInfoQuery will also do the trick) but why oh why does GetFieldNames not work ? -
My first impression after opening the document: that's impressive, looks like the author spent a lot of time on it.
-
Looks like Mr Normann has no more an active account (now seen as guest) here ! Nor his work available at sourceforge anymore. What's going on?
-
simple SFTP-like server for Windows?
Stéphane Wierzbicki replied to David Schwartz's topic in General Help
Syncplify provides free and paid SFTP servers. -
Why don't you use SQLite DDL and adapt it to MySQL? This is not really complicated. After creating your MySQL database run FDBatchmove (btw FDBatchmove is able to physically create missing table but is not capable of creating indexes nor foreign keys).
-
Hello, FWIW getit-olympus.embarcadero.com leads to this : while getit.embarcadero.com is unreachable. Regards
-
Your Delphi verion does not support COMMAND
Stéphane Wierzbicki replied to TimCruise's topic in Python4Delphi
I guess that installer is compiling sources, thus needs command line compiler which is not provided with community edition... -
M1, Parallels, Delphi IDE: ctrl + hovering ???
Stéphane Wierzbicki replied to Joe Sansalone's topic in Cross-platform
Hello, This is a little bit off topic but what is your experience running Windows on M1 ? and how to Delphi behave? (it is emulated) -
Are you aware that you can share "application" only instead of providing desktop?
-
I really don't know. I'm not sure if you will be able to replace SSL DLL with pure Delphi code.
-
Google search propose this: https://github.com/grijjy/DelphiGoogleAPI You can also have a look at TMS Cloud
-
Where are the FD Enterprise Connectors hiding?
Stéphane Wierzbicki replied to David Schwartz's topic in General Help
WFIW The last time I checked (1 week ago), CData installers were.not updated to Delphi 11. -
Did you see TMS announcement ? https://www.tmssoftware.com/site/blog.asp?post=836
-
It's really nice 🙂 Will you considering directly docking cmd or PowerShell Windows ? In your video cmd or PowerShell Windows need to be moved and docked into Delphi. Thanks for sharing this !
-
Weaknesses with MySQL and or PostgreSQL
Stéphane Wierzbicki replied to Roger Cigol's topic in Databases
I used to work with MySQL (from 2000 to 2012). I used it for our internal Datawarehouse. FWIW, some tables handled over 200 000 records per day (with almost 100 fields). Since 2012 I switch to PostgreSQL for all my new projects. I really like it and to be honest, this database is extremely powerful and easy to maintain.