15,991,401 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by pjhelp (Top 16 by date)
pjhelp
2-Jun-11 14:33pm
View
Thank U very much Venkat :)
pjhelp
2-Jun-11 14:16pm
View
Thanks U very much Anna.
pjhelp
2-Jun-11 14:16pm
View
Dear Dave,
We are expecting your guide lines [if you want to share like Resmi Anna (above)] on this concept.Thanks
pjhelp
2-Jun-11 2:39am
View
Hi SA,
Please try to share your good knowledge if you have and let other to share their knowledge.I thing its a good way to enrich our knowledge.So please.
Thanks
pjhelp
19-Apr-11 8:44am
View
Thanks for your valuabale openion Griff.
But i able to resolve the issue.And its working fine.
Sorry to disturb you.
Thanks
pjhelp
19-Apr-11 8:33am
View
Thanks for your reply.
But is this able to copy data from HTML to an EXLX formated file.And also is this indipendent of Office 2007 in the machine.I mean, can it be able to create Excel file with out MS Excel.
pjhelp
18-Apr-11 7:28am
View
Thanks for your guidance .Now i'm not getting any error ,but getting an Worning as -
warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
Can you please guide me how can i avoid this Worning
Thank you .
pjhelp
18-Apr-11 7:25am
View
Thanks a lot for your quick response.
Here i'm not trying to change the exact string.If you see carefully you can find
i'm changing to "HTML Files (*.xlsx)|*.xlsx|All Files (*.*)|*.*||" from "HTML Files (*.xls)|*.xls|All Files (*.*)|*.*||" accoring to the requirement.
Thanks
pjhelp
18-Apr-11 6:44am
View
Thanks a lot for your quick response.
But while i'm assigning different string values ,its giving 'String length' error. Let me be perticular about the String as below -
static char BASED_CODE szFilter[] = "HTML Files (*.xls)|*.xls|All Files (*.*)|*.*||";
if (AppMarketID == 12)
{
szFilter = "HTML Files (*.xls)|*.xls|All Files (*.*)|*.*||";
}
CFileDialog dia(FALSE, "", default_name, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilter);
I’m getting error as -
error C2440: '=' : cannot convert from 'const char [49]' to 'char [47]'
pjhelp
18-Apr-11 5:37am
View
Thanks a lot for your quick response.
Can you please tell me how to get the DLL from that site.Because i didn't find any link to download that DLL. Can you please guide me
Thanks
pjhelp
18-Apr-11 2:43am
View
Hi Mr.Pand,
Thanks for your reply.
Before you i'hd tried with this link. But i faced problem how to impliment in my application.I'hd gone through it's site,but i didn't find any proper step for implimentain.
Can please gide how to use that 'ExcelWriter' in my existing C# project. I mean to say hoe to get that Library & steps to add this Library in .Net Environment. Please guide me if you have implimented it in past.
Thank U :)
pjhelp
13-Apr-11 2:36am
View
Valery,
Can we generate XLS file even though Microsoft EXCLE is not exist in client machine programatically. Whether the above code stuff can generate for us ?
Right now i don't have a machine which is not having MS EXCEL ,to test this.If you have any concrete idea then kindly please let me know soon. Thaks again.
pjhelp
13-Apr-11 2:28am
View
Thank you Valery.
Your guide lines helped me a lot to resolve my issue.
pjhelp
30-Mar-11 6:03am
View
Yes Dave, I came to know "an .xlsx file is opened strictly as a Zip package used by 2007 office applications." . I also followed your suggestion and observed the same.
Still i'm hoping there may be any indirect way to create an XLSX file from a HTML file.Kindly please update me if you have any new idea.
And thanks for your response.
pjhelp
21-Mar-11 8:37am
View
Here how i'm using this method -
File.Copy(@"C:\\Program Files\\Proj\\Configurations\\XYZ.html", @"C:\\Program Files\\Proj\\Configurations\\ABC.xlsx", true);
ProcessStartInfo startInfo = new ProcessStartInfo("Excel.exe");
startInfo.Arguments = '"' + "C:\\Program Files\\Proj\\Configurations\\ABC.xlsx" + '"';
Process.Start(startInfo); // It opens this 'ABC.xlsx' file
pjhelp
21-Mar-11 8:17am
View
Its a MFC application but using c# code.And its running in Microsoft Visual Studio 2008
Show More