Click here to Skip to main content
16,007,163 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to convert from .DOC to .PDF, please help me .......... Pin
leppie16-Aug-03 4:31
leppie16-Aug-03 4:31 
AnswerRe: How to convert from .DOC to .PDF, please help me .......... Pin
William O'Malley18-Aug-03 1:33
sussWilliam O'Malley18-Aug-03 1:33 
QuestionHow do I use WSAStartup() in C# ?? Pin
IrishSonic15-Aug-03 23:01
IrishSonic15-Aug-03 23:01 
AnswerRe: How do I use WSAStartup() in C# ?? Pin
Rein Hillmann15-Aug-03 23:11
Rein Hillmann15-Aug-03 23:11 
AnswerRe: How do I use WSAStartup() in C# ?? Pin
Burt Harris16-Aug-03 15:49
Burt Harris16-Aug-03 15:49 
GeneralRe: How do I use WSAStartup() in C# ?? Pin
IrishSonic16-Aug-03 22:22
IrishSonic16-Aug-03 22:22 
GeneralDEPLOYMENT Pin
eggie515-Aug-03 22:56
eggie515-Aug-03 22:56 
GeneralRe: DEPLOYMENT Pin
apferreira16-Aug-03 3:22
apferreira16-Aug-03 3:22 
XP visual styles

If you are using NET Framework 1.0 you have to add a manifest file to your project and choose the build action of that file to content. The manifest file should follow the naming convention yourappname.exe.manifest and its content should include the following:

<?xml version="1.0" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<description>Insert Application Name/Description here</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
publicKeyToken="6595b64144ccf1df"
language="*"
processorArchitecture="X86" />
</dependentAssembly>
</dependency>
</assembly>

If you are using .NET Framework 1.1 either follow the same method or use Application.EnableVisualStyles() method.

sql 2000 database

Your setup project has to check if SQL Server or MSDE is installed before it actually installs your program. This is done by creating a Launch Condition in the setup project. You also need to create the database on the user's computer. This is done by creating a Custom Action in your setup project.

Also, in case SQL Server or MSDE is not present, you might want to include a MSDE installation in your setup project. This can also be done creating a Custom Action in your setup project.
GeneralRe: DEPLOYMENT Pin
eggie516-Aug-03 12:20
eggie516-Aug-03 12:20 
GeneralAccessing protected members Pin
Alex Korchemniy15-Aug-03 19:23
Alex Korchemniy15-Aug-03 19:23 
GeneralRe: Accessing protected members Pin
Nnamdi Onyeyiri16-Aug-03 22:22
Nnamdi Onyeyiri16-Aug-03 22:22 
GeneralRe: Accessing protected members Pin
Alex Korchemniy18-Aug-03 6:02
Alex Korchemniy18-Aug-03 6:02 
Generalfileshare Pin
grv57515-Aug-03 18:49
grv57515-Aug-03 18:49 
GeneralRe: fileshare Pin
Ista16-Aug-03 16:23
Ista16-Aug-03 16:23 
GeneralRe: fileshare Pin
Anonymous25-Aug-03 10:25
Anonymous25-Aug-03 10:25 
GeneralRe: fileshare Pin
Ista25-Aug-03 15:11
Ista25-Aug-03 15:11 
Generalgetting attribute values from AssemblyInfo.cs Pin
zuhx14-Aug-03 9:47
zuhx14-Aug-03 9:47 
GeneralRe: getting attribute values from AssemblyInfo.cs Pin
Burt Harris16-Aug-03 15:58
Burt Harris16-Aug-03 15:58 
GeneralCopying data to bytes for sockets Pin
NorthWoodsman14-Aug-03 9:35
NorthWoodsman14-Aug-03 9:35 
GeneralRe: Copying data to bytes for sockets Pin
Rein Hillmann15-Aug-03 23:14
Rein Hillmann15-Aug-03 23:14 
GeneralProgramaticaly select a listview item Pin
Manster14-Aug-03 8:31
Manster14-Aug-03 8:31 
GeneralRe: Programaticaly select a listview item Pin
Ista14-Aug-03 8:36
Ista14-Aug-03 8:36 
GeneralRe: Programaticaly select a listview item Pin
Manster14-Aug-03 8:50
Manster14-Aug-03 8:50 
GeneralRe: Programaticaly select a listview item Pin
Bo Hunter14-Aug-03 9:00
Bo Hunter14-Aug-03 9:00 
GeneralRe: Programaticaly select a listview item Pin
Manster14-Aug-03 9:12
Manster14-Aug-03 9:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.