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

  • Users: Saturn57
  • Order by date
  1. Saturn57

    Stored Procedure Not Passing Variables

    Thanks LFCfan. No I do not want to pass in an integer. Can you stear me in the right direction on how to assign the text box value to a variable I can use in my code?
  2. Saturn57

    Stored Procedure Not Passing Variables

    This did not work. Says it cannot find stored procedure ("copyestimate @estnum @customer @contact @newestnum output", conn
  3. Saturn57

    Stored Procedure Not Passing Variables

    I have the following stored procedure that does not seem to pass the @customer and @contact variable to the sql stored procedure to update a table. The @estnum is working but I cannot understand why the two other variables are not being used in the sql procedure to update a table. When I run...
  4. Saturn57

    Update table field to an incremental value

    Thanks. But is there a query that will change all the numbers in the field to be incremented by one after the fact.
  5. Saturn57

    Update table field to an incremental value

    I have an existing table that I would like to add a field to that is incremental. Start at 1 and increment by 1. this is a simple solution I know but what is the query to update the field automatically so I don't have to type 1 to ..... Thanks In Advance
  6. Saturn57

    Get logon credentials

    Can you help me to see where to get info on variables for System.Environment.class. I'm rather green.
  7. Saturn57

    Get logon credentials

    I have an application that uses integrated security. How can I retrieve the user name loged in and assign it to a test box
  8. Saturn57

    Code to create pdf file from crystal reports

    Im not very experienced at this. I have never called the crystal report from code attached to anything like a button. I have only run it by using crystal reports viewer. Can you give me some insite.
  9. Saturn57

    Code to create pdf file from crystal reports

    I have a crystal report (quote)that is created based on a range of values used as crystal report parameters. I would like to have code to be able to generate an individual pdf file for each quote generated.
  10. Saturn57

    Attach print selection list to table field in database

    When I create a parameter it only allows me to import the existing list of variables. Does this mean im at an older version of CR. Note it is the version integrated with visual studio 2005
  11. Saturn57

    Attach print selection list to table field in database

    They are ranges of quote numbers in a data base. So they would be numbers. As we generate new quotes we will get new numbers so the range of values is always increasing.
  12. Saturn57

    Attach print selection list to table field in database

    I have a parameter used to select a print range in crystal reports. Is there a way to attach the pulldown list to a database field so the user does not have to remember the exact fields to type in. Note the field range is not static and changes all the time. Thanks
  13. Saturn57

    Loosing data on save

    My code executes the following: private void quoteCalcHeaderBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.quoteCalcHeaderBindingSource.EndEdit()...
  14. Saturn57

    Issue with report parameter

    I have a parameter that is used to select a particular field number in order to select records to generate a report so the user is asked to enter the record number prior to printing the document. In this report I have a sub report that asks the user for the same field number. When someone goes...
  15. Saturn57

    Loosing data on save

    I have a form with a datanavigator. I will select the button to create a new record and input data but when i save the data it disappears and it is not saved. However if I press the button to go to the next record and then save it saves the first record. What should I do to avoid haveing to...
  16. Saturn57

    Summarize each page

    I have a report that is made of several pages and each page is grouped on a particular field "name". On each page there is a summary of costs for the group field "name". I cannot figure out how to generate a summary page with the name of each group field name and the summary of costs for each...
  17. Saturn57

    Format a text box as currency

    Sorry Im getting this error now Error 1 The type or namespace name 'var' could not be found (are you missing a using directive or an assembly reference?) E:\VisualStudioProjects\EstimatorC\EstimatorC\EstimateReview.cs 63 29 EstimatorC
  18. Saturn57

    Format a text box as currency

    That did not work. Here is what Im trying to convert to a curency format: sumcdnpriceTB.Text = (Convert.ToString(cmd.Parameters["@cdnpricesum"].Value.ToString()));
  19. Saturn57

    Format a text box as currency

    I cannot figure out the code to have a text box show the input as currency. Any help is appreciated. Im sure this is an easy one.

Part and Inventory Search

Back
Top