Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~2K People Reached
About Me

Lead Developer [C#, ASP.NET, SQL Server].

PC Specs
Pentium 4 2 GHz. with 2 GB RAM.
Favorite Tags

16 Posted Topics

Member Avatar for TheDocterd

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]

Member Avatar for TheDocterd
0
304
Member Avatar for procomp65

Are you storing the logged in username somewhere, I mean in any variable? Do remember to clear the cache.

Member Avatar for procomp65
0
113
Member Avatar for ladyclark

[QUOTE=;][/QUOTE] There should be another .cs file containing the Main method. Submit the code of that file.

Member Avatar for nssltd
0
113
Member Avatar for chupoi

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.

Member Avatar for rpk2006
0
78
Member Avatar for subhankar02dey

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]

Member Avatar for rpk2006
0
86
Member Avatar for IDC_Sharp

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]

Member Avatar for rpk2006
0
92
Member Avatar for jlininger

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 …

Member Avatar for Diamonddrake
0
101
Member Avatar for babbu

I guess, it doesn't make much difference, it depends on what you want to achieve. An update query equally runs well.

Member Avatar for rpk2006
0
85
Member Avatar for LONGWAY

Your question is not very clear but I think you can use DISTINCT clause like this: Select DISTINCT * From <tables.............> WHERE ................

Member Avatar for rpk2006
0
143
Member Avatar for s.butler1

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.

Member Avatar for s.butler1
0
118
Member Avatar for mayank.dyl

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]

Member Avatar for rpk2006
0
134
Member Avatar for tyson.crouch

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.

Member Avatar for rpk2006
0
80
Member Avatar for orcaraheel

Are you sure that the GET is fetching value? Apply a break-point there and see whether GET is receiving value correctly or not.

Member Avatar for rpk2006
0
109
Member Avatar for raybolio

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 …

Member Avatar for raybolio
0
147
Member Avatar for TheDocterd

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.

Member Avatar for rpk2006
0
91
Member Avatar for rpk2006

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 …

Member Avatar for MattWilkinson
0
83

The End.