199,113 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for faranak

hi I'm programmer in php . when i click on my button ,i want to post a string like ( a + b) by javascript but it acts like concat and it posts ( a b) ! i want to show me plus symbol ( a + b) . In …

Member Avatar for peter_budo
0
78
Member Avatar for Strat79

This program is a double-linked list in C for my System's Software class. Everything worked fine, until I coded the delete() and insert() functions. The program compiles and executes on a window machine using Dev C++. It also compiles without any errors or warnings on a linux machine using gcc …

Member Avatar for ahamed101
0
238
Member Avatar for Birdie010

Can someone please tell me why I'm receiving these error messages when attempting to take on customer data from a flat file: - Error 1 Name 'OpenFileDialog1' is not declared. - Error 5 Overload resolution failed because no accessible 'Split' can be called without a narrowing conversion: 'Public Function Split(separator() …

Member Avatar for Diguelo
0
374
Member Avatar for geemicah

hi... I always having a hard time to debug all my errors.. but still, calling some functions are the most painful I guess... Will you help me on how to call some functions? thank you!

Member Avatar for geemicah
0
263
Member Avatar for hbmarar

Something off the box: I got a log file of the pattern say like this : 19876 Exception happened at heylog.php. 19878 Argument missing I need a shell script / awk which should get the file, read the line and should get me the line number displayed with that message …

Member Avatar for eggi
0
149
Member Avatar for Repurcussion

[CODE=C++] //bintree.h template<class T> class bintree { private: bin_node<T> *root; public: bintree(void); void insert(const T); void insert(const T, bin_node<T>*); }; //bintree.cpp #include "bintree.h" template<typename T> void bintree<T>::insert(const T input) { insert(input, root); } //tstatcontain is a non-template class-class class tstatcontain { private: string tname; int wins, loses, games, champ, years_playing, …

Member Avatar for grumpier
0
827
Member Avatar for abhishek29sep
Member Avatar for abhishek29sep
0
201
Member Avatar for predator78

Hey guys, Well I'm onto images now but the tutorial I'm using seems to be good but I can't understand the input process. And I know you guys are great at this stuff so thought you might lend a hand here to get me up and started. The code the …

Member Avatar for lllllIllIlllI
0
152
Member Avatar for bodomchild

Hey there, I'm kinda new to Programing and I'm still learning the basics, I have Borland C++ 5.5 program and I need to write the following program in it, any help about it would be very appreciated, please reply ASAP :) The Program is the following: [B]Write a program to …

Member Avatar for bodomchild
0
141
Member Avatar for papuccino1

Hello once again. I'm really interested in making a voice operated aplication for my computer (and those who want to download it). Where should I start reading on this subject. If I google it, I find a million answers but I'd rather have someone who knows their way let me …

Member Avatar for selvaganapathy
0
180
Member Avatar for iichi07

This another project and it is called Complex Class. Create a class called Complex for performing arithmetic with complex numbers. Y=Use double variables to represent the private data of the class. Provide a constructor that enables an object if this class to be initialized when it is declared. The constructor …

Member Avatar for iichi07
0
263
Member Avatar for atreides27

lemme preface by saying I have read the homework sticky, am not looking for someone to just give me an answer...more then anything I just want to understand this stuff...just am not looking to step on any toes and wanna make sure that's clear, and that I hope someone can …

Member Avatar for William Hemsworth
0
111
Member Avatar for gargg321

Hi all, I am writing a PHP script that executes shell commands on a linux machine. When I run this script on Linux system, it waits while it executes the command and store the result in a PHP variable. But when I run it on a web browser, the browser …

Member Avatar for digital-ether
0
335
Member Avatar for Clipper34

Hey guys, sorry if i posted this in the wrong forum. My question is, say if you have a PHP Shell used via the internet. How would you go about of uploading a file and deleting a file? Thanks, Clipper34.

Member Avatar for heenix
0
126
Member Avatar for developerx9

Dear php developer, I am a student of computing doing non commercial research into how php developers create web sites. Would you please take 5 mins to answer 6 questions on your approach to php web developing located at [url]http://webdeveloper.active.ws/[/url] Many thanks for your help [email]surveyx9@yahoo.co.uk[/email]

Member Avatar for R0bb0b
0
149
Member Avatar for vsmaddy

please someone help, i m having trouble in my project i have made a login form from which i have opened another form , now i want to close login form after opening child form pls help

Member Avatar for vsmaddy
0
116
Member Avatar for chute20

HI Guys, Dont wanna brag about it but ive got this idea of designing a lets say movie rental website which will have a database.. idealy languages would be php and mysql.. but what i want to do is a similar website that is compatible for mobile phone.. like it …

Member Avatar for chute20
0
125
Member Avatar for php2sheik

[code] order table orderid orderdate cust_name address itemno itemname qty price totalprice 54 12/09/2008 xxx yyy 5 cake 5 5 25 54 12/09/2008 xxx yyy 3 choclate 5 3 15 55 13/09/2008 www uuu 7 rice 6 6 36 55 13/09/2008 www uuu 8 biscut 1 10 10 55 13/09/2008 …

