Click here to Skip to main content
16,005,316 members
Home / Discussions / C#
   

C#

 
AnswerUse Webservices Pin
Ennis Ray Lynch, Jr.17-Jul-06 10:24
Ennis Ray Lynch, Jr.17-Jul-06 10:24 
AnswerRe: Client/Server App. Event Notification Pin
led mike17-Jul-06 19:11
led mike17-Jul-06 19:11 
QuestionDevelope a telephone system in c# Pin
ystar17-Jul-06 10:11
ystar17-Jul-06 10:11 
AnswerTAPI Pin
Ennis Ray Lynch, Jr.17-Jul-06 10:23
Ennis Ray Lynch, Jr.17-Jul-06 10:23 
AnswerRe: Develope a telephone system in c# Pin
ystar17-Jul-06 10:34
ystar17-Jul-06 10:34 
GeneralRe: Develope a telephone system in c# Pin
Dave Kreskowiak17-Jul-06 12:12
mveDave Kreskowiak17-Jul-06 12:12 
AnswerRe: Develope a telephone system in c# Pin
Divyang Mithaiwala17-Jul-06 18:23
Divyang Mithaiwala17-Jul-06 18:23 
QuestionProblem accessing an object Pin
Goalie3517-Jul-06 9:04
Goalie3517-Jul-06 9:04 
A co-worker of mine is having trouble with his C#. Unfortunately, I don't deal with C# all too much so I'm not entirely sure where the error is taking place.
He's having trouble with a line of code used to create a Crystal Report. He's trying to call the .ExportOptions property of the ReportClass object, however for some reason, visual studio isn't even providing the dropdown to access the different ReportClass properties. It's not recognizing repClass as a ReportClass variable. Any idea why?

-------------------------------------------------------------------
public partial class _Default : System.Web.UI.Page
{
private static Data_PSPP oData_PSPP;
private string sID = "";
private ReportClass repClass = new ReportClass();

protected void Page_Load(object sender, EventArgs e)
{
DataTable dtSource = new DataTable();
oData_PSPP = new Data_PSPP();

this.sID = Session["ProjectID"].ToString();

if (!IsPostBack)
{
ExportOptions objExportOptions = new ExportOptions();
DiskFileDestinationOptions objDiskFileDestinationOpions = new DiskFileDestinationOptions();
string ExportFileName = "";

//Problem line.... "repClass" doesn't provide access to ".ExportOptions"
///////////////////////////////////////////////////////////////
objExportOptions = repClass.ExportOptions
//////////////////////////////////////////////////////////////

}


}
}
-----------------------------------------------------------
Thanks in advance.

-Goalie35
AnswerRe: Problem accessing an object Pin
Josh Smith17-Jul-06 9:07
Josh Smith17-Jul-06 9:07 
GeneralRe: Problem accessing an object Pin
Goalie3517-Jul-06 9:15
Goalie3517-Jul-06 9:15 
GeneralRe: Problem accessing an object Pin
Josh Smith17-Jul-06 9:27
Josh Smith17-Jul-06 9:27 
AnswerRe: Problem accessing an object Pin
Wesley Samuel17-Jul-06 20:52
Wesley Samuel17-Jul-06 20:52 
QuestionPictureBox problem Pin
_tasleem17-Jul-06 6:31
_tasleem17-Jul-06 6:31 
AnswerRe: PictureBox problem Pin
Dave Kreskowiak17-Jul-06 6:54
mveDave Kreskowiak17-Jul-06 6:54 
GeneralRe: PictureBox problem Pin
Paul Conrad17-Jul-06 7:57
professionalPaul Conrad17-Jul-06 7:57 
QuestionCollectionEditor question. [modified] Pin
Vertyg017-Jul-06 5:45
Vertyg017-Jul-06 5:45 
Questioninstallation error after upgrade to VS 2005 Pin
econnor17-Jul-06 5:29
econnor17-Jul-06 5:29 
Questionaddition to post.. Pin
econnor17-Jul-06 5:52
econnor17-Jul-06 5:52 
QuestionFop source stepping Pin
Support12317-Jul-06 5:21
Support12317-Jul-06 5:21 
AnswerRe: Fop source stepping Pin
Dave Kreskowiak17-Jul-06 6:56
mveDave Kreskowiak17-Jul-06 6:56 
GeneralRe: Fop source stepping Pin
Support12317-Jul-06 20:21
Support12317-Jul-06 20:21 
GeneralRe: Fop source stepping Pin
Dave Kreskowiak18-Jul-06 1:28
mveDave Kreskowiak18-Jul-06 1:28 
GeneralRe: Fop source stepping Pin
Support12318-Jul-06 3:50
Support12318-Jul-06 3:50 
QuestionProgram Mouse(Cursor) Pin
Cassiopeiaxy17-Jul-06 4:23
Cassiopeiaxy17-Jul-06 4:23 
AnswerRe: Program Mouse(Cursor) Pin
Josh Smith17-Jul-06 4:53
Josh Smith17-Jul-06 4:53 

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.