- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 4
- Posts with Downvotes
- 4
- Downvoting Members
- 4
33 Posted Topics
Hi, Please anyone help me out............ I want the users to enter the data in the textbox of the minimum length of "10" and maximum length can be "ANY"(or above "10"). Thanks in advance........................... | |
The below coding is the javascript coding in which i have used [B]AJAX coding also[/B].its only pagenavigation coding. [CODE]function change(which) { if(which=="page1") { document.getElementById(which).style.borderBottomColor="white"; document.getElementById("page2").style.borderBottomColor="#778"; document.getElementById("page3").style.borderBottomColor="#778"; document.getElementById("page4").style.borderBottomColor="#778"; } else if(which=="page2") { document.getElementById(which).style.borderBottomColor="white"; document.getElementById("page3").style.borderBottomColor="#778"; document.getElementById("page4").style.borderBottomColor="#778"; document.getElementById("page1").style.borderBottomColor="#778"; } else if(which=="page3") { document.getElementById(which).style.borderBottomColor="white"; document.getElementById("page4").style.borderBottomColor="#778"; document.getElementById("page1").style.borderBottomColor="#778"; document.getElementById("page2").style.borderBottomColor="#778"; } else if(which=="page4") { document.getElementById(which).style.borderBottomColor="white"; document.getElementById("page1").style.borderBottomColor="#778"; document.getElementById("page2").style.borderBottomColor="#778"; … | |
hi, please help me out.... I want to get the values of the checkbox, if i checked or if i unchecked. first time,i have checked the checkbox and the values is coming correctly to me and at the same time, when i unchecked the same checkbox and the values is … | |
Hi, This is my perl program.......... [CODE]#!c:/perl/bin/perl use CGI qw(:all); $pfaccode=param('faccode'); $pprogramme=param('programme'); $pdeptcode=param('deptcode'); $pbrancode=param('brancode'); $psemester=param('semester'); $pkook = cookie(-name=>'logtime'); print "Content-type: text/html\n\n"; print "<body bgcolor=\"#ffcccc\">"; use DBI; my $dbh = DBI->connect("DBI:ODBC:wwwdsn","webid","dibew") or die "Cant connect: $DBI::errstr\n"; my $sth = $dbh->prepare("select kid from facltmst where faccode = ?") or die "Can not … | |
hi, i am very new AJAX.i have some assignment. if i am clicking any menus means target location must be in [B]PARENT ITSELF[/B].it should not open another windows.As like frameset,but i dont need to use frameset.I want to use AJAX with javascript............ please give me a sample coding. | |
Hi, This is my coding......... Private Sub Command1_Click() Dim xlApp As Excel.Application Dim Wb As Excel.Workbook Dim ws As Excel.Worksheet Dim name As String Set xlApp = New Excel.Application Set Wb = xlApp.Workbooks.Open("E:\Projects\VB Excel to textfile\crse.xls") Set ws = Wb.Sheets(1) Open "C:\rolllist.xls" For Output As #1 For i = 1 … | |
hi, please tell me, [B]how to set or specify the "URL Name" ?[/B] [B]for example: [url]www.yahoomail.com,www.daniweb.com[/url] etc [/B] | |
Hi, Please help me out.How to add images in the PDF file using php? I tried this coding : [code=php]<?php $pdf = PDF_new(); PDF_open_file($pdf,''); PDF_begin_page($pdf,595,842); $image = PDF_load_image($pdf,"png","myimage.png",""); PDF_place_image($pdf,$image,64,26,.24); ?>[/code] But i am facing an error while running this code: [B] Fatal error: Uncaught exception 'PDFlibException' with message 'Handle parameter … | |
Hi, I want to [B]check only one checkbox[/B] at a time using html. please help me out.... | |
Hi, By clicking the button first time - it opens the form. if i try the same thing(in second time) .....In my form only [B]one textbox(using as a lostfocus[/B] and also using recordset[sql]) [B] Runtime Error '3367' : Object is already in collection.Cannot Append.[/B] Please ,help me out..........thanks in advance............ | |
Hi, 1. I am trying to print in the A4 size paper . 2. Dividing the A4 size paper into 2 half. 3. In this , 2 half its printing . for ex: in the first half : printing 01 rollno details in the second half : printing 02 rollno … | |
hi, [B] i had one field in the table(field name: crseid).[/B] for example,i am having 500 courses.i want to start the crseid from :6000(4 digit number) [B]output: 6001 6002 6003 . . . . 6500[/B] this value must be inserted into my table. thanks in advance | |
Hi, This is my code : Dim fullreason As String fullreason = " " Do While Not rswithd.EOF Dim fs As Integer fullreason = Trim(fullreason) + " " + "and" + Trim(rswithd!reason) Print #1, Trim(fullreason) Loop for example : fullreason contain values "10 pencil". i want only "10" from this … | |
Hi, I want to authenticate the "Username" and the "Password" using adldap in php. OS = linux machine Thanks in advance........ with regards, santhanalakshmi. | |
Hi, Anyone,please help me out.How to give ODBC Connection on Centos5.5(linux machine) and also what do you meant by FREETDS? Thanks in advance............... with regards, santhanalakshmi. | |
Hi, [B]This was Mysql Backup Batch Script [/B] Script named as [B]mysqlbackup.bat[/B] REM [at] echo off for /f "tokens=1" %%i in ('date /t') do set DATE_DOW=%%i for /f "tokens=2" %%i in ('date /t') do set DATE_DAY=%%i for /f %%i in ('echo %date_day:/=-%') do set DATE_DAY=%%i for /f %%i in ('time … | |
Hi, I wish to do PHP Cerification.I dont have any idea.How to do PHP certification?What are the procedures to do?Is there any PHP Certification Material.........Please tell me with regards, santhanalakshmi. | |
Hi, How to connect visual basic program with mysql database?I need a sample program of retrieving the data and also inserting the data into the table using mysql database..........I dont have any idea..... please help me ....... Regards, Santhanalakshmi. | |
Hi, I have installed the **mysql connector ODBC 3.51** on the remote machine as well as on the local machine. Mysql Connection with VB.Mysql Connection on the local machine its working fine. cn1.ConnectionString = "driver={MySQL ODBC 3.51 Driver};server=localhost;database=dummy;data source=dum;Option=3" When i trying to connect the mysql from the remote machine … | |
Hi, open(MYINPUTFILE, "<access.log"); while(<MYINPUTFILE>) { # Good practice to store $_ value because # subsequent operations may change it. my($line) = $_; # Good practice to always strip the trailing # newline from the line. chomp($line); my($time, $elapsed, $remotehost, $csp, $bytes, $method, $url, $user) = split(' ', $line); # Print … | |
Hi, How to export the data from the sql server 2000 to mysql ....Please help me.I had no idea Regards, santhanalakshmi | |
Hi, I had a login page to enter the username and password named as [B]"index.php"[/B]. when i entered to that [B]index.php [/B]page,my mouse focus should be pointed at the username textbox.... please help me........... | |
Hi, anyone help me...... I had a login page to enter the username and the password named as [B]"index.php"[/B].when i entered to the [B]index.php [/B]page,i want the mouse focus should be displayed in the textbox username. Regards, santhanalakshmi. | |
Hi, Please help me.I am new to PHP.I dont have any idea. For Example,i had set of 100 records in the table. Sample Design:PREVIOUS [U]1[/U] [U]2[/U] [U]3[/U] [U]4[/U] [U] NEXT[/U] Using PHP :if i click 1 (first 10 records must be list out in the web page) and then if … | |
Hi, I need to pass more than one value to next form using header function.this is my sample code. header('location:option.php?$uname='.$myusername.'+password='.$mypassword); i am able to pass single value,but when i tried with more than one value as above,i am facing the problem please help me.In second page i retrive the values … | |
Hi ,this is my code,see the bold letter that highlighted in this following program....If i am not redirecting this page to another page means ,i am facing big problem like for every refreshment on the browser a dummy data is get inerting into the table(last inserted values into table).to avoid … | |
Hi, Anyone,please help me ............... my first page called `index.php` (which has username and password field to enter to move on to next page) index.php code <?php session_start(); mysql_connect("localhost", "root", "")or die("cannot connect"); mysql_select_db("artedb")or die("cannot select DB"); if (isset($_POST) && ($_POST == "submit")) { if($_POST=="" && $_POST=="") { $msg="Please enter … | |
Hi, I am writing a prgram in php.when i click "log out "button ,it redirects to my first page "index.php".(username & password) and then by clicking back button in the browser ,it showing all my previous pages that i visited. I want to disable back button in the browser (javascript … | |
Hi, I was new to c# and asp.net .I want to create a simple login page using ASP.net with c# code behind.I had 2 textboxs(username and id) and 1 button control.I stored all the username and id in MS ACCESS database.Database name "user.mdb" and table name "table1" (only 2 fields … | |
Hi, I want to add one "Save Button" on web page.I am working on ".cgi" program and using "sql server 2000" database.Datas are retrieving from the database and displayed as on html page(datas are student records (i.e) marks,grade etc).In that displayed page,i want to add "save button".By clicking save,it should … | |
I have questionnaire that has two radio buttons(one is "Register" and the another one is "Drop") in it and all answers are saved in an SQL database. For Example ,when the user checked "Register" and then by clicking "Sumbit Page" the values stored in the sql database.When the user returns … | |
Hi, If Not IsNull(rs!permaddr1) Then mpaddr1 = Mid(rs!permaddr1, 1, 500) Else mpaddr1 = " " where permaddr1 is a field type of varchar(1500). Example permaddr1 = "No:11/19 , Anna Salai , Chennai-1"(from sql server retriving the values) This value is now is stored in mpaddr1. Now, My main problem is … | |
Hi, I was new to c# and asp.net .I want to create a simple login page using ASP.net with c# code behind.I had 2 textboxs(username and id) and 1 button control.I stored all the username and id in MS ACCESS database.Database name "user.mdb" and table name "table1" (only 2 fields … |
The End.