Posts by Thiago Beltrame • 73 points
4 posts
-
3
votes3
answers7876
viewsQ: Read XML with Xmldocument in Delphi
I have this xml, I don’t know how to read and get the values. Someone could help me? <?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope…
-
1
votes1
answer296
viewsQ: How to use Autofit in C#?
I am exporting data to an Excel spreadsheet and am unable to use Autofit, someone could help me? Code: public void exportarExcel(InformacaoDB info, string nomeArquivo) {…
-
2
votes1
answer1315
viewsQ: Error while exporting to Excel (Corrupted file)
I am making an application to export the result of a query sql for Excel. After the file created the time I will open it gives a corrupt file error. SaveFileDialog sfd = new SaveFileDialog();…
-
0
votes1
answer1278
viewsQ: How to put an SQL command in a variable
I have a following SQL command and I need to put it inside a variable in SQL. The code is this. WITH DB_CPU_Stats AS (SELECT SUM(total_worker_time) AS [CPU_Time_Ms] FROM sys.dm_exec_query_stats…