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 strongm 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: MJV57
  • Content: Threads
  • Order by date
  1. MJV57

    Cannot return full decimal from sql parameters

    I have a line of code as follows: totalhoursTextBox.Text = (Convert.ToString(cmd.Parameters["@totalhrs"].Value.ToString())); This code always truncates the digits after the decimal. Can anyone help with what is required to change to get the digits after the decimal. Eg. Now I get 41 when I...
  2. MJV57

    Unable to start a crystal report in a C# program

    I have a program written in C# and everytime I try to load a crystal report I get the following error: Could not load file or assembly 'CrystalDecisions.Windows.Forms.Version=12.0.2000.0 Culture=neutral, PublicKey Toke=692fbea5521e1304' or one of its dependencies. The system connot find the...
  3. MJV57

    Shifting diskspace

    I have two virtual drives on a raid 5 a c drive and a f drive. I have space on my f drive I would like to give to my c drive. How can I do this. Is there software?
  4. MJV57

    Error calculating a text field that is formated as currency

    I have a form with a field cdnsale that is formated as currency but when I try to do a calculation with it it errors out as a division by zero; however if i format it as numerical i do not get this error. Can anyone help me to change my code so I can format as currency and not get this error. My...
  5. MJV57

    Format a text box to currency

    I have a text box which I would like to format currency but i just can't get it right. Can anyone help me with this code. Here is my code so far: adjgpperTB.Text = Convert.ToString(adjustedgrossprofpercent);
  6. MJV57

    Temporary Variable In Procedure

    Is there a way to set a variable from a select query and then use it in a update query in the same procedure. I derive a value "avgwagerate" in a select statement which uses a caluculation to get this value. I now want this value put into another table using an update command. Can anyone help me.
  7. MJV57

    Tuning Options

    I ran a tuning options analysis and received the following recomendations. Can anyone help me understand what it is telling me and if there is any harm in accepting the recommendations:
  8. MJV57

    Not Enough Disk Space

    Im trying to copy a file from a computer running windows 7 to a server 2003 enterprise. I use to do this all the time to the same directory with the same permissions and it is now telling me there is not enough disk space to make the copy. There is in face ample disk space. Can anyone tell me...
  9. MJV57

    Copy user and securables to new user

    I have a user Proj_Coord for domain users cad\proj_coord. I now am changing domain names and would like to copy the user Proj_Coord in SQL with all its attributes and securables to a new user Proj_CoordSTDWI for domain users stdwi\proj_coord. Can anyone help me with this task
  10. MJV57

    Change Domain

    We have two domains and would like to go to one. How would I go about converting a primary domain server in one domain to a application server in another domain?
  11. MJV57

    User to install software on computers

    Is there a way to set up a user or user group that is allowed to install software on individual computers without being given all the administrative rights of a domain admin
  12. MJV57

    Set info path field based on entry in another field

    I have an info path form that has a combo box which selects an item number from an sql database and i would like to have a description field be updated based on the item number selection. The description is also in the sql database. Can anyone help me?
  13. MJV57

    Redirect web site

    I currently have a web site running on server1 but would like to redirect the configuration so the web site is from server 2 where we have created a new web site on sharepoint. Can anyone help on how to redirect this.
  14. MJV57

    Can't figure out error in code

    I have a piece of code that gives me the following error: an object reference is required for the non static field,method or property Scheduler.ProjCoorToolsDataSet.JobSchedule.get Here is the code: private void fakebox(object sender, EventArgs e) { if...
  15. MJV57

    Need Help To solve error in code

    I get the following error: (Thanks) Procedure or function GetBusinessDays has too many arguements specified The code I use is as follows: private void processCompleteDateTimePicker_ValueChanged(object sender, EventArgs e) { DateTime startdate; DateTime enddate...
  16. MJV57

    Need Code To Calculate Future Date

    I have a form with a start date supplied and I would like to add a certain number of days as designated in a text box to determine the future date. Can anyone help with this. The date supplied is in a datepickerbox
  17. MJV57

    Apply an sql function to update an sql table

    I have a table with the followin columns: (StartDate, EndDate and BusinessDays) The BusinessDays colums is to be calculated using the scalar function called GetBusinessDays; however Im relatively green at sql programming and not sure how to call these the tables fiels in a procedure and apply...
  18. MJV57

    Add Primary Key Later

    I have a table that I want to add a primary key too. I have added the field prikey but I have to insert consecutive numbers in the table fro prikey before setting it as the primary key. Can anyone help me with some simple code to populate the table with consecutive numbers for prikey
  19. MJV57

    Convert varchar(8) to datetime

    Can anyone helpme with converting a varchar(8) column to a datetime value. I try this but it fails: CAST( startdate as datetime )
  20. MJV57

    Apply an sql function to update an sql table

    I have a function that determines the number of working days given a current date and end date.Im not sure how I could apply this to the values in an sql table to come up with the working days in che workingday column of the table given that the table already has the end date. Here is the...

Part and Inventory Search

Back
Top