Member Avatar for heenix
0
224
Member Avatar for Run.[it]

I compiled a very basic C# program (not pointers or memory related) inside my c drive using the command prompt. I just wish to know if this is a bad move? Is it better to save all programs to the desktop and run them through the command prompt from there? …

Member Avatar for Run.[it]
0
200
Member Avatar for assgar

Hi I am having problems with sessions. When using Internet Explorer I can pass sessions to other pages. I cannot pass sessions when I use Mozilla Firefox. //at the top of the page session_start(); //value passed $last_login = $_SESSION['s_last_login'];//last user login history PHP.ini: //This is my PHP.ini file session configuration …

Member Avatar for R0bb0b
0
121
Member Avatar for predator78

Hey guys I finally got my word unscrambler working the other day, now I fire it up with same code same everything and for some reason getting double output from a list that shouldn't be. So if someone could either look this over and find a problem or maybe do …

Member Avatar for ZZucker
0
212
Member Avatar for Hinche4

I have a class screen and a class Brush both have header files and source files. The driver file shown first was provided to us so nothing should be wrong with it but I wanted to show you how it worked. [code] #include <iostream> #include <string> #include "Screen.h" #include "Brush.h" …

Member Avatar for Hinche4
0
302
Member Avatar for cam875

i am a little confused with something here. If I wanted to write a bootloader to load my kernel up and both the bootloader and the kernel are located on a floppy disk than do I have to format the floppy disk or something or have the two files a …

Member Avatar for cam875
0
98
Member Avatar for nizbit

I have a recursive method that traverses a linked list for a first name or last name then deletes the node from the list. This is what I have: [CODE=cplusplus] void game::DeleteR(string first_name, string last_name, ListNode* &node) //throw (ContestantException) { /* See if we are at end of list. */ …

Member Avatar for nizbit
0
182
Member Avatar for NinjaLink

I'm trying to add and print two matrices and get the sum by using 2-Dimensional Arrays. I have to read in 18 numbers from a file. My txt file includes: 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 Currently, my …

Member Avatar for Lerner
0
110
Member Avatar for ribot

Hello, I've got a problem with get data. To display a form I use GET data, visiting the url: [icode]page.php?a=b[/icode]. When entering the page there is a form with POST method: [icode]<form method="post">[/icode] The problem is, that when I submit this form, the get data [icode]a=b[/icode] still remains in the …

Member Avatar for ribot
0
101
Member Avatar for san_sarangkar

How can i change the priority of function? I want to run nay other function before execution of main() function.

Member Avatar for ArkM
0
322
Member Avatar for ART01

i have a prb here, i have been asked to make a procedure which recieve an array of integers,its lenght, and two integers X and Y as parameters. now the procedure needs to find X in the array and put Y ahead of it ( Y is not in the …

Member Avatar for ART01
0
108
Member Avatar for sganandhsg

Hi I`ll Set Printer preferences orientation is Portrait and Paper Size is A4, But i use data report is lager then this settings. I run my package "Report width is larger then the paper width" This error can be displayed. but i`ll change this settings for Paper size is legal …

Member Avatar for dspnhn
0
803
Member Avatar for mruane

I plan to write a detailed rogue like in python. But first, I have a few questions... how do i get started: how to make the screen how to make the maps how to make the main character move when you press a key how to make it saveable if …

Member Avatar for Freaky_Chris
0
209
Member Avatar for ravikiran032

i would like to know what digits of ipaddress define. suppose ipaddress of 192.168.0.59 what these numbers 192 ,168 , 0 ,59 defines. does they have any value??

Member Avatar for peter_budo
0
91
Member Avatar for SonxQ7

Always get warning when using raw type Lists/Sets/Iterators etc. [code] public java.util.List /* <-- Warning here */ getUsersByAge(int minAage) { org.hibernate.Query q = session.createQuery("from User u where u.age >= :minAge"); q.setInteger("minAge", minAage); return q.list(); /* <-- Warning here */ } [/code] I've chaged this by [code] public java.util.List<User> getUsersByAge(int minAage) …

Member Avatar for vite
0
190
Member Avatar for mailtosridar

[B][COLOR="Green"]IN MY FORM THERE IS TWO DATATIMEPICKER AND ONE BUTTON WHILE CLICKING THE BUTTON MESSAGE SHOULD DISPLAY TIME DIFFERENCE BETWEEN TWO DATETIMEPICKER.............................................. ANY ONE HELP ME BY SENDING CODING[/COLOR][/B]

Member Avatar for timothybard
0
442
Member Avatar for munror

Hi everyone, I have this select statement which works intermittently. I'm using it to change reset the user password if they have forgotten it, however sometimes it shows that the password was reset and other times it says that the email address wasn't found in the database. This happens for …

Member Avatar for Baradaran
0
93
Member Avatar for antwan1986

Hi all and thanks for reading. I came accross a function on the internet for creating a <select> box out of an array. I understand all of the code except for a few things: [CODE] <?php function dropdown($name, array $options, $selected=null) { // Begin the select tag. $dropdown = "<select …

Member Avatar for antwan1986
0
162
Member Avatar for meerantj

hi, i am web design student now i need to do my assignment. thats i need to create multiple dynamic tables.. i not know how to put a table in looping(java script) if i put in loop then how to do validation.. so i decide to use add and remove …

Member Avatar for ~s.o.s~
0
146
Member Avatar for ambarisha.kn

Hi, I am allocating memory for some areas. For DB i need 1024 bytes, for DS 1024*2 bytes and so on, and i initialised address as follows. I initailise devBaseAddr to DB, because DB comes first, and next DC. DB is 1024 bytes , so for DC=DB+1024. This is DC address. …

Member Avatar for ambarisha.kn
0
138
Member Avatar for ezzio

Hi I hava a small application on oracles forms 6i and I run it over windows terminal service I am looking for an easy way to translate from forms to PHP does anyone knows any tool for this purpose?? thanks in advance

Member Avatar for WilliamJohn
0
658
Member Avatar for pletch99

I'm still new to JavaScript and I'm having trouble with an assignment. I can't seem to get my functions to work right for the alert to check for missing information when you submit the page and when you select the checkbox for the same as billing address? Thanks for the …

Member Avatar for Shanti C
0
122
Member Avatar for mohammed2raja

I want know more about session and cookies. How it maintain and what is it use using php. where all session variables are stored in differnet web server. How session is maintained in Apache server and ISS server. All depth information about server with example. Please give me some url …

Member Avatar for Shanti C
0
103
Member Avatar for jokumoku

[B]This is the verification code i put in my webpage [/B] [ICODE]<?php if ($use_verification_image): ?> <label for="commentform_verification">Image verification:</label><br /> <input name="verification" type="text" id="commentform_verification" class="comment_form_text_box"/> <br /> <img src="<?php echo $commentsystemfolder; ?>comments_verificationimage.php?r=<?php echo md5(uniqid(time())); ?>" alt="image verification" name="commentform_verificationimage" width="70" height="10" id="commentform_verificationimage"/><br /><br /> <?php endif; ?>[/ICODE] [B] the above code is …

Member Avatar for praveen_dusari
0
220
Member Avatar for unk45

So this is the program description as per hw requirements. The following is a procedure for constructing an n x n magic square for any odd integer n. Place 1 in the middle column of the top row. Then after integer k has been placed, move up one row and …

Member Avatar for Salem
0
693
Member Avatar for gin1026

hello evryone, im new in C++ programing. currently i working on my final year project. at the first place, im study in INFO COMM. ,more specific in network management area but since my project is assigned by my lecturer and the project itself involved some programming skill, i gt to …

Member Avatar for gin1026
0
525
Member Avatar for janustt

Basically, I was wondering how I could read a text file (Transactions.txt) which will have one number per line(ex. 2000 on one line, 25 on another). This number is either a deposit or a withdrawal to a checking account. The program should read the Transactions.txt , then write the deposits …

Member Avatar for masijade
0
168
Member Avatar for califguy

Hey, What I am looking to is this: Receive 32 bytes of data from serial port into an array. ( This I have done already) Now based on say the second byte in the first 32 bytes, i will know the size of the entire packet I need to receive, …

Member Avatar for rpiper138
0
113
Member Avatar for raul15791

Hi, first of all sorry if I post this in the wrong section. Cant find where is the VBScript Section. I'm new to VBScripting. What I need is the VBScript to count the number of record in my MSAccess table. I tried [ICODE] total = "SELECT COUNT(*) FROM Product" [/ICODE] …

Member Avatar for raul15791
0
909
Member Avatar for ashkash

I am trying to combine byte values into a long variable. I have four bytes each in an unsigned char: unsigned char a = BC; unsigned char b = 1E; unsigned char c = 04; unsigned char d = 00; I want to have it so I can put the …

Member Avatar for rpiper138
0
2K
Member Avatar for southloven

I have a form that I am checking to see if a check box is checked. If it is not checked an alert pops up with an error message and when I click OK It checks the check box. This is very weird. Code below [code=javascript] function isNumeric(elem, helperMsg){ var …

Member Avatar for essential
0
113
Member Avatar for makubexiii

can someone help me? Still confused in linked lists. there's something wrong when I input a record for the 2nd time. it sometimes works but then when I display all records It doesn't display correctly. here's the code... [CODE=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<string.h> typedef struct node *nd; struct node{ int …

Member Avatar for makubexiii
0
140
Member Avatar for Diamonddrake

The title is confusing, I know. What I mean is, I created a note pad (like) program with line sorting functions. I want to be able to associate .txt files in explorer with the program. Currently I modified the Main function to accept command like arguments. and I modified my …

Member Avatar for Diamonddrake
0
220

The End.