-
Content Count
213 -
Joined
-
Last visited
-
Days Won
5
Everything posted by haentschman
-
...π No answer? You have a perfect licence and you can use it on the laptop. Install the Professional or Enterprise (what you have) version with your key. π
-
Why the Community Edition? π€ You can use your personally registration on multiple computers...only uses by your self. π
-
Hi... I am trying to connect to our new ADS server for the first time. (Third party software, access data with read rights available). On another VM the Advantage Data Architect is running with the same access data. Share on the Database folder available. ...it does not want me. "...cannot authenticate the user..." What is missing? Thanks. PS: On my machine the Advanced Data Architect is also working... Crosspost: german DP https://www.delphipraxis.net/213554-zugriff-auf-ads-server.html#post1525731
-
thanks... User: DomainName\xxx ... not working. πͺ Was to be expected. It is the database user, not the domain user...
-
Hi... How about source code? Complete project? What is the mainform? DonΒ΄t free the mainform!
-
Hi...welcome here. ...great! Why? Better using the Delphi Community edition...the modern way. https://www.embarcadero.com/products/delphi/starter/free-download/ https://learndelphi.org/de/everything-you-need-to-know-about-debugging-in-delphi/
-
Yes...Version 2023.1 π
-
Hi...π At first...Events. π
-
Hi... Is it possible to drop embedded images from outlook as a file into a folder...with a dummy name? Imho not... Thanks...
-
Drag and Drop Component Suite: Outlook embedded images
haentschman replied to haentschman's topic in VCL
Hi...π ...I will give it a try. π that's what i mean with "dummy name" π Thanks... -
Drag and Drop Component Suite: Outlook embedded images
haentschman replied to haentschman's topic in VCL
Hi I don't use the studio yet. I was only interested in the principle of whether this is possible at all. I have an Outlook mail with which the images are embedded via copy/pase. These have NO file name. I would like to save only the marked picture, which is no file, by drop into a folder. To do this, the "metadata" of the image would have to be converted to PNG or JPG...and get a filename. The normal way is...save the image over context menu. I want it over Drag without temporary file. Outlook -> MyApplication Thanks... -
Hi... I need a "Like" in the filter list. With %Value% it works. But users don't understand that. I want to have: on entering "Bla" result from the dataset 'MyBla', 'BlaBlubb'. At DevExpress there is this entry: https://supportcenter.devexpress.com...-or-like-value created 15 years ago...with further links. All are imho not purposeful. ...Endless loop from link to link. I have felt through all filter settings. Does anyone have any ideas. Thank you. Version: 21.2.9 CrossPost: germanDP https://www.delphipraxis.net/212875-devexpress-filterrow-ohne-wildcard.html#post1521131
-
welcome here... Here is the right place for programming with C++ or Delphi. Please make sure that you are always in the right subforum...
-
wuppdi Welcome Page for Delphi 11 Alexandria?
haentschman replied to PeterPanettone's topic in Delphi IDE and APIs
WP.gksoftPlugin280.bpl ...works, but the icons now imho 32x32 instead of 16x16. (Tree) I do not remember that they were so big. -
Some more fun with ChatGPT and Delphi
haentschman replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
...here we are now! Not personal ...for the current and the next generation. -
...correctly.
-
Hi... Sorry, but it is not the right company. That's where the developers get in their own way. Uniform styles are important to understand all "developers" and their code. The management must set the standard! Try to talk to the others about a simple standard (prefixes for components, meaningful variable names, begin/end styles - separate lines or not, CTRL+D for all...). What is the total number of lines of source code? Do you have a trainee for the implementation of the styleguide in the old code? no matter what you do... ...that is the problem! another one... PDF π ...great work! Manual_on_Object_Pascal_Style_Guide.pdf
-
The Delphi Certified Developer // To prepare for the exam
haentschman replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
DeepL knows " Resume" -
The Delphi Certified Developer // To prepare for the exam
haentschman replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
...for german users... what means "CV". Abbreviations are not always good... -
...and much faster! π₯± (code completion, find window etc.)
-
The Delphi Certified Developer // To prepare for the exam
haentschman replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
The Developer certificate is only valid for a limited time... Mine has already expired. Although I have been working in software development for years. Is it still like this? With the Master too? -
The Delphi Certified Developer // To prepare for the exam
haentschman replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
Hi... ...really? There are two types of exam: Delphi Certified Developer: via online / browser ... i have (exam time: ~1 hour) Delphi Master Certified Developer: ... Uwe has (exam: i dont know time and where) https://www.embarcadero.com/resources/embarcadero-certification-center ...what you want? -
Hi... It is not a good idea to keep data storage in a visual control. The JSON should be generated from the data source (class, csv etc.).
-
SQL: Qry := TFDQuery.Create(Self); Qry.Connection := Self.AC; Qry.SQL.Text := 'select * from Documents where OriginalFileName like :PAR'; Qry.ParamByName('PAR').AsString := '%1001\%'; // with "\" Qry.Open; Qry := TFDQuery.Create(Self); Qry.Connection := Self.AC; Qry.SQL.Text := 'select * from Documents where OriginalFileName like :PAR'; Qry.ParamByName('PAR').AsString := '%1001%'; // without "\" Qry.Open; ...it works...i not like guessing.
-
It is a basic problem with only text in the sql statement! SQL.Text: select A.ID,A.DistributorID,A.DocumentTypeString,A.DocumentCaption,A.OriginalFileName,A.SendTypeFolder, A.SendTypeUSB, A.SendTypeMail, A.ReceiptDate,A.ServiceDate, A.ReceiptNumber,A.Store,A.ReceiptReceiver,A.ServicePartner, A.AddDate,A.AddName,A.ModifiedName,A.ModifiedDate, D.Name1 as StoreName,D.Name2 as StoreName_1,D.LKZ as StoreCountry,D.PLZ as StorePostCode,D.Ort as StoreLocation, D.Strasse as StoreStreet,D.Telefon as StorePhone,R.Name1 as ReceiverReceiverName from Documents A full outer join ADR D on A.Store = D.ixADR full outer join ADR R on A.ReceiptReceiver = R.ixADR where A.OriginalFileName like :REN order by ID desc ... Qry.ParamByName('REN').AsString := '%[_]' + Pair.Key + '[_]' + Pair.Value + '%'; is from me in my the original code. Works! (FireDAC, MSSQL)