Click here to Skip to main content
15,916,432 members
Home / Discussions / C#
   

C#

 
GeneralRe: Resource assembly on CD Pin
Bojan Rajkovic17-Aug-05 13:26
Bojan Rajkovic17-Aug-05 13:26 
GeneralRe: Resource assembly on CD Pin
gnjunge17-Aug-05 21:44
gnjunge17-Aug-05 21:44 
GeneralRe: Resource assembly I Pin
Anonymous18-Aug-05 12:26
Anonymous18-Aug-05 12:26 
GeneralOutOfLicenseException Pin
V.17-Aug-05 1:55
professionalV.17-Aug-05 1:55 
GeneralDirectory Parsing Pin
sean_mufc17-Aug-05 0:21
sean_mufc17-Aug-05 0:21 
Questionhow to get the user connected to windows Pin
fady_sayegh17-Aug-05 0:12
fady_sayegh17-Aug-05 0:12 
AnswerRe: how to get the user connected to windows Pin
mmikey717-Aug-05 0:56
mmikey717-Aug-05 0:56 
GeneralExport a crystal report Pin
sevan17-Aug-05 0:05
sevan17-Aug-05 0:05 
HI! does anyone out there knows what dll is needed in order to
export a crystal report file to a txt file.

i wrote this code, i can only export report to
"PDF, Excel, Word Doc, RTF Doc,HTML 3.2, HTML 4.0 or CrystalReport"

// The path/location where the exported file will be saved
string exportFilePath = ALOHA_PATH+"\\RPTFOH\\Report1.DOC";

// Create an instance of the untyped report object
ReportDocument oRpt = new ReportDocument();

// Load the report from disk
oRpt.Load(@"C:\Aloha\RPTFOH\Report_1.rpt");

// Set the options for saving the exported file to disk

DiskFileDestinationOptions oDest = new DiskFileDestinationOptions();
oDest.DiskFileName = exportFilePath;

// Set the exporting information
ExportOptions oExport = oRpt.ExportOptions;

// Set the destination options
oExport.DestinationOptions = oDest;

// Set the location, this can be:
// DiskFile, ExchangeFolder, MicrosoftMail or NoDestination

oExport.ExportDestinationType = ExportDestinationType.DiskFile;

// Set the Export type, this can be:
// PDF, Excel, Word Doc, RTF Doc,
// HTML 3.2, HTML 4.0 or CrystalReport

oExport.ExportFormatType = ExportFormatType.WordForWindows;
// Call the Export method to export the report
oRpt.Export();

thx

GeneralRe: Export a crystal report Pin
User 167325217-Aug-05 2:45
User 167325217-Aug-05 2:45 
GeneralFolderBrowserDialog ShowNewFolderButton=false Pin
Navees Ahmed16-Aug-05 23:40
Navees Ahmed16-Aug-05 23:40 
GeneralRe: FolderBrowserDialog ShowNewFolderButton=false Pin
Dave Kreskowiak17-Aug-05 4:21
mveDave Kreskowiak17-Aug-05 4:21 
GeneralPlz help .. its urgent... Pin
ashkitt16-Aug-05 23:17
ashkitt16-Aug-05 23:17 
GeneralRe: Plz help .. its urgent... Pin
azola16-Aug-05 23:39
azola16-Aug-05 23:39 
GeneralRe: Plz help .. its urgent... Pin
Anonymous16-Aug-05 23:42
Anonymous16-Aug-05 23:42 
GeneralRe: Plz help .. its urgent... Pin
sean_mufc17-Aug-05 0:28
sean_mufc17-Aug-05 0:28 
GeneralRe: Plz help .. its urgent... Pin
sean_mufc17-Aug-05 0:33
sean_mufc17-Aug-05 0:33 
Generalasp.net web aplication. using C# Pin
ashkitt16-Aug-05 23:15
ashkitt16-Aug-05 23:15 
GeneralRe: asp.net web aplication. using C# Pin
Dave Kreskowiak17-Aug-05 4:18
mveDave Kreskowiak17-Aug-05 4:18 
Generalstoring application settings Pin
Mridang Agarwalla16-Aug-05 23:09
Mridang Agarwalla16-Aug-05 23:09 
GeneralRe: storing application settings Pin
User 167325217-Aug-05 2:53
User 167325217-Aug-05 2:53 
GeneralProperty Grid Pin
mictenu16-Aug-05 22:57
mictenu16-Aug-05 22:57 
GeneralIcon from embedded resource Pin
Mridang Agarwalla16-Aug-05 22:54
Mridang Agarwalla16-Aug-05 22:54 
GeneralRe: Icon from embedded resource Pin
Bojan Rajkovic17-Aug-05 13:28
Bojan Rajkovic17-Aug-05 13:28 
QuestionHow to get Computers List in LAN using c# Pin
prasanna_ids16-Aug-05 22:51
prasanna_ids16-Aug-05 22:51 
AnswerRe: How to get Computers List in LAN using c# Pin
S. Senthil Kumar17-Aug-05 0:48
S. Senthil Kumar17-Aug-05 0:48 

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.