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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kim20

  1. kim20

    why are my differential backups 0kb?

    Hi yes running successfully.............. SQL Server log message Database differential changes backed up: Database: Internet, creation date(time): 2007/04/03(12:38:41), pages dumped: 3652, first LSN: 3965:637:1, last LSN: 3965:639:1, full backup LSN: 3930:62:3, number of dump devices: 1...
  2. kim20

    why are my differential backups 0kb?

    Hello I have my backup strategy for database internet full weekly backup daily transaction log backups (every half hour between 07:00 and 21:00) daily differentials (3 times during timeframe as above) although not live yet the database has had occassions of data updates/inserts/deletes - i...
  3. kim20

    binding textbox values on form2 from datagrid on form1

    think i have sort of done it using [code] this.daProviderEdit.SelectCommand.Parameters["@ID"].Value = txtID.Text; dsProviderEdit.Clear(); daProviderEdit.Fill(dsProviderEdit); [code] i then set the databindings of each text box in the designer. probably not the best method but works !
  4. kim20

    binding textbox values on form2 from datagrid on form1

    Hi I have Form1.cs (with a datagrid) when the datagrid is double-clicked the ID value of the record is passed to hidden text box on Form2.cs using public property form1TextBoxValue as this.txtID.Text = tempvalue.ToString(); i have textboxes i would now like to populate based on the ID i...
  5. kim20

    display cell value from datagrid on delete

    sorted it............it was because my datagrid was bound to a dataview but the currency manager was bound to the datatable. working a treat now...............as my currency manager is linked to the dataview. thanks
  6. kim20

    display cell value from datagrid on delete

    thanks K I have made some progress. I can get the double-click working now. i have the code below but it is not taking the ID value across to Form2, value is always 1. this is the line i am trying to put the value as a public variable. viewEditForm.form1TextBoxValue = (int)...
  7. kim20

    display cell value from datagrid on delete

    thanks yeah i get system.eventargs does not contain a definition for item. I can retrieve the row number by using the HitTestInfo method, but its the actual cell value of "ProviderName" i want. this ties in with my other problem of wanting to double-click a cell and launching a new form...
  8. kim20

    display cell value from datagrid on delete

    Hi i am creating a windows app. I have a delete button which works ok as below. On the delete i would like to display a value from the cell as string s but i am aware the string s line will not work because item is not part of Eventargs e. how can i display the value from...
  9. kim20

    recommendations for staging server db to live db

    Hi I have a CMS Database held on a staging server set as Full recovery, with weekly full backup trans logs run every 30 mins during daytime diff run twice daily during daytime. i also use a maintenance plan to check integrity and optimize to remove unused space from database file. default...

Part and Inventory Search

Back
Top