Click here to Skip to main content
15,889,096 members

Videos


Page 1 of 3
1 2 3


1. How to INSERT date into sql db date column using dateTimePicker?
Hello All,My problem is simple I have a birthdate column of type date in my sql database and in my application I use dateTimePicker to get the birthdate, but when trying to insert the date I got from the dateTimePicker I get an error Incorrect syntax near '12'And when I try to debug the...
Database Development » SQL Server » SQL Server 2008
a1mimo Updated: 25 Mar 2020
Rating: 5.00/5 ( (2 votes))
.

()
» »
Updated:
Rating: ()
2. how can we Load WinForm inside of Panel in windows Appliocations
Its easy to do so, for example if you want to load form 3 at a panel in form 2 all you have to do is to put a panel with public modifier in form 3 then put all your controls and in form 2 you call the form 3 this way Form3 f3=new Form3();f3.panel1.Parent=panel2; //panel1 is the...
a1mimo Updated: 17 Feb 2013
Rating: 1.00/5 ( (2 votes))
3. Facebook app my close/common friend
Refer to facebook development center they have the answer for you they tell you what query to do to fetch such data and more Here[^]
a1mimo Updated: 16 Feb 2013
Rating: ( (No votes))
4. Error after hosting the asp .net web site
What happened in there you can find in the last 2 paragraphs in the error simply your host doesn't have the required resources for your assembly components so you need to get those dll's and upload them and refer to them while using their functionalists in your code.Hope this helped
a1mimo Updated: 16 Feb 2013
Rating: ( (No votes))
5. How to read simple posts on twitter without account?
Here is a good link for this Here[^]Hope this helped
Programming Languages » Visual Basic »
a1mimo Updated: 2 Nov 2012
Rating: 1.22/5 ( (2 votes))
6. How to open .mdf file in sql server 2005?
In Microsoft SQL Server Management Studio after connecting to your server right click on the Database folder and select attach and choose your .mdf file and attach it And you don't convert to .bak you backup your database and this creates the .bak fileHere is how to backup your database...
Database Development » SQL Server »
a1mimo Updated: 1 Nov 2012
Rating: 4.00/5 ( (1 vote))
7. Which webhosting support uploading sql database to it.,asp.net,c#
Actually Godaddy have this but you need to get windows platform not linux for in linux you can't have sql database and you must use Mysql instead and you will find help in how to do that in there website in the faqs and help sectionUPDATE: Godaddy support[^]And you will need ftp client...
Hosted Services » Web Hosting »
a1mimo Updated: 1 Nov 2012
Rating: ( (No votes))
8. MySQL ( NOT IN )... HELP
SELECT (Your students name table ex: Students.*) FROM Students INNER JOIN Courses ON (your foreign key column ex: Students.FK_Courses)= Courses.ID WHERE NOT (your course name column ex: Courses.Name)= 'Biology'Note: remove () when using it and try to google next time better than just asking
Database Development » MySQL »
a1mimo Updated: 31 Oct 2012
Rating: ( (No votes))
9. want to sum data in rows of gridview and get result in text box. thanX in advance
Of course your code wont work because simply you telling the program to get the sum of the first row first cell and second row second cell etc...and in one point you will get an error if your rows are more than your columnsyou need to add another for loop to loop over the cells in each row...
a1mimo Updated: 31 Oct 2012
Rating: ( (No votes))
10. [Web] Links like Affiliate Links
Actually you can do this by just adding your user ID or Code or whatever you want as a query string in the link itself and configure your page to do whatever you want to if the link has a query string in itex: your user ID is 1113your link would be...
a1mimo Updated: 30 Oct 2012
Rating: 3.50/5 ( (2 votes))
11. Speech recognition development in windows 7 and above
Try to google what you need it's better than waiting for someone to answer youmsdn for using speech recognition[^]msdn for the class[^]Hope this helped
Speech SDK » »
a1mimo Updated: 30 Oct 2012
Rating: ( (No votes))
12. Form Authentication testing code...
First how do you know you are not logged in???Second if you did exactly what they do that is the right thing to happen to be redirected again to the default.aspx,why?simply because the defaultUrl property in the web.config file hasn't been set, so what is the defaultUrl property?it's the...
a1mimo Updated: 23 Oct 2012
Rating: 1.00/5 ( (1 vote))
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
.

()
» »
Updated:
Rating: ()
13. How to pass binary image to image handler to display it in DataList?
Try this when you get your image from the database//whatever your command isobject Result= command.ExecuteScalar();MemoryStream ms = new MemoryStream();ms = (byte[])result;//pass ms to Handler either by puting it in a function that returns it or whatever you like...
Web Development » ASP.NET »
a1mimo Updated: 22 Oct 2012
Rating: ( (No votes))
14. How to set up server client network on different computers with the client accessing database through a cross over cable using c#
All you need to do is to change the server section in your connection string from the local computer to the server name or IP and remember to put an exception for the sql Server port in your firewall in the server and also always run the sql Server as administrator and from the sql configuration...
Database Development » SQL Server »
a1mimo Updated: 22 Oct 2012
Rating: ( (No votes))
15. Java for Beginners - Part 3
Java for beginners
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))

Page 1 of 3
1 2 3