chedderslam
Programmer
I am trying to save the contents of a control to a text(.xml) file.
I have tried the following:
string s_file_name, s_quote_response
s_file_name = 'C:\quote1.xml'
s_quote_response = tab_data.tabpage_result.mle_1.text
s_quote_response.saveas(s_file_name,"","")
I have also tried this:
string s_file_name, s_quote_response
s_file_name = 'C:\quote1.xml'
tab_data.tabpage_result.mle_1.saveasascii(s_file_name,"","")
Please help.
I have tried the following:
string s_file_name, s_quote_response
s_file_name = 'C:\quote1.xml'
s_quote_response = tab_data.tabpage_result.mle_1.text
s_quote_response.saveas(s_file_name,"","")
I have also tried this:
string s_file_name, s_quote_response
s_file_name = 'C:\quote1.xml'
tab_data.tabpage_result.mle_1.saveasascii(s_file_name,"","")
Please help.