- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
6 Posted Topics
Hi Some background: I'm trying to create a Server/Client Sync scenario for my application using Sync Services for ADO.NET specifically the LocalCache custom tool which sets the whole thing up for me. My server DB has 5 Tables, all of which are being synchronized to the client application, which now …
Your error must be appearing in one of these lines: [CODE]dgvInterest.Rows.Add() dgvInterest.Item("Interest",i-1).Value = FormatCurrency(interest) dgvInterest.Item("Amount",i-1).Value = FormatCurrency(amount)[/CODE] You can't use "i" as the rowindex in this case, "i" is the counter for your loop and has nothing to do with the datagridview you want to fill. If you want to …
You might want to look into Sync Services (Sync Framework) for ADO.NET, which enables applications to be connected to a central database and upload/download/synchronize data from time to time: An excellent way to start is watching this video: [url]http://msdn.microsoft.com/en-us/sync/cc137124[/url] Good luck!
Hi I consider myself fairly new to VB.NET, so maybe you could help me here. I have a bindingSource which is bound to a dataset. I have a filter on the bindingsource. My problem is that when I add a new row, with BindingSource.AddNew, even if it does not match …
Hi Was one of the forms called (or created) in the other? for example [CODE]dim f as new form1 f.show()[/CODE] If yes, then the "parent" form can access the other forms controls by prefacing it with the form name for example [CODE]f.PictureBox1[/CODE] It should appear in intellisense. Otherwise you could …
Hi all, it's my first time in this forum, I hope you can help. I've searched the web for a long time, couldn't find help, yet. I have a listview that displays a list of PDF files. When the user clicks on a row (in the "selectedIndexChanged" event), I display …
The End.