- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Lead Developer [C#, ASP.NET, SQL Server].
- PC Specs
- Pentium 4 2 GHz. with 2 GB RAM.
16 Posted Topics
Re: Please refer to the following links: [URL="http://support.microsoft.com/kb/321686"]How to import data from Excel to SQL Server[/URL] [URL="http://www.davidhayden.com/blog/dave/archive/2006/05/31/2976.aspx"]Import Excel Spreadsheet Data into SQL Server Database Table Using SqlBulkCopy[/URL] | |
Re: Are you storing the logged in username somewhere, I mean in any variable? Do remember to clear the cache. | |
Re: [QUOTE=;][/QUOTE] There should be another .cs file containing the Main method. Submit the code of that file. ![]() | |
Re: With each add, it would create a new item in the list. You should try this: listbox.items.add(combobox1.selecteditem + " " + combobox2.selecteditem); Please describe more as to what you want to achieve. | |
Re: Probably these links might help: [URL="http://www.devasp.net/net/articles/display/1061.html"]Get/Set Pixel's RGB value.[/URL] [URL="http://bytes.com/topic/visual-basic-net/answers/379428-get-mouse-coordinates-image-picturebox"]Get Mouse Pointer Coordinates[/URL] | |
Re: I hope these links might help: [URL="http://www.c-sharpcorner.com/UploadFile/scottlysle/PassData01142007013005AM/PassData.aspx"]C# transfer values between forms.[/URL] [URL="http://www.vcskicks.com/data-between-forms.php"]C# Passing Data between Forms[/URL] [URL="http://www.vbdotnetheaven.com/UploadFile/thiagu304/passdata12262006073406AM/passdata.aspx"]Passing Data Between Forms[/URL] | |
Re: The best way to learn is jump into coding. Write more code, compare your code with online available code or ask questions here on how to improve it. To start serious learning, think of a real-life project that you want to sell in the market. For example, a simple Stock … | |
Re: I guess, it doesn't make much difference, it depends on what you want to achieve. An update query equally runs well. | |
Re: Your question is not very clear but I think you can use DISTINCT clause like this: Select DISTINCT * From <tables.............> WHERE ................ | |
Re: For selecting ID, you may refer this [URL="http://www.phpfreaks.com/forums/javascript-help/how-to-get-id-of-select-menu/"]thread[/URL]. Store the selected ID in a session variable and pass this value back to the second query. | |
Re: Check these links: [URL="http://www.dba-oracle.com/t_storing_insert_photo_pictures_tables.htm"]Storing pictures and photos in Oracle tables[/URL] and [URL="http://www.dba-oracle.com/t_insert_image_blob_client_pc.htm"]How to insert a BLOB image from a client PC[/URL] | |
Re: Read this article: [URL="http://mysqlresources.com/cgi-bin/article.cgi?article_id=45"]Changing Times in MySQL[/URL] You need to use the BETWEEN clause also. Something like: SELECT * FROM timetable WHERE AppointmentTime BETWEEN CurTime() AND CurTime() + ... The query above is just to give u an idea. I don't remember the actual functions. | |
Re: Are you sure that the GET is fetching value? Apply a break-point there and see whether GET is receiving value correctly or not. | |
Re: With whatever little I followed, I would use a bool say: bool UserClicked = false; // In the Form Load Event I would add following line in your method: exitToolStripMenuItem_Click UserClicked = true; And finally, in the FormClosing event, you can check like this: if (UserClicked) { ....... } else … | |
Re: 1. Use SQL to query the data for that user. I hope you know SQL. 2. Create a DataSet and fill this DataSet with above query. 3. Set the DataGrid's DataSource to this DataSet. | |
I have a Sub Routine as below: Private Sub SaveRecord() Call InsertIntoTable1 Call InsertIntoTable2 Call InsertIntoTable3 Call InsertIntoTable4 End Sub I want to use the transaction object in such a way that it starts just before the first Insert Call and ends after the last Insert Call. The situation is … |
The End.