Questions tagged as 'delphi'

1
answer

How to find out the name of the functions of a DLL?

I have already used the DLL Export , Dependency Walker , dumpbin , PE Explorer and the result for several DLLs which I need to use is always the same with two functions: CLRRP and GETRP .... without parameters. Iknowthelib...
asked by 30.06.2017 / 13:18
2
answers

DelphiXE5 X Permission Administrator

I need to run a program in Delphi as Administrator, I've already put the manifest file, and it still does not work, it follows my manifest file. <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-micr...
asked by 18.09.2014 / 16:49
3
answers

Reading in Delphi generated XML in Excel

I am generating an XML by Excel itself (file of type XML Spreadsheet 2003). The generated file has the following XML data pattern: <Row> <Cell><Data ss:Type="String">Williams</Data></Cell> <Cell ss:StyleID="...
asked by 30.06.2014 / 15:49
1
answer

How to return the image converted to base64 in Postman [closed]

I have Web Service REST Server , I need to traffic a web service image to the client, when the client requests a certain image, the web service converts to base64 and sends it to the client. I'd like to know what I'm doing to tes...
asked by 14.10.2016 / 18:38
2
answers

Create dll in C # and use in Delphi 7

I need to create a C # dll so I can use it in delphi. I've tried the following: I created a basic dll with a sum method, but calling it in delphi does not return anything, it would be like the created method did not exist. Below the c...
asked by 02.09.2016 / 15:52
1
answer

How to implement a process queue in Delphi 6?

How to implement a process queue in Delphi 6 as the TThread.Queue of the newer versions? What I need is to implement a queue for logging with Delphi 6. In newer versions I have the ability to use: procedure TFormClient.QueueLogMs...
asked by 25.06.2014 / 15:53
3
answers

Use of parameters in the "in" clause in a TIBQuery

I have the following SQL command in the SQL property of a TIBQuery component in Delphi. SQL command used in the parameterized component: select pro_codigo, pro_nome from produtos where pro_fis_codigo = :fis_codigo and pro_bloqueado...
asked by 11.06.2014 / 14:17
1
answer

How to use TFDJSONDataSets in Delphi XE4?

Explanation Today I was seeing an example called FireDACJSONReflect in the Samples folder of Delphi XE6 and I saw that it was very interesting how the server communicated with the client and I would like to use this medium in my applic...
asked by 19.09.2014 / 16:03
1
answer

Read Ini from a site

I want to read the ini file of a website, but I can not. I tried this way: inicheck := 'http://pokestage.ddns.net/patch/CHECK.INI'; conf2 := TIniFile.Create(IdHTTP3.Get(inicheck)); version2 := conf2.ReadString('CONFIG', 'TVERSION', ''); But...
asked by 17.10.2014 / 14:50
1
answer

D7Zip file list

I'm using D7Zip ( link ) to extract files, and would like to get the entire list of files of the compressed file. In the documentation, I found this: with CreateInArchive(CLSID_CFormat7z) do begin OpenFile('c:\test.7z'); for i := 0 to N...
asked by 18.10.2014 / 19:32