- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
10 Posted Topics
I trying to remove a row from datagridview. it removes on datagridview but not from the database" [CODE] dataGridView1.Rows.Remove(dataGridView1.CurrentRow); [/CODE] how can i remove it? and if i have this colums in the database: AB || AC || AD || AE and on datagridview i have only : AC || … | |
i try to open iexplorer without to login. but it likes that the cookie is not saved. how can i solve this problem? thit is my code: [CODE] public class Web1 { private string URL = "http://test.nl"; private CookieContainer cook = new CookieContainer(); public void eerst(string RedmineURL) { URL += … | |
i try to insert data in database, but i have a problem. example: [CODE]double price = 12,55; mySelectQuery = "INSERT INTO order (total)" + "VALUES (" + price+ ");";[/CODE] now price are 2 values because the ",". now C# see 12 and 55. so a get a error that a … | |
i want get multiple values if i call i method. example: _____________________________________________ public void setData(int age, string name, string address){} ______________________________________________ Data data = new Data(); data.setData(age, name, address); ______________________________________________ when setData() are excuted he doesn't return the parameters with the values. what can i do? | |
i work with C#.net and mysql. i will fill a combo box with data from stored procedure. but i get only 1 value. how can i fill the combobox? | |
How can i add a app.config in visual studio 2008 for compact framework? | |
in my program, if i press enter on the first textbox, than i set the focus to the second textbox. but the value of second textfield is for example A. so the focus go fore the A instead of after A. what can i do? | |
I have this error: A request to send data to the computer running IIS has failed. For more information, see HRESULT. : Microsoft SQL Server Compact. is this a error from pull or from remote connection string: [CODE] private string strConnRemote = "Provider=SQLOLEDB;" + "Data Source=GEBRUIKER;" + "Initial Catalog=auto;" + … | |
How do i connect to a database from c# with compact framework. (PDA) the database runs on the desktop. i use Pervasive on the destop. i want write directly on the desktop. is that possible, and how? | |
I will if i press down that the focus go to the next textfield. i will not do every time [CODE] if (focus() = controlname) controlname.focus() else if (focus() = controlname) controlname.focus() [/CODE] what can i do? |
The End.