9,867,109 members (38,814 online)
Visit CodeProject.TV
Discuss CodeProject.TV
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
VB.NET questions
C#4.0 questions
C++ questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Mobile
VS 11 & .NET 4.5
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Component & Service Catalog
Competitions
News
The Insider Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
The Insider News
The Lounge
The Weird & The Wonderful
The Soapbox
Press Releases
Who's Who
Most Valuable Professionals
Company Listings
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
318 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Questions
Answers
Forum Messages
News Items
Catalog Items
Videos
Training Courses
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating Asc
Rating Desc
Title Asc
Title Desc
Author Asc
Author Desc
Date Created Asc
Date Created Desc
Date Modified Asc
Date Modified Desc
Price Asc
Price Desc
Duration Asc
Duration Desc
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Article License
All Licenses
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Catalog Category
All Categories
Books & Training
Charting & Graphing
Components, Controls, Libraries
Data Manipulation & Mining
Database Tools
Debugging
Documentation & Help
Financial, Math & Scientific
Frameworks & APIs
General Development Tools
GIS & Maps
Graphics & 3D Modeling
Hardware and Robotics
Hosting
IDEs
Imaging
Mobility
Multimedia
Networking
Performance and Profiling
Programming Languages
Project Life-cycle Management (ALM)
Reporting
Search
Security
Setup & Deploy
System Adminstration
Utilities
Virtualization
Web Design/Development
Catalog License
All Licenses
Commercial
Fully Function Evaluation version
Limited Functionality Trial
Limited Time Trial
Shareware
Free For Personal Use
Freeware
Page 1 of 7
Page Size:
10
·
25
·
50
Tag filtered by: convert
[x]
Generate PDF based on a Word document
by
Dave Kreskowiak
Answer
9 May 2013
license:
CPOL
Or, you could just do the entire thing in Word. What you're describing is called "Mail Merge" and you can print the entire document to a PDF "printer" without a single line of code.
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
PDF
convert
Word
Generate PDF based on a Word document
by
omarbench
Question
9 May 2013
license:
CPOL
Hi, I have a database(SQL Server) with thousands data items(each item is a trainee with all his informations), and a predefined word document as template, the requirement is - for each trainee- (Who's loggedon), fill corresponding data(trainee informations) into template fields, and generate...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
PDF
convert
Word
Help on code conversion
by
Sergey Alexandrovich Kryukov
Answer
2 May 2013
license:
CPOL
Please, avoid the questions on the translation from VB.NET to C# or back, because this all can be done automatically.You can use Reflector or its open-source replacement ILSpy or one of similar tools:http://en.wikipedia.org/wiki/.NET_Reflector[^],http://ilspy.net/[^].Additionally,...
General Programming
»
Uncategorised Quick Answers
»
General
C#
LINQ
VB
VB.NET
convert
Help on code conversion
by
Pheonyx
Answer
2 May 2013
license:
CPOL
Remove these two lines: Debug.Fail("ERROR : We should never get to AddToCart.aspx without a ProductId."); throw new Exception("ERROR : It is illegal to load AddToCart.aspx ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
LINQ
VB
VB.NET
convert
Help on code conversion
by
jamiebones
Question
2 May 2013
license:
CPOL
Please i was following along the Tailspinspywork tutorial on asp.net found on this url http://www.asp.net/web-forms/tutorials/tailspin-spyworks/tailspin-spyworks-part-5[^]. The tutorial is a C# tutorial and i was following along in visual basic cause but i am still a noob at visual basic.net. I...
General Programming
»
Uncategorised Quick Answers
»
General
C#
LINQ
VB
VB.NET
convert
how to convert string array to int array without using loops.
by
OriginalGriff
Answer
12 Apr 2013
license:
CPOL
No.Each string has to be converted to an int individually - if your list box contains the values 1, 2, and 3, then your strings will be "1", "2" and "3", which are no integers. They are the string representation of integers instead.To convert them, you need to convert each element to an...
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
arrays
how to convert string array to int array without using loops.
by
Faisal(mfrony)
Answer
12 Apr 2013
license:
CPOL
Array.ConvertAll(strArr ,p=>Convert.ToInt32(p));Hope this will Work
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
arrays
how to convert string array to int array without using loops.
by
Richard MacCutchan
Answer
12 Apr 2013
license:
CPOL
You cannot automatically convert an int to a string; the two are totally different types[^]. And, by extension, you cannot automatically convert an array of ints to an array of strings.
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
arrays
how to convert string array to int array without using loops.
by
Jayanta Chatterjee
Question
12 Apr 2013
license:
CPOL
Hi,I created a form in which, I have three listBoxes and one button. I put the integer value in listBox1 and ListBox2 dynamically(from user through textBoxes).I want, when i click on button1 first Concatenate the two listBox items in one string array and then it sort that values, and added...
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
arrays
VB.Net - Convert KeyCode
by
Sergey Alexandrovich Kryukov
Answer
10 Apr 2013
license:
CPOL
Please see more thoroughly: http://msdn.microsoft.com/en-us/library/windows/desktop/ms646293%28v=vs.85%29.aspx[^].This API works with virtual keys, same as, for example, .NET System.Windows.Forms.KeyCode. Those key codes are not scan codes, and not character codes as ASCII or Unicode...
General Programming
»
Uncategorised Quick Answers
»
General
VB
VB.NET
convert
VB.Net - Convert KeyCode
by
bEGI23
Question
10 Apr 2013
license:
CPOL
Hi people im trying to create an UI Application on which is shown what the User actually types and which will be shown on the Window of the Application, to say like a Bar on the top of the Desktop, on which the typed Keystrokes are presented and which will continuosly move from right to the left...
General Programming
»
Uncategorised Quick Answers
»
General
VB
VB.NET
convert
Best PPT to HTML5 Converter?
by
Hong NK
Answer
2 Apr 2013
license:
CPOL
If you are looking for command line converter for code integration, use SlideGo.com SDK. It also supports full Powerpoint features (animation, media, interaction...).
General Programming
»
Uncategorised Quick Answers
»
General
convert
Converting c++ structs to c#, how to do?
by
Edo Tzumer
Answer
18 Mar 2013
license:
CPOL
See Marshalling C++ array in struct to C# struct[^]Cheers, Edo
General Programming
»
Uncategorised Quick Answers
»
General
C++
C#
convert
structures
Converting c++ structs to c#, how to do?
by
GustavoUgioni
Question
18 Mar 2013
license:
CPOL
Hello guys, I need to use a C++ Dll at C#, so I figure that I need to re-write some structs and enums. I have this code at my header file in C++.#pragma mark STRUCTURES typedef void* QCam_Handle; typedef struct _TAG_CAM_SETTINGS_ID_GUID_STRUCT_ { uint32_t...
General Programming
»
Uncategorised Quick Answers
»
General
C++
C#
convert
structures
C# Console Project --> Problem adding Windows Forms
by
wingzero007
Answer
10 Mar 2013
license:
CPOL
By keeping the same project, you can change the output type:1. Go to the properties of your project (right click on the project in VS).2. In the context menu, choose properties.3. In the window that appears, Select the Application tab (Should be the first one by default).4. Change the...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Windows
convert
Forms
Console
C# Console Project --> Problem adding Windows Forms
by
F. ARO
Answer
10 Mar 2013
license:
CPOL
In your Program.cs You Must Run the GUI on another Thread :Just add For Exemple:Console.Write("Running the GUI...\nPress Enter To Abort"); new System.Threading.Thread(()=>{System.Windows.Forms.Application.Run(new ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Windows
convert
Forms
Console
C# Console Project --> Problem adding Windows Forms
by
source.compiler
Answer
10 Mar 2013
license:
CPOL
find main method wich is first method to start debug !write this line : System.Windows.Forms.Application.Run(new Form1()); // i consider Form1 is your windows form classthis line will make your windows form and will show it !do not forget to add System.Windows.Forms to your project...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Windows
convert
Forms
Console
C# Console Project --> Problem adding Windows Forms
by
Flo_89
Question
10 Mar 2013
license:
CPOL
Hello :)For testing purposes I created a C# ConsoleLine application. Now I want to do a GUI and so I choose Project --> Add component and added a "Windows Forms" element. But although there is no Console.WriteLine or something left he always opens the Console and he does not show my Windows...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Windows
convert
Forms
Console
How to Convert XLSX to XML in visual studion and C#
by
Edo Tzumer
Answer
25 Feb 2013
license:
CPOL
Hello Guilherme,There is no out of the box solution, as it is not clear what xml schema you need.However, that is fairly simple, since you can easily implement:1. reading the excel with C#2. create your xml file with C#Hers's an example for reading an excel:var fileName =...
General Programming
»
Uncategorised Quick Answers
»
General
C#
XML
convert
conversion
How to Convert XLSX to XML in visual studion and C#
by
Guilherme Bovo Fernandez
Question
25 Feb 2013
license:
CPOL
I need to convert some tables (XLSX) to XML using C# and Visual Studio 2010.And also I need to check if the column name are right, but my main problem is the conversion, I've found some solutions, but none worked.
General Programming
»
Uncategorised Quick Answers
»
General
C#
XML
convert
conversion
Best PPT to HTML5 Converter?
by
Katya Ivanova
Answer
24 Jan 2013
license:
CPOL
iSpring's PowerPoint to HTML5 converter[^]. Works great, keeps all animations + easy to use (just click on button within PowerPoint)
General Programming
»
Uncategorised Quick Answers
»
General
convert
How to convert a new windows console application into a windows service ?
by
vbtoan
Answer
22 Jan 2013
license:
CPOL
I did as above but the following error messageStarting a second message loop on a single thread is not a valid operation. Use Form.ShowDialog instead.in position Application.Run(new Form1());
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
Services
Console
How to convert a new windows console application into a windows form ?
by
ProgramFOX
Answer
22 Jan 2013
license:
CPOL
Hi,Have a look here:http://gregs-blog.com/2008/02/08/how-to-convert-a-console-app-into-a-windows-app-in-c/[^]http://gregs-blog.com/2008/02/09/how-to-convert-a-console-app-into-a-windows-app-in-c-part-two/[^]
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Application
convert
new
to
Console
How to convert a new windows console application into a windows form ?
by
vbtoan
Question
22 Jan 2013
license:
CPOL
using System;using System.Collections.Generic;using System.Text;using System.Net;namespace SpeedTest{ class Program { static void Main(string[] args) { Console.Title = "A simple speedtest app"; // the URL to...
General Programming
»
Uncategorised Quick Answers
»
General
Windows
Application
convert
new
to
Console
How to convert a new windows console application into a windows service ?
by
ProgramFOX
Answer
22 Jan 2013
license:
CPOL
Hi,Have a look at this articles about how to create a Windows Service:Creating a Basic Windows Service in...
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
Services
Console
How to convert a new windows console application into a windows service ?
by
vbtoan
Question
22 Jan 2013
license:
CPOL
using System;using System.Collections.Generic;using System.Text;using System.Net;namespace SpeedTest{ class Program { static void Main(string[] args) { Console.Title = "A simple speedtest app"; // the URL to...
General Programming
»
Uncategorised Quick Answers
»
General
C#
convert
Services
Console
digits to word converter in C
by
joshrduncan2012
Answer
18 Jan 2013
license:
CPOL
http://lmgtfy.com/?q=c%23+convert+digits+to+words[^]
General Programming
»
Uncategorised Quick Answers
»
General
C
convert
GimmeCode
Homework
NoEffort
numbers
arrays
words
Convert ASP.NET web page to PDF
by
Madhulika Satalkar
Answer
15 Jan 2013
license:
CPOL
plz suggest thnxi am using itextsharp for converting my asp page to pdf...............i am facing css issue as my page is in div structure..............also getting error also but getting error:Protected Sub btnExport_Click(sender As Object, e As EventArgs)Response.ContentType =...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
PDF
convert
How to convert PDF,Word,Excel to jpg in C#.NET
by
karthikelangoram
Answer
4 Jan 2013
license:
CPOL
Waste of TimePlese try other link
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
How to convert PDF,Word,Excel to jpg in C#.NET
by
kumaranand56
Answer
23 Dec 2012
license:
CPOL
How to Search words or contents from the entire website pages or documents uploaded on website and display the results as link in a search result page using ASP.NET Mvc3?
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
Data transport between apps without saving buffered file, in real time, how it is possible? "about:"(and others) pages in browser is generated, how it is possible?
by
Sergey Shoshin
Answer
22 Dec 2012
license:
CPOL
I found IE API: SHDocVw.InternetExplorer IE = new SHDocVw.InternetExplorer();SHDocVw.dll in system32 folder. or In MS VS Add reference... -> COM tab -> Microsoft Internet Controls.
General Programming
»
Uncategorised Quick Answers
»
General
convert
file
integration
Data
NET
Data transport between apps without saving buffered file, in real time, how it is possible? "about:"(and others) pages in browser is generated, how it is possible?
by
Sergey Shoshin
Answer
21 Dec 2012
license:
CPOL
Thanks for the answer.1) Yes, i talk about browser about pages, like this: http://s020.radikal.ru/i716/1212/fc/723071822ab1.jpg(It doesn't matter what browser). And how browser create them? Based on template in dll-resources?2) Yes, true. But how i can say to browser: "Open this...
General Programming
»
Uncategorised Quick Answers
»
General
convert
file
integration
Data
NET
Data transport between apps without saving buffered file, in real time, how it is possible? "about:"(and others) pages in browser is generated, how it is possible?
by
Christian Graus
Answer
19 Dec 2012
license:
CPOL
You mean 'about internet explorer' ? It's just generated by code in the exe. If you mean an about page that a site has, it's HTML on the site.You can keep data in memory without writing it to the file system, but you don't want to do that for too long. If the data is being moved in real...
General Programming
»
Uncategorised Quick Answers
»
General
convert
file
integration
Data
NET
Data transport between apps without saving buffered file, in real time, how it is possible? "about:"(and others) pages in browser is generated, how it is possible?
by
Sergey Shoshin
Question
19 Dec 2012
license:
CPOL
Hello! I create on C# library, which implement integration 2 Apps - KOMPAS 3D and Internet Explorer (Project's data, for example pics, displays in browser). The problem in transporting data (image of detail) without saving in such places as buffer, file on the disk, etc. 1) How can i...
General Programming
»
Uncategorised Quick Answers
»
General
convert
file
integration
Data
NET
Convert ms word document pdf issue.
by
Manikandan Hariharan
Answer
12 Dec 2012
license:
CPOL
Hi .I am using the third party component ABCPDF and it is license one.I am getting an error "Retrieving DOM failed due to access denied "
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
to
Word
Convert ms word document pdf issue.
by
Christian Graus
Answer
12 Dec 2012
license:
CPOL
What does 'does not work' mean ? It looks like you're using a third party component ( as you would need to ). Is it installed/licensed on the server ? If it is, then there's nothing else we could possibly guess without seeing the error message, to help you.
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
to
Word
Convert ms word document pdf issue.
by
Manikandan Hariharan
Question
12 Dec 2012
license:
CPOL
Hi .,I am using this code for converting word document to pdf. this code works in local system but it is not working in server windows server 2008 .Can anyone help on this ?Dim abcDoc As WebSupergoo.ABCpdf7.Doc = Nothing Try abcDoc = New WebSupergoo.ABCpdf7.Doc() ...
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
to
Word
How to generate color name from RGB Values?
by
Suvabrata Roy
Answer
12 Dec 2012
license:
CPOL
http://www.cambiaresearch.com/articles/25/convert-hex-string-to-dotnet-color[^]Enjoy
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
C#
ASP.NET
C#
Color
convert
generator
Named
conversion
How to generate color name from RGB Values?
by
Deenuji
Question
12 Dec 2012
license:
CPOL
Actually i using color extender tool to generate the colors....while i'm picking the colors, this tools return only hexadecimal values ...but i need to generate color name too...How to generate color name from this hex or RGB values????
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
C#
ASP.NET
C#
Color
convert
generator
Named
conversion
How to generate color name from RGB Values?
by
Zaf Khan
Answer
12 Dec 2012
license:
CPOL
You will have to cross reference the RGB values in a lookup table which contains the RECOGNISED colors
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
C#
ASP.NET
C#
Color
convert
generator
Named
conversion
Convert to image using asp.net
by
venkyb506
Question
7 Dec 2012
license:
CPOL
Hello,I need code for how to convert rich textbox/free text box content(which contains text as well as images) to image file and save it in my local system using asp.net. Please help me to convet this.thanks in advance...sample code:protected void Button1_Click(object sender,...
General Programming
»
Uncategorised Quick Answers
»
General
convert
how to convert hex to rgb color code in asp.net
by
Deenuji
Answer
7 Dec 2012
license:
CPOL
Solution:Write this coding in button or whatever... System.Drawing.Color MyColor = System.Drawing.Color.FromArgb(val);
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
Convert to image using asp.net
by
nagalkumar
Answer
7 Dec 2012
license:
CPOL
Follow this link you get an idea. Convert Text to Image[^]http://codesimplified.com/2011/12/13/convert-text-in-to-image-using-c/[^]http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html[^]
General Programming
»
Uncategorised Quick Answers
»
General
convert
how to convert hex to rgb color code in asp.net
by
Richard MacCutchan
Answer
7 Dec 2012
license:
CPOL
Why have you posted this question when you have already been given the answer in the C# forum? Please post in one place only, and do not spam the forums.
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
how to convert hex to rgb color code in asp.net
by
Zafar Sultan
Answer
7 Dec 2012
license:
CPOL
Have a look at this link:http://snipplr.com/view/13358/[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
how to convert hex to rgb color code in asp.net
by
CodeNinja-C# (Looking for a Great opportunity)
Answer
6 Dec 2012
license:
CPOL
string hex = "0x333366";int r = Convert.ToInt32(hex.Substring(2,2),16);int g = Convert.ToInt32(hex.Substring(4,2),16);int p = Convert.ToInt32(hex.Substring(6,2),16);--SJ
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
how to convert hex to rgb color code in asp.net
by
IpsitaMishra
Answer
6 Dec 2012
license:
CPOL
Try this I hope It will help youHow to convert Hexadecimal Color to RGB color (24 Bit)[^].keep smiling :):):) haapy coding:)
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
how to convert hex to rgb color code in asp.net
by
Deenuji
Question
6 Dec 2012
license:
CPOL
Actually i'm using color extender to pick the color in asp.net...but while i'm picking the color it generate the hex decimal values....but i need only rgb values...Pls any one guide me....
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
Color
convert
Code
conversion
code-generation
convert detailview to pdf
by
ridoy
Answer
22 Nov 2012
license:
CPOL
http://csharpdotnetfreak.blogspot.com/2012/06/create-export-detailsview-to-pdf-aspnet.html[^]
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
to
convert detailview to pdf
by
monpara rashmikant
Question
22 Nov 2012
license:
CPOL
this is my codeResponse.ContentType = "application/pdf"; Response.AddHeader("content-disposition", "attachment;filename=UserDetails.pdf"); Response.Cache.SetCacheability(HttpCacheability.NoCache); StringWriter sw = new StringWriter(); HtmlTextWriter hw = new...
General Programming
»
Uncategorised Quick Answers
»
General
PDF
convert
to
Page 1 of 7
1
2
3
4
5
6
7
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web01 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid