199,114 Archived Topics
Remove Filter ![]() | |
/* compiler used: */ /* simple application to generate basic arithmetic operations */ /* March/3rd/2006, John Bofarull */ #include<stdio.h> #include<conio.h> #include<stdlib.h> #include<time.h> #define RAND__MAX 4294967295 #define OPS 40 /* how many operations per file */ /* poke about these 8 constants to harden or soften tests */ #define SDL 4 … | |
Hi, I have text files/notes/pdfs etc in a folder that I want the names of to appear on one of my php pages and then I want the doc/pdf to appear in a seperate browser window (or the same window) when the user clicks on the name. Is this possible … | |
Hello. I am looking for a c library that emulates the double data type (64bit) with integers (32bit). it should have basic arithmetic functions like add, sub, mul and div. already searched the web, but no luck so far. hope you can help me, thanks. | |
Any ideas on how to do this program because I have the slightest idea. This is what I have to do, [I][B]Multi-Function Calculator - Ask the user for 2 numbers, then ask them to select from a numbered list of operations. As rudimentry error checking, give them an extra chance … | |
I have the following program compiling and running. However, the program is supposed to print out stars equal to the user input, with each star representing 10. If the user inputs 100 the program should print out 10 stars. No matter what number I input the program is printing out … | |
I use cin.get to pause the screen so i can display my data on the screen, cin.get() pauses it good on the first try. Basically if you hit "enter to continue" the loop works great with no jumping over the cin.get(). However, if you hit any other keys on the … | |
Hi I have a problem in connecting modem with another modem through PSTN. i want the solution in java code i want this connection to upload file from remote pc to my local pc i want to develope the whole application in java plz help me out as early as … | |
Can anybody please tell me what is wrong with this piece of code? [code] std::string query; std::cout << "Enter the Query String :";// Type something with spaces here. e.g ( "financial instruments being traded on the American stock exchange" ); while (std::cin >> query ) { std::cout << query <<std::endl; … | |
I want to merge 2 linked list into 1. Is the code below ok? Can you Check please? [code] LIST Merge_List(LIST P,LIST Q) { HEADER h = P; NODEPTR ptr2 =Q; NODEPTR ptr1 = P; NODEPTR prev=P; NODEPTR temp=NULL; /* Second List Pointer */ while(ptr2 != NULL) { /* First … | |
hai, please help me to move the record in the table. i need this very urgently | |
There follows a fragment of a program in Borland C++: void __fastcall TForm1::FormCreate(TObject *Sender) { Memo1->Clear(); ListBox1->Clear(); Memo1->Lines->LoadFromFile("c:\\blitz\\history.txt"); a=Memo1->Lines->Count; x=0; while (x<a) { str1=Memo1->Lines->Strings[x]; if (str1 != "") { DATA MANIPULATION HERE, THEN if (ListBox1->Items->Count==0) ListBox1->Items->Strings[0]=str3; else ListBox1->Items->Add(str3); } } ListBox1->Items->SaveToFile("C:\\blitz\\history.txt"); Close(); } The form does not close, but "history.txt" … | |
Hi I am trying to compile a program from a tutorial I am doing. The program is titled myprogram.java and is located in the c:\src> directory. When I use the command c:\src>javac myprogram.java I get the following errors. myprogram.java:1: <identifier> expected class ^ myprogram.java:8: '>' expected ^ 2 errors and … | |
Please I need help on how to insert elements into a sorted linked list.I actually have a list that contains names and scores for students and I want the elements to be inserted into the right postion such that the names of individual students are arranged alphabetically. This is my … | |
Hi , I need some help write program to send data between two computer with modem. please , thank you .. nawal | |
[size=3][font=Times New Roman]Help!!![/font][/size] [font=Times New Roman][size=3] [/size][/font] [size=3][font=Times New Roman]I have written the following php for a feedback form. the problem i am facing is the following:[/font][/size] [size=3][font=Times New Roman]When the [/font][/size] [size=3][font=Times New Roman]$mailto = 'yiannos@mydomain.com' ; [/font][/size] [size=3][font=Times New Roman]is written the script works perfect and the email … | |
Hello, I've been set to complete this project within a week and a half, and have had quite a few problems attempting to implement it. I have problems with the recursive part of it, which really, is the whole project. Any help would be ENORMOUSLY appreciated, and i would like … ![]() | |
The following program Assignment#2 was assigned to us a few weeks ago. I understood that assignment. Our professor told us soon we would be editting it to run more efficient. We have now been introduced to struct nodes. Needless to say, I am very confused. Our new assignment is due … ![]() | |
I'm a relative new comer to development and need some assistance in writing a function. Here are the requirements: Return the 5th element from the end in a singly linked list of integers, in one pass, and then provide a set of test cases against that function. Any ideas? Thanks … | |
my question here is :how do we write sql connections to database that's using windows nt authentication?How's the syntax looks like?tq :confused: | |
Hello, I have attached a database which will be in use for the question i am about to ask. The question is ... Write queries to retrieve the following sets of information. a) An annual report showing the number of orders and the value of the orders placed by each … | |
i want to collect data and show in OLE or Excel for every 1 minute. and every data i collect i wan save in a folder. every time i wan update the data. how i should write my program.. Thx for helping me...... | |
Hello im pretty new to proggramming. Im making a console program. I want to be able to play a sound when it opens. I have no clue on how to do this. :o Is it possible running a sound in a console program? Plz reply and thxXx for the help! | |
I have been assigned to complete 45 questions using any Java source avaialble. I have found all except 16 of them in my Java book. This source was mentioned by the instructor as available. Could you please spend a minute to T or F them? 1. T or F. Static … | |
I have a third party product that I hit a link to from within a .vbs running unattended on a server. Hitting the link starts an update process. When I hit the link, IE opens and the link returns a page that is blank except for the following code. Code: … | |
I need a short script written for me. Is this an appropriate forum to ask for this kind of help? If so, I'll post specs. | |
Hi, While I'm not entirely new with SQL, I am not by any means highly knowledgable. I'm attempting to write a SQL statement to do the following, and having no luck: Assumptions: There is only one table, with several fields of metadata including the following. 1 field (integer) that indicates … | |
I have the following code, for example: [CODE]price = 50.00 tax = price * 0.08 print "Tax = $",tax # Tax = $ 4.0[/CODE] As you can see there is a space between $ and 4.0. Is there a way to avoid this? I haven't done much Python coding. | |
I am using MySQL 4 and trying to cache my queries per this tutorial: [url="http://dev.mysql.com/doc/refman/4.1/en/query-cache-configuration.html"]http://dev.mysql.com/doc/refman/4.1/en/query-cache-configuration.html[/url] Right now, my query_cache_size is set to 0. I would like to set both the query_cache_size and query_cache_limit parameters. However, I'm receiving the following error message: [code]mysql > ERROR 1227: Access denied. You need the … | |
hi, i want to know what is apache server?how it relates to php | |
HI, i want to know what is server scripting ,and how does php relates to server scripting. | |
Hey can any body help in this matter: interface with in interface : ex: interface ee { interface rr{ void ere(); } } how to implement the ere method : please sugesst me Regards Saranga | |
ok, so just installed my VB board, and was playing around with it, and now i think its Broken! Have a couple of problems. Firstly my smilies dont show for some of my usergroups, it shows for admin. Could anyone tell me where in VB would you go to find … | |
hi, i am very new in python. can anyone tell me that how to create dynamic dropdown box in python scripting.(triple dropdown box) | |
Hi! I'm new in C++, but perhaps this is a general problem, not C++ exclusive. This is printed in my console, "-1.#IND", when using a printf, when this occurs? thanks | |
Hello ladies and gents, I wanted to ask if any of you could help me out here, Ive got this program: [code] //Test programma voor Accelerated C++. #include <fstream> #include <iostream> #include <string> int main(int argc, char** argv) { int fail_count = 0; //for each file in the input list … | |
Hi all I changed my account from 'Web Develpoer' to 'web developer' because of wrong fast typing spelling ... Thanks very much | |
For my computing coursework I have to add a validation which means all events have to be between 7 days and 2 months of the booking date ie booking date = 01/01/2006 event date has to be between 08/01/2006 and 01/03/2006 i cant seem to do this or find it … | |
Im finding trouble writing a script that runs from account A, switches user to B (on same server), performs a few jobs at B, and switches back to A. I want the password for B hardcoded in the script so that it doesnt prompt for one. Someone please help. | |
Need help on this simple script... I am scratching my head... when I do echo $myhost it returns db3 However, when running the script, the first IF condition is always true... what went wrong? Thanks! Here is the script: myhost=`hostname -s` if [ $myhost='db1' ]; then echo "###############################################" echo "### … | |
Hello!! Please guide me. How do I install Apache, MySQL, PHP on Linux? Thanks Laxy [URL=http://www.funspot.com]www.funspot.com[/URL] | |
I am the webmaster for a site hosted by ipowerweb.com. Among the applications they offer is a survey tool, but it must in a file with .php extension. I have no idea what that means. The site's tech support said I would have to use an external html editor such … | |
in VB.net, How can I use timer as a public and use this timer contral in the multiple form. I have to do the trivia questions which user either select their answer to go to the next form or time up to the next form. I got the first part, … | |
I need help please to write this program. Numerologists claim to be able to determine a person's character traits based on the "numeric value" of a name. The value of a name is determined by summing up the vaules of the letters of the name where 'a' is 1, 'b' … | |
hi everyone. i am an amateur programmer in java. can anyone please tell me how do i go about connecting my java application to oracle 9i database? please be specific about what is the URL that i should use and how should i install the oracle JDBC driver.where should i … | |
I'm looking for a way to compare 2 lists of keywords and return the number of matches. I'm currently working with PHP and MySQL, but I'm not sure how to go about this task. Any suggestions are appreciated. Thanks, J_ | |
Hello, I have this query: SELECT players.id AS id, players.name AS name, players.surname AS surname, players.email AS email, calendar.start AS beginning, calendar.end AS finnish, calendar.name AS title, calendar.event AS description, calendar.id AS eventid FROM `calendar` , `attendance` , `players` WHERE (attendance.present = "yes" AND calendar.start BETWEEN "1141060879" AND "1141665679" AND … | |
SUMMARY --------- I need the detailed steps of building a DLL project from .LIB & .H files using VC++ 6.0 DETAILES --------- I have Windows XP SP2 and I have installed Platform SDK in order to get the ibrary files to use in my Bluetooth application that will be developed … | |
![]() | Hi all, I'm looking for a nice query tool to query MS SQL and/or Sybase databases. Currently, I'm using Excel to do some minor query stuffs...and I don't mind using it but it get's repetitive when you have to do it for 70 different databases. So I'm looking for something … |
For the Tkinter Text widget, is there a way to assign the selected text to a new tag?(other than 'sel',which changes) | |
HI, Well, I'm getting this error message when i try to open my project [I]"Visual Studio cannot create or open the application because the web server on this computer is not running. Start the web server before preceeding". [/I] I searched in google for any kind of help.. i found … |
The End.