5,346 Posted Topics

Member Avatar for Atlantistwo

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.

Member Avatar for kvprajapati
0
164
Member Avatar for Killer_Typo

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.

Member Avatar for kvprajapati
0
856
Member Avatar for udayasankark

[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.

Member Avatar for kvprajapati
0
506
Member Avatar for maria_mj

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]

Member Avatar for abhinaba
0
195
Member Avatar for igalbk

Have a look at this thread - [url]http://social.msdn.microsoft.com/Forums/en-US/vsto/thread/70335d66-d66d-4f62-878d-2d37f5daddee[/url]

Member Avatar for igalbk
0
334
Member Avatar for seebharath

[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.

Member Avatar for gusano79
-1
880
Member Avatar for Mutagen

[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 …

Member Avatar for kvprajapati
0
94
Member Avatar for georgioarmani

Take a look at connection string for dbf/foxpro. [url]http://www.connectionstrings.com/dbf-foxpro[/url]

Member Avatar for kvprajapati
0
195
Member Avatar for ticktock

[b]>Format for storing and reading date time to oledb[/b] Check the regional settings (Control panel).

Member Avatar for kvprajapati
0
359
Member Avatar for raghum87

[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 …

Member Avatar for kvprajapati
0
154
Member Avatar for nccsbim071

I'm regular of stackoverflow. Good answer by Adam - [url]http://stackoverflow.com/questions/2994740/read-email-from-incoming-mail-serverpop[/url]

Member Avatar for kvprajapati
1
323
Member Avatar for Mikey12345
Member Avatar for kvprajapati
0
98
Member Avatar for nozzers

[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]

Member Avatar for kvprajapati
0
81
Member Avatar for neo.mn

[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 …

Member Avatar for kvprajapati
0
111
Member Avatar for killoldesai

[b]>Can anybody share how to import Gmail, Yahoo and Live contacts via ASP.NET ?[/b] GMAIL API. (Please check open source - sourceforge.net)

Member Avatar for karthikdotnet
0
151
Member Avatar for prasri2007

[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.

Member Avatar for samacoba
0
154
Member Avatar for praki87

[URL="http://code.msdn.microsoft.com/mschart"]Here [/URL]is Samples Environment for Microsoft Chart Controls.

Member Avatar for MHMQassem
-1
63
Member Avatar for skybomb0

Handle the MouseLeave event of ContentMenuStrip. [code] private void contextMenuStrip1_MouseLeave(object sender, EventArgs e) { contextMenuStrip1.Hide(); } [/code]

Member Avatar for skybomb0
0
200
Member Avatar for sdhawan

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.

Member Avatar for sdhawan
0
155
Member Avatar for sciprog1
Member Avatar for saj_amo

[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 …

Member Avatar for saj_amo
0
81
Member Avatar for Z_KiNGPiN

[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 …

Member Avatar for Z_KiNGPiN
0
185
Member Avatar for Edvin76

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 + " …

Member Avatar for Edvin76
0
169
Member Avatar for Gospp

Image.FromFile() is faster than ImageLocation. Use pt.Image=Image.FromFile("file").

Member Avatar for stratemeyerjw
0
1K
Member Avatar for sdhawan

[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 …

Member Avatar for sdhawan
0
76
Member Avatar for kibr987

[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; …

Member Avatar for finito
1
79
Member Avatar for reza.adinata

Please have a look at this tutorial - [url]http://msdn.microsoft.com/en-us/library/aa308962%28VS.71%29.aspx#cpsmpchatsample[/url]

Member Avatar for reza.adinata
0
387
Member Avatar for UNOWN

Please show us your code. [code] if (Listbox1.SelectedIndex == Listbox1.Items.Count - 1) { } [/code]

Member Avatar for UNOWN
0
913
Member Avatar for Rajnesh

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.

Member Avatar for kvprajapati
0
928
Member Avatar for chandruswami

[code] foreach (DictionaryEntry n in hashTableObject) { if(n.Value==value_you_want_to_compare) { //you will get a key - n.Key break; } } [/code]

Member Avatar for kvprajapati
0
78
Member Avatar for pee2002

[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]

Member Avatar for kvprajapati
0
102
Member Avatar for yukikochan

[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 …

Member Avatar for kvprajapati
0
74
Member Avatar for yukikochan

[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)

Member Avatar for kvprajapati
0
45
Member Avatar for needanswer

[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 …

Member Avatar for needanswer
0
88
Member Avatar for Dr-Delta

Use/Learn[URL="http://msdn.microsoft.com/en-us/library/7taxzxka%28VS.80%29.aspx"]AddHandler [/URL]statement.

Member Avatar for sknake
0
254
Member Avatar for ketansingh9

[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.

Member Avatar for ketansingh9
-1
103
Member Avatar for umair.sabri

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 …

Member Avatar for dnanetwork
0
75
Member Avatar for priyankaShri
Member Avatar for kvprajapati
0
20
Member Avatar for jeet_portal

Read excel document using [URL="http://www.codeproject.com/KB/office/excel_using_oledb.aspx"]OleDB [/URL]provider.

Member Avatar for kvprajapati
0
106
Member Avatar for umair.sabri

Thread Closed (Double thread) - [url]http://www.daniweb.com/forums/thread286480.html[/url]

Member Avatar for kvprajapati
-1
80
Member Avatar for Naters_uk

@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.

Member Avatar for kvprajapati
0
287
Member Avatar for aripaka

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.

Member Avatar for kvprajapati
0
543
Member Avatar for sarithak

[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 …

Member Avatar for jwd.adodis
0
105
Member Avatar for nebyas

[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 …

Member Avatar for kvprajapati
0
80
Member Avatar for Sinha's

[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.

Member Avatar for kvprajapati
0
278
Member Avatar for jamshed ahmed
Member Avatar for iamchamith

Read this MSDN page - [url]http://msdn.microsoft.com/en-us/library/aa479011.aspx[/url]

Member Avatar for kvprajapati
0
97
Member Avatar for iamchamith

It's JQuery plug-ins. Take a look at [url]http://jonraasch.com/blog/drawing-with-css[/url]

Member Avatar for kvprajapati
0
57
Member Avatar for umair.sabri

Read this MSDN page - [url]http://msdn.microsoft.com/en-us/library/aa479011.aspx[/url]

Member Avatar for kvprajapati
0
1K
Member Avatar for tallapureddy

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]

Member Avatar for kvprajapati
0
86

The End.