How can we Export runtime Trace32 watch window data to any file format? [closed] - trace32

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 months ago.
Improve this question
I have total 100 variables which are continuously updated in Trace32 during runtime. I wanted to export all the 100 variables to log file continuously.
I have used below T32 commands to copy watch window variables to a text file.
PRinTer.OPEN "Testing\varwatch.txt" ASCIIE
WinPRT var.watch /ALL
PRinTer.CLOSE
I am unable to export complete data during runtime.

Related

How to correctly put share point link to the Power Query to get the excel file [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
How to correctly put share point file path here to use it further ?
it is in the first (Source ) step, so I tried to watch some advices but it didn't work. How can I connect excel file from sharepoint in my Power Query Source step?

how to know how many device connectd to sqlserver remotly [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
hello i have a program linked with mysql server remotly
i want to know devices connected number ?
It's unlikely you can count devices, however there is a system table information_schema.processlist which shows MySQL server process list, you can count hosts there. See details here on required privileges and fields.

How to access csv file data in django? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want a webpage in django that accepts csv file from the user and need to process that data.could you please help me
http://docs.python.org/library/csv.html
Python has builtin library to parsing csv file and process data of csv file according to your logic

How to read excel file in emberjs [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am making a desktop app using ember.js and electron. I need to read data from excel file.
Can anyone give me simple code snippet for this? Are there any external libraries for this purpose?
You can use js-xlsx. Add it as bower dependecy and add its imports to your ember-cli-build file as:
app.import('bower_components/js-xlsx/dist/jszip.js');
app.import('bower_components/js-xlsx/dist/xlsx.min.js');
Handle it as the documentation's parsing-workbooks section shows. (handleFile function is explaining it well.)

Edit and Update data for specific row/column of csv file MFC [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How to edit and update data in csv file MFC. I am able to read data from csv file using ReadString().
void ModifyCSVFile(){
.....
}
After you ReadString(), you modify it to your liking and write to another file using WriteString(). When you are done, delete the original file and rename the new one.
If you simply want to replace some symbols with the same number of different symbols, you can do that in place.