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...
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 !
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...
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
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)...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.