No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Re: Need free C++ eBooks: Visit http://www.geocities.com/cppforlife/ebooks.html | |
Re: I think you mean mean it this way: Before we process input from form we should validate it by using javascript. To validate checkboxes or any other elements of the form you should put return statement in the onSubmit statement>>> [CODE] <script language=javascript> function validate(){ var email=document.forms[0].email.value; var comment=document.forms[0].comment.value; if(email==""||(email.indexOf('@')==-1)||(email.indexOf('.')==-1)){ … | |
Re: I think he meant how to do the drop down list like when you typing in the google sugest search ( [url]http://www.google.com/webhp?complete=1&hl=en[/url] ). | |
Re: try to use this method -> [url]http://www.haneng.com/Forums_Post.asp?id=11457&p=7[/url] | |
Re: To get input like you want you should use html and perl (or any other lang) [CODE]------some.html--------- .... <form method=get action='some.pl'> <input type=text name=file value=text> <input type=text name=file2 value=text2> </from> ....[/CODE] this makes some.html?file=text&file2=text2 [CODE]-----some.pl------ .... $tempbuffer=$ENV{'QUERY_STRING'}; #reads file=test&file2=text2 .... #then you just split them up and do something[/CODE] | |
What was your fisrt complete project? -------------- Just to know what people made. | |
Everyone knows yahoo mail. When you just logged on to your account you see on the page "[B]You have 0 unread messages[/B]". I just womdered is there any way how can i find something on the page using javascript and return as variable. So what i've done is: 1. I … | |
Re: you mean win32 or vcl? [B]win32 API:[/B] [url]http://www.functionx.com/win32/index.htm[/url] **** [url]http://www.winprog.org/tutorial/[/url] *** or visit this page for complete list of them and others: [url]http://www.geocities.com/cppforlife/links.html[/url] [B]vcl:[/B] [url]http://www.visualcomponentlibrary.com/bcb/[/url] **** | |
Re: Try create function in javascript like below: [CODE]<script language=javascript> function thankYou(){ var win=window.open('your popup url', 'thank you', 'window_options'); } </script>[/CODE] and insert in the body tag: [CODE]<body onunload="thankYou()">[/CODE] not sure. try it. | |
Can someone point me to some nice tutorial about CGI using C++! Tahnk you. | |
Re: You 're right. I met this question on other forum like about 20 times. Better create a separate snippet for this program!!! | |
Hello all! This is very good site and i liked it. My name is dmitriy and i am russian. I am new to C++ (about 3 month ) but i like it so much. | |
Re: Ok, i found that switchImage(place) didn't have closing bracket so that's why was error. (I think so). I didn't see slideshow images but i suppose that it will work. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>KD Builders</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link … | |
Re: You can use Win32 API to do that. Nice example of using API @ [B][URL=http://www.daniweb.com/code/showsnippet.php?codeid=173]http://www.daniweb.com/code/showsnippet.php?codeid=173[/URL][/B] Any more questions? ->>[EMAIL=cppforlife@yahoo.com]cppforlife@yahoo.com[/EMAIL] |
The End.