Click here to Skip to main content
Page 1 of 6
Page Size: 10 · 25 · 50


Author filtered by: Code-Hunt [x]
Answer 14 May 2013   license: CPOL
http://www.dotnetfunda.com/for...
Answer 14 May 2013   license: CPOL
http://stackoverflow.com/quest...
Answer 14 May 2013   license: CPOL
http://social.msdn.microsoft.c...
Answer 13 May 2013   license: CPOL
Split Address into 3 columns using a udf[^]SQL SERVER – Selecting Domain from Email Address[^]splitting one column in multiple columns[^]Hope above links will give u some idea
Answer 13 May 2013   license: CPOL
Editable GridView in ASP.NET 2.0[^]http://www.aspdotnet-suresh.com/2011/02/how-to-inserteditupdate-and-delete-data.html[^]http://csharpdotnetfreak.blogspot.com/2011/04/gridview-examples-in-aspnet-20-35.html[^]Edit Individual GridView Cells in ASP.NET[^]This will help you...
Answer 13 May 2013   license: CPOL
crystal reports in visual studio 2008 using c# and sql 2005[^]http://www.youtube.com/watch?v=QMOF8m_2ZyA[^]https://www.youtube.com/results?q=crystal+report+in+visual+studio+2008&aq=f&um=1&ie=UTF-8&sa=N&tab=w1[^]check the video tutorial..it will help u..
Question 13 May 2013   license: CPOL
Hi allPlease tell me how to get printdialog in wpf application.i added system.printing reference but not getting the toolsplease suggest.thank you
Answer 13 May 2013   license: CPOL
http://sqlsalt.blogspot.in/201...
Question 13 May 2013   license: CPOL
Hi allPlease guide me in learning MVC..i searched google.got many things but not able to figure it out from where to start.please provide me some links or books and some small application by which i can start..Thank you
Question 12 May 2013   license: CPOL
Hi allCan anyone tell me how to set focus on a autocomplete box while load..Thank you
Answer 12 May 2013   license: CPOL
Check this linkshttp://www.mindfiresolutions.com/How-to-take-screenshot-programmatically-and-mail-it-in-C-647.php[^]http://www.csharphelp.com/2006/11/capturing-the-screen-image-using-c/[^]http://www.take37.com/programmatically-take-screenshot-using-c/[^]Hope this will help...
Answer 12 May 2013   license: CPOL
Displaying Videos from YouTube Channel in ASP.NET Website[^]See this link..you will get an idea...
Answer 12 May 2013   license: CPOL
Declare @Seconds as intDeclare @SubtractDate as datetime--Enter Number of Seconds hereSet @Seconds=9974501Set @SubtractDate=DateAdd(s,@Seconds,getdate()) - Getdate() Select Convert(varchar(10),DateDiff(day,'1900-01-01',@SubtractDate))+ ' Day(s) '...
Answer 9 May 2013   license: CPOL
PasswordBox.Password did the work for me...
Question 9 May 2013   license: CPOL
Hi allI am using PasswordBox for entering the password..but while entering into database its giving me error in below lines txtAdminPass.Text = dt.Rows(0)("AdminPass").ToString() txtAdminConfirmPass.Text = dt.Rows(0)("AdminConfirmPass").ToString()it's telling Text property is not...
Question 9 May 2013   license: CPOL
Hi allI am using visual studio 2010 and i have installed wpftoolkit 1.9..but when recently i observed that only 2-3 controls are coming in that (e.g. autocompletebox,accordion etc) and options like watermarkedtextbox is not coming..Is there any problem with my installation or what..I...
Question 8 May 2013   license: CPOL
Hi allI am using a yes/no/cancel message box while deleting a data..below is the codeDim answer As String = MsgBox("Are you sure ???", MsgBoxStyle.YesNoCancel, MessageBoxOptions.RtlReading)but when i am using MessageBoxOptions.RtlReading or MessageBoxImage.Question, instade of...
Question 7 May 2013   license: CPOL
Hi allI am getting error while inserting value to the database Please check my below code and tell me what is the problemCode Dim cm As New SqlCommand("insert into...
Question 7 May 2013   license: CPOL
Hi allPlease help me creating company code in below formatCompany Name: xyzabc textilecode : xyza0001i wrote the below query to get the substringSELECT CompanyName, SUBSTRING (CompanyName, 0, 5) as substring_nameFROM CompanyORDER BY 1But not getting how to add the counter...
Question 7 May 2013   license: CPOL
Hi allPlease tell me how do i check duplicate entry in databse column before inserting the data.i have column called company name(not a primary key)thank you
Question 6 May 2013   license: CPOL
Hi alli used the below code to clear multiple textbox in a form but i am getting error.please tell me the problem Private Sub ClearTextBoxes(ByVal depObject As DependencyObject) For i As Integer = 0 To VisualTreeHelper.GetChildrenCount(depObject) - 1 If TypeOf...
Question 6 May 2013   license: CPOL
Hi allI have created one table and inserting value to it but i am getting error.below is my table and the errorUSE [project]GO/****** Object: Table [dbo].[courier] Script Date: 05/07/2013 10:10:10 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET...
Question 5 May 2013   license: CPOL
Hi allI wrote the below code to fill a autocompletebox but i am getting error..Code: Dim command As New SqlCommand("Select CompanyName from Transportation_Courier_AddressDiary where PaymentTerms IS NULL", connection) Dim da1 As New SqlDataAdapter(command) ...
Question 2 May 2013   license: CPOL
Hi allI used the below code to assign the shortcut keys to my formPrivate Sub UserControl_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Input.KeyEventArgs) Handles MyBase.KeyDown If e.Key = Key.F1 Then Button1_Click(sender, e) ElseIf...
Question 2 May 2013   license: CPOL
Hi allIn my form i have 3 combo box having the respective details:Company NameCompany CodeCompany AliasNow while deleting i want like if the user select any one value from any of the 3 combo box , then he should be able to delete.Please tell me how to do thatI tried using...
Question 2 May 2013   license: CPOL
Hi allplease check the below code Dim cmd As New SqlCommand("select CompanyName from Company", conn) 'Company Name Dim dt As New DataTable 'Company Name Dim da As New SqlDataAdapter(cmd) 'Company Name da.Fill(dt) 'Company Name 'Company Name ...
Question 1 May 2013   license: CPOL
Hi allPlease tell me how to fetch the data from the database by combobox selectionchengeBelow is my code Dim cmd3 As New SqlCommand("select * from Company", connection) cmd3.ExecuteNonQuery() Dim da As New SqlDataAdapter(cmd3) da.Fill(dt) ...
Answer 1 May 2013   license: CPOL
u can try something similar to thisDECLARE @Count int SELECT @Count = Count(AutoID) FROM UserTable WHERE UserName = @userName IF @Count = 0 BEGIN INSERT INTO UserTable (UserName) VALUES (@userName) END
Answer 1 May 2013   license: CPOL
Check this links..hope will get the solutionhttp://www.howtogeek.com/50295/backup-your-sql-server-database-from-the-command-line/[^]http://blog.sqlauthority.com/2013/02/08/sql-server-backup-and-restore-database-using-command-prompt-sqlcmd/[^]
Answer 1 May 2013   license: CPOL
Check this...
autocomplete text box in wpf by Snehasish Nandy
Question 29 Apr 2013   license: CPOL
Hi allPlease help me in doing a auto complete text box in wpf using VB.NET. i got the below code but getting error.. Dim col As New AutoCompleteStringCollection Dim i As Integer For i = 0 To ds.Tables(0).Rows.Count - 1 ...
Need help in the error by Snehasish Nandy
Question 26 Apr 2013   license: CPOL
Hi allPlease find the below details and help me to solve the probcode: Dim con1 As New SqlConnection("Data Source=KITT7-PC;Initial Catalog=project;User ID=sa;Password=1234") con1.Open() Dim cmd As New SqlCommand("insert into CompanyCreation values('" &...
Question 25 Apr 2013   license: CPOL
Hi alli am creating one application where i have to generate company code in below formatif the company name:- Adarsh chemicalsthen the code should be like Adar0001next if company name is Nornal infotechthen the code should be like Norn0002i have to save it in DB and...
Question 25 Apr 2013   license: CPOL
Hi allI wrote the below code to create a folder Dim directoryPath As String = Environment.CurrentDirectory("~/") + txtCompanyName.TextNow i want to create the folder in other systemPlease tell me how to assign the path for another systemThank you
Question 23 Apr 2013   license: CPOL
Hi allPlease tell me how to save a file path selected using openfiledialog in database using wpf.i want to store a file in a particular location of my hard disk..later i can refer that path and can open the file Thank you
Question 22 Apr 2013   license: CPOL
Hi allI am making one application in vb.net using wpf.i was wondering that is it possible to create one setup which will run on any OS like windows, android.or it's like for every OS i have to create different different applications..Please clear my doubt and correct me if i am wrong...
Question 10 Apr 2013   license: CPOL
Hi allIn my application i m coping the database .mdf and .ldf file to a location.RESTORE DATABASE " & cmbdatabase.Text & " FROM disk='" & OpenFileDialog1.FileName & "' WITH MOVE 'a' TO 'C:\Backup\a.mdf', Move 'a_log' TO 'C:\Backup\a.ldf',REPLACEI want to copy the .mdf and .ldf file...
Need help in piece of code by Snehasish Nandy
Question 10 Apr 2013   license: CPOL
Hi allBelow is my restore commandRESTORE DATABASE " & cmbdatabase.Text & " FROM disk='" & OpenFileDialog1.FileName & "' WITH MOVE 'a' TO 'C:\Backup\a.mdf', Move 'a_log' TO 'C:\Backup\a.ldf',REPLACE"Now as you can see i am moving the .mdf and .ldf file to a location.so for the first...
Answer 9 Apr 2013   license: CPOL
http://stackoverflow.com/quest...
Error in RESTORE command by Snehasish Nandy
Question 8 Apr 2013   license: CPOL
Hi allI am executing the restore command but getting error please help...CommandRESTORE DATABASE a FROM DISK = 'C:\Users\501013\Pictures\a.Bak' WITH MOVE 'a' TO 'C:\Backup\a.mdf',MOVE 'a_log' TO 'C:\Backup\a.ldf', REPLACEErrorMsg 3101, Level 16, State 1, Line...
Question 7 Apr 2013   license: CPOL
Hi allPlease tell me how to override an existing database with an updated file using VB.NET.Thank you
Backup of Sql database by Snehasish Nandy
Question 7 Apr 2013   license: CPOL
Hi allI want to take a backup of sql database but without showing any window or notification to the client system (i.e. it should take backup internally)Please tell me how to do thatThank you
Question 7 Apr 2013   license: CPOL
Hi allI made a application where i am taking backup of sql database and restore them.while restoring first i m deleting the database from sql and then i m browsing for the .bak file and restoring.now i want is as the database is already present in the server, if i m clicking the...
Question 5 Apr 2013   license: CPOL
hi allbelow is my code System.Diagnostics.Process.Start("C:\Users\501013\Videos\WpfApplication1\WpfApplication1\assemblies\FullHardWareInfo.exe")now if i run the file in other system its giving path error..please tell me how to set the path..Thank you

Page 1 of 6
1 2 3 4 5 6


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid