- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
8 Posted Topics
I'm working on a project where I've loaded a database into a DGV. I also have an additional unbound checkbox column for the users to select entries with. I have code in place to read the selected rows and save them into a CSV string, which is then saved in … | |
Re: Is there a table in your database called "DataTable"? If not revise line 6. I personally wouldn't use the word "datatable" so much, it makes it kind of confusing to know what you're talking about where(a table called datatable, a variable called datatable and built-in object called datatable. Might make … | |
Re: Well, you keep adding to monprice over and over again in each if statement This is going to keep adding them over and over again. Instead of the monprice statements try something simpler like monprice = 120 monprice = 140 monprice = 170 Also, the lines [CODE]TxBxPRICE.Text = TxBxPRICE.Text[/CODE] Don't … | |
Re: I'm confused... are you trying to download or upload? | |
Re: I'm more familiar with regular expressions in perl, but I think a backslash is an escape character. Try using "*\\". | |
Re: Perhaps its a silly question, but have you tried using a try/catch to see if its throwing an error of some type? Secondly have you confirmed by opening the db itself that its not updating? I know in times past if I called info from a db I just wrote … | |
Re: I'm confused: is there something about your code that doesn't work? | |
Re: My understanding is pretty limited, but when if it was my code, I would say to put a sub routine for New() in the class code, so as to define the parameters of the new object when you declare it in code. I would think of it as you are … |
The End.