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 Mike Lewis 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: *

  1. sjf905

    Crystal Report Problem on Deploy...Everything Oversized

    Nevermind...Solved it. The default printer was a Photo printer on the "problem" machine. After some intensive Google searching, I found that Crystal Reports finds the print size of the default printer and generates its report according to those dimensions. So my report was being generated as...
  2. sjf905

    Crystal Report Problem on Deploy...Everything Oversized

    Update: I have generated a report on the machine causing a problem, saved it as PDF, and opened it on my machine to see if I get the oversized results. I do. It seems the problem must be in the reports creation rather than a setting on the other computer. Heres some examples...
  3. sjf905

    Crystal Report Problem on Deploy...Everything Oversized

    I have been developing a project for over a year now. The program generates a Crystal Report that will never be longer than one page. I have released it once before - no problems with the Reports at all. I have made an update. When I run it on my machine (Debug or after installing it), I have...
  4. sjf905

    Crystal Report Problem after Deployment (w/ .msm's)

    **Update: The error is that my report fields are based off a database with a static path to my debug folder. I do include the database in deploy but the app keeps looking at the db in my debug folder rather than the folder that the user puts my app in. I need to set up the report so that the...
  5. sjf905

    Crystal Report Problem after Deployment (w/ .msm's)

    Hello, I have a Windows Application that will successfully deploy in all respects but one. The application takes user input, stores it in a database, and builds a Crystal Report from the database. This works fine before deployment. When I deploy and install the application, everything works...
  6. sjf905

    Getting an Argument From Online Source

    Hello, I have a Windows Application that I want to check a server everytime the application is run. The point it so that I can update the server with a string (such as "There is a new version of this application available at ...") so that when the application is run, it will take this string...
  7. sjf905

    Mutually Exclusive List Boxes

    Tried using Click event too when I was getting started. This also does not fire... "ListBox is derived from ListControl, which is derived from Control. Both of these have Click events listed in the MSDN help, but, as you point out ListBox doesn't. So, while the base classes have this event and...
  8. sjf905

    Mutually Exclusive List Boxes

    Hello. I have 6 list boxes in a form that I need to be mutually exclusive (ie if an item in listbox1 is selected and the user switches to click on an item in listbox2, I need the listbox1 selection to be unselected, as with every other). I have been trying some things for a while with no luck...
  9. sjf905

    Combo Box Will Not Drop Down

    Figured it out!!! Finally. I have a skin on the application that I got from some website. Remove the skin, combo works fine. That took weeks...
  10. sjf905

    Combo Box Will Not Drop Down

    No code that I made. I created it through the design interface and added the items likewise. Where could I check to see if I am unintentionally causing the error? BTW, I have tested other combo boxes in other forms (totally seperate of this project) and get the same result.
  11. sjf905

    Combo Box Will Not Drop Down

    Hello, I have a combo box on a form. When I run the application, I click the drop down arrow and it does drop but only for a split second, then rolls back up. If I click on the text of the box, I can key down to select anything in it. I have tried: comboBox1.Enabled = true...
  12. sjf905

    Passing Parameters Between Two Forms

    Hello, I have one main form with a text box that needs to be filled by a parameter from a second form (which opens on a button click in form1). Right now I have something that looks like this: //in form1 private void button1_Click(Object sender, EventArgs e) { form2 f2 = new form2()...
  13. sjf905

    Cycling through all text boxes

    I've been programming for a while but am new to C#. I have a program with 16 text boxes and am hoping I can get all their results through a loop (or something similarly efficient) rather than have 16 lines of: ResultArray[0] = TextBox1.Text; ResultArray[1] = TextBox2.Text; ...

Part and Inventory Search

Back
Top