Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ghesse
  • Content: Threads
  • Order by date
  1. ghesse

    Div Height

    Hello, I have a sidebar that is supposed to span the length of the document on the left side of the document. The problem is I've set the size of the DIV that contains the sidebar to 100% and the table that contains the sidebar code to 100% as well. The sidebar only occupies the viewport...
  2. ghesse

    doPostBack in parent window from child window

    Hi, I have a listbox with a bunch of user created items in it. When the user goes to fill out the form that this listbox is in, I want to give them the option of creating a new item. What I had planned was opening a new window with the form that user goes through to create these items, then...
  3. ghesse

    IE Expressions

    Hello, I'm developing an application for IE 5.5+ only. Because of this, I cannot use the position:fixed property of CSS to make a floating div that stays in a static position(relative to the viewport) even when the user scrolls up and down on the page. Every example I've seen has just been...
  4. ghesse

    A tough question regarding dynamic controls

    Hello, Here's a simple version of what I have: protected PlaceHolder myph; public int MyProperty { get { if( ViewState["myprop"] == null ) ViewState["myprop"] = 1; return Int32.Parse(ViewState["myprop"].ToString()); } set {...
  5. ghesse

    Value not correct in OnInit

    Hi, I set a value of a property in the Page_Load event and then on a postback the value is not correct in the OnInit event. Can someone please tell me how to fix this? private int _myprop = -1; public int myproperty { get{ return _myprop; } set{ _myprop = value; } override protected void...
  6. ghesse

    CSS in Crystal Reports

    Hello, Crystal Reports .NET integrated in ASP.NET pages. I'm trying to get my font to change on my objects in a report using a CSS. I'll give you these code segments: This is my style sheet code in aspx page: <STYLE> .mycss { background-color:808080; border-color:000000; color:000000...
  7. ghesse

    Formatting A Number in a Text Field

    Hi, This goes back to an issue I've already posted on so I'll just do a copy and paste to catch everyone up on it. <paste> Crystal Reports .NET integrated in aspx pages. I am using a group expert in several of my reports. The group name and group count act as hyperlinks when a report is...
  8. ghesse

    How do I disable group hyperlink?

    Hello, I've been battling with this one all day. There's no solution out there that I can find. Crystal Reports .NET integrated in aspx pages. I am using a group expert in several of my reports. The group name and group count act as hyperlinks when a report is generated. When you click...
  9. ghesse

    The request could not be submitted for background processing

    Hello, I'm using Crystal Reports .NET in ASP.NET pages. We've deployed this project twice now as well as having it run on our development machines. We just deployed it to a new server then I get this error: Error in File {Physical path}\{reportfile}.rpt: The request could not be submitted...
  10. ghesse

    static help...

    Hello, I have a problem, how do I access static variables outside of a class? Here's some sample code: public class Resource { public static string var1; public static string var2; public Resource() { Resource.var1 = &quot;Hello&quot;; Resource.var2 = &quot;World&quot;; }...
  11. ghesse

    A little theory please: passing objects to functions

    Hello, I was just wondering how objects are handled when they are passed to a function. By default, is a copy made of the object inside of the function or are they passed by ref. Thanks, ghesse
  12. ghesse

    Alternative Development Environments

    Hello, Are any of you aware of an alternative development environment to MS Visual Studio .NET? Ideally I'd like it to be color encoded and have some form of intelli-sense(that great feature in VS.NET that lists members, functions, etc after you place a &quot;.&quot; behind an object)...
  13. ghesse

    Disable Group Drill Down

    Hello, I am using Crystal Reports .NET in an asp.net application. I have a problem with a couple of my reports that are grouped. When the reports are generated the group name field acts as a hyperlink. When the mouse is dragged over it the text becomes underlined. If you click on the text...
  14. ghesse

    Properties and OnClick

    Hello, I'm having an issue here. In one of my codebehind files I have a property for the class. When the page loads and the user interacts with the page that property is bound to change value. My problem is when a user presses a particular button the original value of the property is used...
  15. ghesse

    User Control Inside of a User Control

    Hello, I have a user control that's used for selecting a date range. I've placed another user control inside of that user control to generate a report from the date range selected. When the user actually finishes the form and wants to generate the report, the properties of the second user...
  16. ghesse

    Page Number and Number of Pages

    Hello, I've built a custom toolbar for navigating my reports. The only piece I've yet to build is displaying the number of pages in the report. I need this not only to inform the user how big the report is but also to deactivate the navigation buttons such as the back buttons. Any help would...
  17. ghesse

    Crystal SQL Expression Formulas

    Hello, I'm using CR.NET and my report uses a stored procedure on SQL2000 as it's data source. I want to add a Crystal SQL Expression Formula object to my report but I don't see it on the Field Explorer. All my refrence books show it in there, what I am I doing wrong? How do I get it to...
  18. ghesse

    Report Binding with a Virtual Path?

    Hello, I'm trying to stay away from binding a report with it's physical path. Is there a way to bind an untyped report with a virtual path, like \\myserver\myapp\myreport.rpt? I can't use strongly typed reports because I'm not developing inside of VS.NET and there's not a &quot;project&quot...
  19. ghesse

    Tuning Off Code behind in VS.NET

    Hello, I was wondering if any of you know how to turn off the default code behind mode that Visual Studio .NET has set up. Thanks, ghesse
  20. ghesse

    Integrating a Visual Studio.NET project

    Hello, I have just completed a reporting project using Crystal Reports .NET for ASP.NET pages. They are supposed to be tied into an existing project, the majority of the existing project was not built within VS.NET. I need to know the steps in how to intergrate my reports with the rest of the...

Part and Inventory Search

Back
Top