5,346 Posted Topics

Member Avatar for sotvisal

sotvisal, Use bb code tags. Your source code must be surrounded with bb code tags. For example, [CODE=Java] ... statements ... [/CODE] You have an array of 20 student object variables. Now, you have to create 20 objects of student class. class Light { Customer cus[]; public Light() { long …

Member Avatar for kvprajapati
0
141
Member Avatar for anupjp
Member Avatar for knudmt
Member Avatar for knudmt
0
143
Member Avatar for metzenes

metzenes, Use typedef. [CODE=C++] typedef vector<vector<vector<string> > > Mat; Mat getData() { ... } [/CODE]

Member Avatar for jencas
0
332
Member Avatar for laghaterohan

laghaterohan, What is and where is your problem? [QUOTE]Update/Delete (Urgent). [/QUOTE] Is it a suitable title of this thread? Be sure about your question, use suitable title for a thread, and describe your problem along with error messages. Don't use [B]Urgent[/B]. It's bad manner.

Member Avatar for sknake
0
114
Member Avatar for umair125

Welcome umair125, We are willing to help you. Please read the rules at daniweb. 1. Title of post must be a short description of your question. ---- Do not use "urgent help plz read". 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to use bb code tag?[/URL] A guideline to use message editor. 3. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework rule.[/URL]

Member Avatar for Ancient Dragon
-1
480
Member Avatar for fghdmhmmd

fghdmhmmd, [QUOTE]how to design multi pages in crytal report ?[/QUOTE] I think you are thinking about sub report. Isn't it?

Member Avatar for fghdmhmmd
0
104
Member Avatar for DoEds
Member Avatar for tux4life
0
108
Member Avatar for gshockneo

Read a cookie in login page, Redirect the user if cookies is found. If cookie is not found then allows user to submit username, andpassword. Once, user is authenticated by your system then create a cookie.

Member Avatar for peter_budo
0
109
Member Avatar for ddanbe

Hi danny, I have some suggestions: Use AntiAlias for both text & drawing objects. [CODE=C#] G.SmoothingMode = SmoothingMode.AntiAlias; G.InterpolationMode = InterpolationMode.NearestNeighbor; G.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit; [/CODE] and also outline the outermost ellipse. [CODE=C#] .... R.Inflate(-1, -1); Pen pen = new Pen(linBr); pen.Width = 1f; G.DrawEllipse(pen, R); R.Inflate(1, 1); G.FillEllipse(linBr, R); ... …

Member Avatar for emarshah
0
878
Member Avatar for emarshah

emarshah, Rectangle coordinates must lie inside the bitmap. Use System.Runtime.InteropServices.Marshal.Copy method to copy bitmap value into an array (byte).

Member Avatar for emarshah
0
163
Member Avatar for VinayRok

VinayRok, Do not use UpdatePanel to upload an image. Try it without using UpdatePanel. Use code tags. >How? - see [noparse] [CODE=C#] .... statements.... [/CODE] [/noparse]

Member Avatar for kvprajapati
0
1K
Member Avatar for VernonDozier

Binary serialization not only store the state but it also preserve type fidelity. Classes - XMLEncoder, and XMLDecoder of package java.beans support xml serialization.

Member Avatar for VernonDozier
0
1K
Member Avatar for monkey_king

Read [URL="http://www.cplusplus.com/reference/iostream/istream/tellg/"]tellg[/URL] and [URL="http://www.cplusplus.com/reference/iostream/istream/seekg/"]seekg[/URL] methods.

Member Avatar for tux4life
0
482
Member Avatar for jakx12

jakx12, Use classes from System.IO.Ports namespace. Read: 1. [URL="http://support.microsoft.com/kb/823179"]http://support.microsoft.com/kb/823179[/URL] 2. [URL="http://msmvps.com/blogs/coad/archive/2005/03/23/SerialPort-_2800_RS_2D00_232-Serial-COM-Port_2900_-in-C_2300_-.NET.aspx"]http://msmvps.com/blogs/coad/archive/2005/03/23/SerialPort-_2800_RS_2D00_232-Serial-COM-Port_2900_-in-C_2300_-.NET.aspx[/URL] 3. [URL="http://www.codeproject.com/KB/system/Serialport_COM.aspx"]Article[/URL]

Member Avatar for jakx12
0
96
Member Avatar for Shaitan00

Shaitan00, I think you are working on a code. It's too early to comment on your work. >how can I parse the string> Use find and substr methods.

Member Avatar for jencas
0
191
Member Avatar for anish.anick
Member Avatar for kvprajapati
0
3K
Member Avatar for multicoder
Member Avatar for Vandithar
Member Avatar for mahdi68

mahdi68, Java component - class,interface, or a package (classes/interfaces). If it is a class then, 1. Create an object 2. Or extends (inherit) it. If it is an interface, implement it.

Member Avatar for kvprajapati
0
61
Member Avatar for jpd85

soumitaabasu, First post of each thread is a question and rest posts are conversation. If you have a problem regarding to programming then create a new thread. Now, before you post any question please read the rules of this forum: 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework Policy[/URL] 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post your question?[/URL] @sotvisal …

Member Avatar for kvprajapati
1
113
Member Avatar for elidotnet

elidotnet, Wrap up source code with bb code tags. [URL="http://www.daniweb.com/forums/announcement118-3.html"]Read - How to use bb code tags?[/URL] Like, [noparse] [CODE=C#] .... statements.. ... [/CODE] [/noparse]

Member Avatar for elidotnet
0
136
Member Avatar for sweetsasthi

sweetsasthi, Use five textboxes and a button to add a new record and a DataGridView to list those records.

Member Avatar for Piya27
0
96
Member Avatar for Chris11246

For windows application, set KeyPreview property of Form to True and handle key (KeyPress, KeyDown....) events.

Member Avatar for Chris11246
0
80
Member Avatar for Tamir09

Tamir09, [QUOTE]I need to keep with this original code as far as the serializing of the data is concerned, I just need to remove the 'ExistingData' component from the code, and still be able to write data to the xml. [/QUOTE] Do you want to modify the XML document or …

Member Avatar for Tamir09
0
183
Member Avatar for lotrsimp12345

readinput() is a method of class. [CODE=C++] void copyname::readinput(ifstream& input) { string name; getline(input,name); cout<<name; } [/CODE]

Member Avatar for lotrsimp12345
0
201
Member Avatar for anusha88

anusha88, Create two panels - one for chart and another for other components.

Member Avatar for kvprajapati
0
318
Member Avatar for cmg777

FormView control especially used to add/delete/update a table record. GridView has options to view list of rows and edit/delete individually. Use database if you want to store data for a long time and also you may retrieve it using simple sql statement.

Member Avatar for kvprajapati
0
152
Member Avatar for SuperErik
Member Avatar for peter_budo

If I am not wrong, you want to show pdf objects - Box, Resources, Images. Am I right?

Member Avatar for masijade
0
98
Member Avatar for sgsawant

If your program file has package statement then all these classes defined inside the file must be stored into package name folder. Example in above post: [CODE=Java] >javac AccountBalance.java -d . [/CODE] statement creates a folder MyPack in current directory (. with command line) and both Balance.class and AccountBalance.class files …

Member Avatar for sgsawant
0
416
Member Avatar for sivak

Thanks sknake, Informative thread. I would like to add few things: StringBuilder represents a mutable string of characters - it can be modified once it has been created by appending, removing, replacing, or inserting characters. String objects are immutable. Its value cannot be modified once it has been created.

Member Avatar for serkan sendur
0
109
Member Avatar for AnkitKumar
Member Avatar for kspriya01

Dear kspriya01, Use Columns collection [CODE=C#] dataGridView1.Columns[0].Width = 500; [/CODE]

Member Avatar for serkan sendur
0
90
Member Avatar for seebharath

Your question is blongs to the ASP.NET forum. Use Session.TimeOut property to set/get timeout in minutes (20 minutes is default value).

Member Avatar for serkan sendur
0
89
Member Avatar for deedatm
Re: HELP

Welcome deedatm, Generally, a title of the thread signify the problem or question definition. I think your problem is "HELP". Read the rule: 1. Use meaningful title for a thread. 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to use bb code tags?[/URL] 3. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework rule[/URL]

Member Avatar for serkan sendur
0
108
Member Avatar for winkler

Welcome winkler, Event selectedIndexChanged will be fired when index of an item get changed. But with DoubleClick - There is no way to execute selectedIndexChanged. Please verify your code.

Member Avatar for winkler
0
770
Member Avatar for anshusharma

anshusharma, Use netbeans. Read more about axix2 - [URL="http://ws.apache.org/axis2/1_4_1/quickstartguide.html"]http://ws.apache.org/axis2/1_4_1/quickstartguide.html[/URL]

Member Avatar for peter_budo
0
99
Member Avatar for lagspike
Member Avatar for mana_panigrahi
Member Avatar for me8042

[QUOTE]i want to to insert the same ID number into the corresponding ID number..[/QUOTE] Use insert query.

Member Avatar for kvprajapati
0
120
Member Avatar for kapu
Member Avatar for chindaara
Member Avatar for Piya27

So, do not use DataBind() method. Please follows all steps of thread #2 - [B]lighthead[/B] except 5th. DataBind() is method of ASP.NET server control.

Member Avatar for kvprajapati
0
155
Member Avatar for adamdk
Member Avatar for vytla

Ramesh S, 32nd post and you are missing code tags. [noparse] [CODE=ASP.NET] .... .... [/CODE] [/noparse]

Member Avatar for kvprajapati
0
157
Member Avatar for babbu

babbu, Use bb code tags. Source code must be surrounded with bb code tags. Parameter identifier may be vary from one database to another database. Which database are you using?

Member Avatar for kvprajapati
0
523
Member Avatar for firoz.raj
Member Avatar for Web_Sailor
Member Avatar for nccsbim071

nccsbim071, [QUOTE] have business requirement and i need to diplay records of data in certain format.[/QUOTE] Post your code so we can help you. Source program must be surrounded with BB code tags: See # icon at toolbar and also read [URL="http://www.daniweb.com/forums/announcement61-3.html"]How to use bb code tags?[/URL].

Member Avatar for nccsbim071
0
154

The End.