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 biv343 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: sjf905
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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()...
  7. 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