199,114 Archived Topics
Remove Filter ![]() | |
hi I am just wondering how I can test the mail( ) fucntion on my local host without any email program. Is it possible? Basically here is the code that I used(firefox shows the error message: Firefox doesn't know how to open this address because the protocol (c) isn't associated … | |
I was reading the GPA score thread but it didn't help me any. i am suppose to be making a program that should prompt the user to enter up to 30 GPA's which are stored in a single dimension array. each time the user enters a GPA they should have … | |
[url]http://www.microsoft.com/downloads/d...DisplayLang=en[/url] u have passed me this link to have a program that is used to control the serial port. But.. this program doesn't works on vb.net 2005 version.. there are 4 errors. can u solve this problem..... and tell me, which file to be executed? and how? | |
Hi all, I need to import a database (currently in excel) to Mysql. I searched a little and found out that CSV files can be imported. However, there is a problem that I am facing. The delimiter for fields in a CSV is a ',' obviously. But many of the … | |
Hello guys. I am having trouble with QTabWidget: I can't add multiple widgets with addTab nor insertTab. even when I try something like: [code=python] self.widget1 = QListWidget() self.widget2 = QPushButton("Foo") self.widget3 = QLabel("Bar") self.tabs = QTabWidget() layout = QVBoxLayout() layout.addWidget(self.widget1) layout.addWidget(self.widget2) layout.addWidget(self.widget3) self.tabs.addTab(layout, "Foobar")[/code] It will raise an error that … | |
I really need some help in my Java Programming class. I am in the last week of my class and our final requires us to compose and compile an Inventory program. Please respond if you get this. I will be working on my project all night. My AIM is ash22ambition … | |
Hello once again everyone, my previous [URL="http://www.daniweb.com/forums/thread141733.html"]problem [/URL] appears to be resolved right now thanks for everyone who has helped. I have to make the following derived class [quote] Your LField class is derived from your Field class and represents a line field. Upon instantiation, an LField object receives between … | |
I have started my own little site ([url]www.geocities.com/willpull22[/url]) i made it with dreamweaver in about an hour. But i wanted to add a forum page(probably wont be added until i get a paid for site.) and i was looking around and saw that most complex forums are made with VBulletin … | |
Few Questions: Passing by values(copy of the value) or references(actual value)? - What is the difference minus the two mentioned? - What is the better choice? - etc? Also this is a more general quesiton OOP, with most languages its better to learn and use OOP then just programming a … | |
I need help with my project. I don't understand how I would approach the following situation and need some advice/suggestions. I am using a file to read info necessary for the project and using classes to access the data. class Car { public: void CarInit(string& make, string& model, string& color, … | |
Hi, I have a table and i want to list details in list.php with pagging style. 2 record each. I can't do it. Can anyone help me. I have tried some examples but, i couldn't do it. Please help. Thanks [code] CREATE TABLE `country` ( `code` varchar(255) default NULL, `rank` … | |
Hi. I have a form for book registration, so by default I have a text field with a button besides that for the author name, but when the user click the button I need the another text box with another button besides that created, and if again it click another … | |
hi all, i am working on a windows application. In that i have to open a saved text file using a open dialog box and load it into the word document..i am not able to load a text file to word document. what can i do for this? Thanks in … | |
Good day I want to write multiple response to my email, I get line 7 Please can anyone help please; My code <?php $to = "info@apps4u.co.za"; $subject = "Contact Us"; $email = $_REQUEST['email'] ; $q1 = "Feed back text:\n"; $q1 .= "$_REQUEST['text']\n" ; $q2 = "Who sent you:"; $q2 .= … | |
hi all,can anybody point out wats wrong in my database design, guide me right database ,i ve 4 tables i type all its attributes its for hospital database patient table pid, pfname, plname, pcontactno, page, pplace ,pdocname, pprob ,ptype(this is for out patient,inpatient), pbill. doctor table docid ,docname, docplace ,doccontactno … | |
Hi Can Anyone please give me a script which is used to drag a text from within a webpage to the textarea present on the page. I want a certain text to be appended to the textarea text and I want a certain text to be added anywhere in the … | |
Hey I host a website for a sports team, theres a nominations page where each member, when logged in, can cast a vote to whoever in the team they want to be captain for a tournament. The Problem is when someone votes i store the id, name and there vote … | |
hi, i ve hospitaldb created in MYSQl, i have connectivity problem like[CODE] String connectionURL = "jdbc:mysql://eall:3306/hospitaldb"; // declare a connection by using Connection interface Connection connection = null; // declare object of Statement interface that uses for executing sql statements. PreparedStatement pstatement = null; // Load JBBC driver "com.mysql.jdbc.Driver" Class.forName("com.mysql.jdbc.hospitaldb").newInstance();[/CODE] … | |
Hey all, I have 2 .aspx pages. I want to have a connection between these 2 pages through a button click event..From one of the ASP.Net books I came to know about this link buttons,whose main job is to connect 2 web pages..Well that worked fine.. Now my question is, … | |
[code=language] #include <iostream> using namespace std ;char (name)[20]; int helps; void (checkOutVillage) (void); int main(void){ { std==cout << "Please Enter Your Name!" << std==endl; cin >> name; std==cout << "You Are On A Great Quest" << name; << std==endl; std==cout << "There Is A Small Village In Trouble. Should We … | |
Hi frnds.. Here i am developing a portal like orkut.. i want to display recently visited users of my profile...whats the procedure... Is there anybody having code plz send me... Thanks in Advance... | |
Hello everyone I have to create a class that has the following: [quote] Your Field class is the base class from which you will derive all other Field classes. Your Field class has the following public member functions, all of which are virtual: * void display() - does nothing here, … | |
Please compare the two codes below why is the first one displaying output to monitor where as the second code is displaying some unwanted characters. CODE 1 ..... #include <fstream.h> #include <string.h> void main() { fstream File("test_file.txt",ios::out | ios::in | ios::binary ); char arr[13]; strcpy(arr,"Hello World!"); //put Hello World! into … | |
Hey guys, We're trying to work with a driver program for our robot. If we can grab the x and y coordinates of the Mouse we could send them to the controller for driving. Does anyone know how to capture the mouse movement into an integer? ![]() | |
heLLo everybody!!! we are discussing java OOP's now!!! mainLy about Interfaces, Abstract classes and etc!!! weLL.., i would like to ask if you could give me some examples regarding this one!!! such as implementing interfaces on my main program!! the more complex the program is.....the more i want it!!! i … | |
I made a script and it keeps saying error C2144 and fatal error C1004 [CODE] #include <iostream> using namespace std ;char name[20]; int helps void checkOutVillage (void); int main(void); { std::cout <<"Please Enter Your Name!" <<std::end1; cin >> name; std::cout << "You Are On A Great Quest" << name std::end1; … | |
I have an application that i want to run a batch file from it all i get is the flashing CMD windows but is not running. at one time I get it to run but dont know what happen start modyfying other things and stop working. what i really want … | |
Is procedural animation the same as tweening? I have looked on the net but get different answers. BattlingMaxo | |
:'( Hi geeks!, since I started programming I have never used qsort() for sorting. I also tried to consult books but, 'little or no success!'. Can anyone who know better help me to understand qsort() function. Please do it with an example! Happy forever even faced with c++! ![]() | |
Hi guys, Thanks for the effort you've made in answering my last post and I hope you'll help me out again. I did develop a program in vb6 and vb.net and lost the source code. However I did compile the two programs one in vb6 and the other vb.net and … | |
Hi, I just want to retrieve name of the employees who have two or more than two email_id in employee table. pls help me out.. | |
hello friends plz help me, iam uploading excel sheets into the database. it is succefully entering . the problem is when again uploading excel sheet i want to check the database and if excel sheet which i send is there already i have to restrict by inserting into the table(resource_table) … | |
I am working on a Matrix class that will eventually do a lot of stuff, but early on I have already hit a snag, how do I initialize (in a constructor) the 2D vector I have declared. [code=c++]//matrix class #ifndef MAT_CLASS #define MAT_CLASS //template <typename T> using namespace std; class … | |
Overview I have a form that the user fills in. A event to my C# codebehind page fires on the save button click. The btnSave_Click method load up the 3 LINQ Entities with the correct values. I call the LINQ method "InsertProject" to insert the data into the SQL tables. … | |
The program has a button named [B]INCREMENT [/B] . The label that starts with 0 will increment every time the button is being pressed and save it in a database then so on. . .those being saved in the database will appear in MSFlexGrid. Important part: in MSFlexGrid 1 2 … | |
Just as the title states, im looking for some help to press and hold keys down in any focused window. I have seen similar things using tkinter, but i have only seen code to send commands to a tkinter created window. thanks | |
i have trouble installing PHP load module by using apache version 2.0. i'm using windows. pls help before i go insane. | |
Hi to all I'm writing an ActiveX in C#, I found a great tutorial in: [url]http://www.c-sharpcorner.com/UploadFile/dsandor/ActiveXInNet11102005040748AM/ActiveXInNet.aspx[/url] The problem is that my ActiveX should create a folder and do some another actions in the Client machine, according what I know when the user allow using ActiveX, the ActiveX has permissions to … | |
hello frds, I am trying to draw line by drag and drop between two checkedlistbox where both checkedlistbox is an object of checkedlistbox control. While i try to take start point by mousedown event on checkedlistbox and endpoint by dragdrop event. but problem is when I drop the mouse, checkedlistbox … | |
Hi ! I need a javascript code which sends variable to PHP. I have a drop down menu (<select>) in the select there are diffrent cities and i have an array of neighborhoods and when one city is selected, a part of that array shows up, e.g. from 13 to … | |
Im a newbie, I have compiled apache and mysql in the same server;i need to host a site that has perl scripts and the database linking .How to integrate the mysql server to apache for smooth functioning of this site?? | |
Hi I have a stored procedure that returns the unique ID for a particular Name/string passed in. On my windows form I have a ListBox control filled with a list of names (returned from another stored procedure) I want to be able to let the user click the list box … | |
Hi, I have three dropdownlist: country, state and city. Based on the selection of country the data of state will be filtered and similarly depending on the selection of state , the items of the city will be filtered. That is working fine. Now there is one gridview which contains … | |
help me make a code please... i need a code when you pick one of the menu then the menu you pick will show up... then when you press anything it will go back to menu again.... can someone show me the code please???.... Thanks...... | |
Project Title : Student Grading System Purpose : Calculate the grade and sort the result in descending How the user operate the software: 1) user run the software 2) an interface show on the screen 3) user keyin Input file name (example:studentsmarks.txt) 4) user keyin Output file name (example:studentresult.txt) 5) … | |
Dear all, I have a problem. I want to subtract two dates use JavaScript. First date source is from SQL database, I format it use ASP.Net code to "yyyy-MM-dd" without time and save it into TxtDate. The second date is from current date. I want subtract those two dates without … | |
It seems that writing ascii files changed significantly from c to c++. It moved from file pointers and things like that to being very easy, like [code] ofstream myfile; myfile.open ("example.txt"); myfile << "Writing this to a file."; myfile.close(); [/code] However, from googling it seems that binary file reading/writing has … ![]() | |
Hello Guys, I have problem with Bindinging Event to menu. Every time I run this on IDLE (F5). I get always Attribute error that self have no attribute OnPrint. What's wrong with the Code???? [CODE] # SMD Inc since 2003.py import wx ID_ABOUT = 100 ID_PRINT = 101 ID_EXIT =102 … | |
hello im john rico a com sci student could anyone help me to make a program that has three equation and three unknown pls. | |
oh no! i double posted the thread! how do i delete one? sorry |
The End.