5,346 Posted Topics
Re: maulikmaruti. Please do not resurrect threads that are years old. By doing so you run the risk of confusing current posters. Have a look at forum [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. Please read before posting - [url]http://www.daniweb.com/forums/thread78223.html[/url] Thread Closed. | |
Re: I'm glad you got it helpful. Please do not resurrect old threads. If you have any questions please ask. You are welcome to start your own threads. Thread Closed. | |
Re: [b]>is it possible through nested datalist. any help possible here[/b] Take a look at these articles/threads: 1. [url]http://www.dotnetspider.com/resources/909-Exporting-Data-Excel-with-Customized-format-in-ASP-NET-With-C.aspx[/url] 2. [url]http://www.daniweb.com/forums/thread285621.html[/url] 3. [url]http://consultingblogs.emc.com/jomitvaghela/archive/2007/03/26/Alphabetical-Grouping-with-Nested-Datalist.aspx[/url] Please show us your code work. | |
Re: Publishing a Web Site - [url]http://msdn.microsoft.com/en-us/library/1y1404zt%28VS.80%29.aspx[/url] and [url]http://msdn.microsoft.com/en-us/library/f735abw9.aspx[/url] | |
Re: Have a look at this thread - [url]http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/70335d66-d66d-4f62-878d-2d37f5daddee[/url] | |
Re: [QUOTE=seebharath;1242084]Hi All, Does anyone know good and reliable "Open Source"object oriented database for use with c#. My Database will contain about 500 mb to 1 Gb of data. Thanks,[/QUOTE] Take a look at Wiki : [url]http://en.wikipedia.org/wiki/Object_database[/url]. Here is an object oriented database engine - [URL="http://www.db4o.com/"]db4o[/URL], open source object database engine. | |
Re: [QUOTE=Mutagen;1242274]Hello ... I have a question, make it something I could add console app to form? Can I add via Application.Run () console app but it does not take ... Thank you for your reply[/QUOTE] Add a form class item from "Add New Item" project menu (Visual studio). Try to … | |
Re: Take a look at connection string for dbf/foxpro. [url]http://www.connectionstrings.com/dbf-foxpro[/url] | |
Re: [b]>Format for storing and reading date time to oledb[/b] Check the regional settings (Control panel). | |
Re: [QUOTE=raghum87;1241828]Hi this Raghu.I have to Save the State of Windows Form in Some File Format Such as .cfg by Button Click Event and Also when It was needed,it has to retrieve from the saved format and display the Saved Contents in C#.[/QUOTE] Take a look at stunning article about Serialization … | |
Re: I'm regular of stackoverflow. Good answer by Adam - [url]http://stackoverflow.com/questions/2994740/read-email-from-incoming-mail-serverpop[/url] | |
Re: So you want to fetch last 20 records from the database. Isn't it? | |
Re: [code] if (int.TryParse(lblLetGrade.Text, out Num) == false) { MessageBox.Show("Input must be a number"); return; } if (Num < 0 || Num > 100) { MessageBox.Show("Number not valid"); return; } [/code] | |
Re: [QUOTE=neo.mn;1242565]Dear Members, I am developing a desktop application on “Attendance and Payroll Management System”. To develop this I am using [B]C# and MS SQL Server 2005[/B]. I would like to build this based on [B]Unicode characters so that all the data from user interface can be stored in the database … | |
Re: [b]>Can anybody share how to import Gmail, Yahoo and Live contacts via ASP.NET ?[/b] GMAIL API. (Please check open source - sourceforge.net) | |
Re: [QUOTE=prasri2007;1235832]i am using access db plz tell me how to insert data from database. m using visual studio 2010.[/QUOTE] Firstly, tell us the name of database product you are using. Secondly, learn the ADO.NET class library through this library you can perform any database actions. | |
Re: [URL="http://code.msdn.microsoft.com/mschart"]Here [/URL]is Samples Environment for Microsoft Chart Controls. | |
Re: Handle the MouseLeave event of ContentMenuStrip. [code] private void contextMenuStrip1_MouseLeave(object sender, EventArgs e) { contextMenuStrip1.Hide(); } [/code] | |
Re: Why don't you tell us what you're trying to do and we can tell you how to go about it. You must have to post your problem here. | |
Re: Hangman.class and .htm/.html must reside in the same folder. | |
Re: [QUOTE=saj_amo;1235127]hi friends, i have one string field in which i am converting time value and value of that string is "-1:00:00" but i want that in my report it checks that if that field contains negative value than converts it in positive please help me out.[/QUOTE] Take a look at … | |
Re: [QUOTE]Can anyone help me out in calling a JavaScript function from ASP.Net or if anyone can direct me to a good site/tutorial defining things in detail example (working) code would also be great great benefit :) Thank you[/QUOTE] Take a look at my favorite article - [URL="http://msdn.microsoft.com/en-us/library/aa479011.aspx"]Using JavaScript Along with … | |
Re: Read xml doc through XDocuemt (LINQ). [code] XDocument doc = XDocument.Load(file); string att = ""; foreach (XElement ele in doc.Descendants("book")) { if (ele.HasAttributes) { att = ""; foreach (var at in ele.Attributes() ) { att = att + at.Name + " : " + at.Value; } } MessageBox.Show(ele.Name + " … | |
Re: Image.FromFile() is faster than ImageLocation. Use pt.Image=Image.FromFile("file"). | |
Re: [QUOTE=sdhawan;1237955]Hi Guys, I want to know how can you add image to a part of word .I ll explain it further...suppose i display some text on a text box , now what i want to do is , suppose i have a word 'horse' in my text and i want … | |
Re: [b]>It should connect to the sql server express then create a data table called 'table', then create two collumns.[/b] No need to create a DataTable. [code] private void btnSave_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(); SqlCommand cmd = new SqlCommand(); con.ConnectionString = "Data Source=(local);Initial Catalog = test; … | |
Re: Please have a look at this tutorial - [url]http://msdn.microsoft.com/en-us/library/aa308962%28VS.71%29.aspx#cpsmpchatsample[/url] | |
Re: Please show us your code. [code] if (Listbox1.SelectedIndex == Listbox1.Items.Count - 1) { } [/code] | |
Re: Welcome @neel99. Please do not resurrect threads that are years old. By doing so you run the risk of confusing current posters. If you have any questions please ask. You are welcome to start your own threads. Thread Closed. | |
Re: [code] foreach (DictionaryEntry n in hashTableObject) { if(n.Value==value_you_want_to_compare) { //you will get a key - n.Key break; } } [/code] | |
Re: [b]>How to sequential filter/Select multiple combobox w/ just one DataSet[/b] Have an instance of DataView from your dataset and use RowFilter property. [code] DataView dv=ds.Tables[0].DefaultView; dv.RowFiler="column_name='" + value1 + "'"; // non-numeric column data type. //OR dv.RowFiler="column_name=" + value1 + ""; // numeric column data type. [/code] | |
Re: [QUOTE=yukikochan;1238015]i'm just a newbie here in c# and still a lot more to learn, but i just want to know how can i convert into uppercase the first letter in a textbox inputted by the user if they input a lowercase letter. can somebody help me? please..just needed to complete … | |
Re: [QUOTE=yukikochan;1238029]can naybody help me how can i get data from sql database and display it in a listbox or combobox? thanks for the help.[/QUOTE] Learn/use ADO.NET classes (Data providers & DataSet) | |
Re: [QUOTE] MY QUESTION is when I connected the database with Access USING GRIDVIEW, if the Access table is empty, I could not see the gridview on the internet, but the table has some data, I would see the gridview on the internet, WHY? HOW TO FIX? THANKS.[/QUOTE] Add your text/message … | |
Re: Use/Learn[URL="http://msdn.microsoft.com/en-us/library/7taxzxka%28VS.80%29.aspx"]AddHandler [/URL]statement. | |
Re: [QUOTE=ketansingh9;1235968]Yes...I want a webpage which is similar to Daniweb Forum...[/QUOTE] It's an easy - learn HTML, CSS, JavaScript, JQuery and add graphics stuff. | |
Re: Please read the rules before posting again, in particular the 'keep it organized' one - subject titles such as 'help urgent' are not allowed. If you hit 10 infraction points your account gets an automatic ban, so it is worth obeying the rules if you want to continue to benefit … | |
Re: You could use [B]Session[/B]. Create a copy of selected rows (Use List,array, or datatable). | |
Re: Read excel document using [URL="http://www.codeproject.com/KB/office/excel_using_oledb.aspx"]OleDB [/URL]provider. | |
Re: Thread Closed (Double thread) - [url]http://www.daniweb.com/forums/thread286480.html[/url] | |
Re: @golden_leo I'm glad you got it helpful. Please do not resurrect old threads. If you have any questions please ask. You are welcome to start your own threads. Thread Closed. | |
Re: I'm glad you got it helpful. Please do not resurrect old threads. If you have any questions please ask. You are welcome to start your own threads. Thread Closed. | |
Re: [QUOTE=sarithak;890645]Hi frnds... I am new to Joomla... My next project is in Joomla..Where can i put PHP code in my new joomla page.How can i do it? plz tell me some idea regarding this.. Thanks Saritha K[/QUOTE] Joomla is content management system (framework) written entirely in PHP. >Where can i … | |
Re: [QUOTE=nebyas;1235606]How to implement a simple workflow system? eg: A user submit his leave application, which will be forwarded to his boss. The Boss approves it and forward it to another department and finalizes the approval. The user should know the status of the application, where it is. Please provide me … | |
Re: [b]>The error message shows the violation of primary key constrain.[/b] Write a store-procedure which inserts if concern primary key is not found in a database. Please show us your code. | |
Re: Please put your code here. Posting code might help you. | |
Re: Read this MSDN page - [url]http://msdn.microsoft.com/en-us/library/aa479011.aspx[/url] | |
Re: It's JQuery plug-ins. Take a look at [url]http://jonraasch.com/blog/drawing-with-css[/url] | |
Re: Read this MSDN page - [url]http://msdn.microsoft.com/en-us/library/aa479011.aspx[/url] | |
Re: Please tell us at which line number you got exception. To create a copy of datatable read this MSDN page - [url]http://msdn.microsoft.com/en-us/library/system.data.datatable.copy.aspx[/url] |
The End.