5,346 Posted Topics
Re: Thanks, Mark this thread as Solved if you get solution. | |
Re: Welcome desmiserables. Read this [URL="http://www.daniweb.com/forums/announcement58-3.html"]announcement - How to post source code using bb code tags?[/URL]. Which section of your program creates a problem for you? Is your class implements KeyListener interface?. Your source code must be surrounded by BB code tags; If you have a code then post it. | |
Re: Your title should be "Browser can't display images" >I create a web site using css and lot of image when i upload on the apache server all the thing can not be display on my pc or in other pc when i access the address. So any [COLOR="Red"]genius[/COLOR] help me … | |
Re: switch(expression) - where expression must be of int or char data type. | |
Re: >where can i find a working source code for these ciphers ... Why are looking here? It's there. | |
| |
Re: Dear, You must have to use bb code tags to format your source code. Read [URL="http://www.daniweb.com/forums/announcement8-3.html"]How to use bb code tag?[/URL]. | |
Re: Welcome, Your source code must be surrounded by bb code tags. You must read [URL="http://www.daniweb.com/forums/announcement8-3.html"]How to post source code using bb code tags?[/URL] >please help me ? i dont enough time to correct it. can u answer my problem ? Where did you spend it? | |
Re: Post source code using bb code tags. Read [URL="http://www.daniweb.com/forums/announcement9-3.html"]How to use bb code tags?[/URL] Start to read - ADO.NET class library from the books or MSDN online pages. | |
Re: Your have to set environment variable PATH with "C:\j2sdk1.4.1\bin>". However you may run this program. [CODE=Java] C:\j2sdk1.4.1\bin>java -classpath d:\oracle\product\10.2.0\db1\jdbc\lib;c:\; OraThin [/CODE] | |
Re: Do you know the difference between GetMessage and PickMessage function? Here is a text for you. You can use the PeekMessage function to examine a message queue during a lengthy operation. PeekMessage is similar to the GetMessage function; both check a message queue for a message that matches the filter … | |
Re: Use BB Code tags to place source code in well format. [CODE=C#] ... DateTime dt=new DateTime(t3.Ticks()); .. .. [/CODE] | |
Re: This is 22nd post and yet your code is not surrounded with BB code tags. Can I see your source code and also table structure? | |
Re: >Can you give me some idea on how to connect to an https site which requires user name and password? I would like to download or upload a file to the https using Java. Is this possible? Yes it is. Java Secure Socket Extension (JSSE). JSSE enables secure Internet communications. … | |
Re: Use DefaultCellStyle.Format property. I presume that the column number 3rd is of date datatype. [CODE=C#] dataGridView1.Columns[2].DefaultCellStyle.Format = "HH:mm:ss"; [/CODE] | |
Re: Welcome web development. A message from class library - develop once and reuse many times. There are two ways to use classes : 1. Composition. 2. Inheritance. | |
Re: Welcome Firefly1985. Your source code must be surrounded by bb code tags. Read this article - [URL="http://www.daniweb.com/forums/announcement24-4.html"]How to use bb code tags?[/URL] Your class definition consists two fields: [CODE=C#] static public int sctr = 0; // static field public int ctr = 0; // instance field [/CODE] A static fields … | |
Re: Keep your post well-formated. Use BB code tags. >the username and password is not declared.. It means you haven't place textboxes named "username" and "password". Check the ID property of TextBoxes. | |
Re: Axiom 3D Engine is an open-source, cross-platform 3D graphics rendering engine for .NET and Mono. Visit [URL="http://axiomengine.sourceforge.net/mediawiki-1.13.2/index.php/Main_Page"]http://axiomengine.sourceforge.net/mediawiki-1.13.2/index.php/Main_Page[/URL] | |
Re: Really Simple Syndication - is a web feed formats used to publish frequently updated work like blogs meta, news headlines,and many more things in a standardized format. RSS document is an XML document so you may read or manipulate with any standard xml parser - DOM, SAX ,etc. or Try … | |
Re: Where you failed? - Do you want to pass value to date parameter ?or you want to create a date parameter. | |
Re: Well you may use java.net package classes (URL,URI) and JSSE - Java Secure Socket Extension classes. | |
Re: Sort two strings in ascending order and compare two strings character by character. | |
| |
Re: Which type of vb.net application are you developing? Is it web or desktop (windows)? | |
Re: Your post title does not convey your problem. Use ListView1.TopItem property [CODE=VB.NET] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim k As New ListViewItem(TextBox1.Text) k.SubItems.Add(TextBox2.Text) ListView1.Items.Add(k) ListView1.TopItem = k End Sub [/CODE] | |
Re: >kishoregund>I have deployed my application at the client side using .net 2.0. I am getting a datetime parsing error. Check the regional setting of your client's machine. >The error log shows some wierd date format - "17/mm/31/mm/2009 1:24:39" for "06/18/2009 1:24:39". The code parse the system.date. Can I see the … | |
Re: Welcome Fahim. Try this code: Drop a TabControl and two buttons namely Button1 and Button2. [CODE=VB.NET] 'To add a new tab Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim p As New TabPage p.Text = "New" TabControl1.TabPages.Add(p) End Sub ' To delete a selected tab … | |
Re: Welcome raja1234. >Can i set multiple font for a textbox in aspx page. (as per user selection) You may design your web page to display text in different language. You may do this using Globalization and Localization feature of asp.net. So you have to learn - Globalization/Localization if you are … | |
Re: If you are new to JSP then read a book (JSP-Servlet). > may I use java applet to create the (log in) page and form pages. You can use an applet but they are avoided due to security problems. >I have two .....nsferred the programs to Linux easily, is it … | |
Re: With little modification now, your code is working. [CODE=Jsp] BufferedImage image = (BufferedImage)session.getAttribute("image"); String path = application.getRealPath("/"); String imagePath = path+"images//mapimage.jpeg"; File file =new File(imagePath); FileOutputStream fos=new FileOutputStream(file); ImageIO.write(image,"jpg",fos); fos.flush(); fos.close(); [/CODE] | |
Re: >1. I need to show only one row from databse for example row1 then row 2. Fetch all rows from the table and add them to an array. Once all rows are added to an array then create session key to hold an array. The following code might help you. … | |
Re: Here is the code (not tested) [CODE=PHP] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Send Email</title> <link rel="stylesheet" type="text/css" href="style_send.css" /> </head> <body> <div id ="outside_container"> <div id="wrapper"> <div id="head"> </div> <div id = "content"> <p><strong>Private:</strong> For Staff use … | |
Re: You should have to try to write a simple project proposal before you start to code. This will help you boost your confidence. Further, you can plan to create UML - high level, low-level, class diagram, object diagram etc. | |
Re: >i realise i only can read the whole column at a time instead of row by row. You are wrong. | |
Re: Welcome juser11. Your source code must be surronded by BB code tags. Read more about [URL="http://www.daniweb.com/forums/announcement18-4.html"]BB code tags[/URL] [CODE=Java] proc = conn.prepareCall("{call prc_ins_dvd_info(?,?)}"); proc.setInt(1,id); proc.setString(2,title); proc.execute(); [/CODE] | |
Re: Welcome jusmeehh. Your source code must be surrounded by BB code tags. You must have to [URL="http://www.daniweb.com/forums/announcement17-4.html"] How to use BB Code tags?[/URL] You should post your question in C forum. | |
Re: Class PaintPanel must implements MouseListener. | |
Re: Welcome Raouldukey. Please follows 1. Select your data file. 2. In properties windows - set Copy To Output Directory with "Copy is newer" (In this way a file in your project will automatically added to your deploment folder - \debug\bin.) | |
Re: I read following lines from java documentation about security element of jnlp. [QUOTE]Each application is, by default, run in a restricted execution environment, similar to the Applet sandbox. The security element can be used to request unrestricted access. If the [COLOR="Red"]all-permissions [/COLOR]element is specified, the application will have full access … | |
Re: Your source code must surrounded with BB code tags. Read [URL="http://www.daniweb.com/forums/announcement18-4.html"]How to use bb code tags?[/URL] You should post your question in ASP.NET forum. Web application uses root relative path and your images or files must be placed under the root of your web application. You may use ~ root … | |
Re: HTTP is a stateless request-response protocol. In other words, client sends a request and the server responds. The state of client and server are not maintained or altered by the exchange and no record of the request is kept. For implementing flexible business transactions across multiple requests and responses, we … | |
Re: Welcome Tini791. Your code show that you are deleting 1st record from the dataset and not from the listbox. Please clarify it. | |
Re: You have to mention the name of function and address of handler with pthread_create arguments. [CODE=C++] pthread_create( &handler, NULL, o.myfun, NULL); [/CODE] | |
Re: Look at modulo (%) operator and conditional operator. Conditional operator execute k+1 if an expression 100%k evalutes non-zero. A result of an expression 100%k is 0 (zero) so an expression k-1 will be executed. | |
Re: Your problem is regarding to the Web so your post should be moved to Jsp forum. However you said: >may I create the form in java applet Yes you may. ShowDocument method will be used. >if I create the form using java applet, so this java applet program must be … | |
Re: Read this [URL="http://www.daniweb.com/forums/announcement18-4.html"]How to post problems using bb code tags?[/URL]. MS-SQL Express edition support Windows authentication system only. Remove User Id, and Password attributes. [CODE=ASP.NET] sConnString = "Provider=SQLOLEDB;Data Source=AGUSTTIN\SQLEXPRESS;Initial Catalog=CourierSystem;Integrated Security=SSPI"; [/CODE] | |
Re: >ChrisCan Crystal Reports be used with MySQL? If not, what reporting tool do you recommend? Crystal Report uses different data sources including MySQL. Open Source : [URL="http://datavision.sourceforge.net/"]http://datavision.sourceforge.net/[/URL] |
The End.