5,346 Posted Topics
Re: 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 … | |
Re: Root operator ~ cannot be used with html tags & javascript. | |
Re: metzenes, Use typedef. [CODE=C++] typedef vector<vector<vector<string> > > Mat; Mat getData() { ... } [/CODE] ![]() | |
Re: 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. | |
Re: 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] | |
Re: fghdmhmmd, [QUOTE]how to design multi pages in crytal report ?[/QUOTE] I think you are thinking about sub report. Isn't it? | |
Re: DoEds, Put [B]if[/B] statements inside the while loop. | |
Re: 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. | |
Re: 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); ... … | |
Re: emarshah, Rectangle coordinates must lie inside the bitmap. Use System.Runtime.InteropServices.Marshal.Copy method to copy bitmap value into an array (byte). | |
Re: 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] | |
Re: Binary serialization not only store the state but it also preserve type fidelity. Classes - XMLEncoder, and XMLDecoder of package java.beans support xml serialization. | |
Re: 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. | |
Re: 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] | |
Re: 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. ![]() | |
Re: You should have to enabled - "Internet Mail Server (SMTP)" of firewall. | |
Re: multicoder, This is java forum. | |
Re: Use % (percent) pattern match character. | |
Re: 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. | |
Re: 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 … | |
Re: 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] | |
Re: sweetsasthi, Use five textboxes and a button to add a new record and a DataGridView to list those records. | |
![]() | Re: For windows application, set KeyPreview property of Form to True and handle key (KeyPress, KeyDown....) events. ![]() |
Re: 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 … | |
Re: readinput() is a method of class. [CODE=C++] void copyname::readinput(ifstream& input) { string name; getline(input,name); cout<<name; } [/CODE] | |
Re: anusha88, Create two panels - one for chart and another for other components. | |
Re: 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. | |
Re: SuperErik, Use classes from System.net namespace - WebClient | |
Re: If I am not wrong, you want to show pdf objects - Box, Resources, Images. Am I right? | |
Re: 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 … | |
Re: 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. | |
Re: AnkitKumar, What would you expect? | |
Re: Dear kspriya01, Use Columns collection [CODE=C#] dataGridView1.Columns[0].Width = 500; [/CODE] | |
Re: Your question is blongs to the ASP.NET forum. Use Session.TimeOut property to set/get timeout in minutes (20 minutes is default value). | |
Re: 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] | |
Re: 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. | |
Re: 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] | |
Re: Use [CODE=C#] switch (_colour%4) [/CODE] | |
Re: [QUOTE]i want to to insert the same ID number into the corresponding ID number..[/QUOTE] Use insert query. | |
Re: 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. | |
| |
Re: Ramesh S, 32nd post and you are missing code tags. [noparse] [CODE=ASP.NET] .... .... [/CODE] [/noparse] | |
Re: 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? | |
Re: Please post the fragment of code where you want help. | |
Re: Web_Sailor, As usual; a question has to arrive yet. | |
Re: 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]. |
The End.