Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

6 Posted Topics

Member Avatar for winkler

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 …

Member Avatar for winkler
0
164
Member Avatar for @Kui

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 …

Member Avatar for winkler
0
123
Member Avatar for Nybuler

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!

Member Avatar for winkler
0
137
Member Avatar for winkler

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 …

Member Avatar for winkler
0
818
Member Avatar for Darkicon

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 …

Member Avatar for winkler
0
151
Member Avatar for winkler

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 …

Member Avatar for winkler
0
802

The End.