199,114 Archived Topics
Remove Filter ![]() | |
I'm using windows sockets 2, and I've been able to write a server using a client array of sockets to hold more than 1 client at a time. All of this is fine and dandy, I can have multiple clients from the local machine connect to 127.0.0.1 without a problem. … | |
Hi, I am trying to develop a ingame chat window that will work across games developed in directx and openGL. So i need to place a windows form above the game window. since i need this to work across all versions of directx and opengl I cannot use a hook. … | |
Hello how is everyone doing! I just want to make sure that this code was working properly. I tried compling this code on Visual Basic C++ 6.0 and it worked out fine without any errors or warnings. I am not looking for a quick answer. I just want to receive … | |
I have installed fedora core 4 from hard disk partition in my system... Graphical interface is not starting. Even at the time of installation also graphical interface didn't come.. What should be done in order to get graphical interface... Please help me.. i'm new to linux | |
:confused: Hello i am a newbie in programming in c++ and in linux. I hav knoppix in cdrom and i want to start programming in c++ with the help of knoppix. But I does not know anything about how to start. I don't know create a new c++ file in … | |
Ok Im a begginer to VB.net and am taking a course in school. I have been thinking about making a bps counter (for those of you who dont know its a program that sees how many paintballs you can shoot in a certain period of time) I have no idea … | |
Hi... How do I get output debug messages generated by the debug mode (ie. Start with debugging)? If I can get them, I wish to display them to listbox that I have in the windows form I created. Is there a smarter way other than using the following? : [CODE]lstDebugMessage.Items.Add("Whatever … | |
I started wrting c lessons for absoulute begginers to advanced users, I think material can be considered quality, and my students learn programming with this stuff. If you wish feel free to start reading it.Its only 8 lessons for now so maybe could be easier for you to start following … ![]() | |
Hi Friends..im new to this site and i need help. I need source code for removing duplicate values from an array of integers. please help me as soon as you can..Thanks a lot!! ![]() | |
A former instructor (process technology) has emailed me with a question concerning a runtime error he is receiving. I am not a programmer and provided him with code snippets for his WebCT environment. He has emailed me and asked a question I cannot answer. He is receiving a runtime error … | |
Hi all! I'm working in a project in visual c++ 6.0 with the console application and I want to ask you how to create a program that has portability to work in both platforms, windows and linux. Another thing, which function we use to round a double to the nearest … | |
Hi!I have a problem and i think you can help me!(Sorry my english.I learn just one year) Thats part of my program... [code] okno=Tk() text=Text() text.pack() def find(): print "I need help here" menubar = Menu(okno) editmenu = Menu(menubar, tearoff=0,bd=4) editmenu.add_command(label="Find", command=find) menubar.add_cascade(label="Edit", menu=editmenu) okno.config(menu=menubar) [/code] i need add to … | |
hii,i'm a beginner :o ,don't :lol: ,just show me the way btw,i learn abt c and c++ can u show me the big differences between 'em?? thank's | |
Hi, I am with a web host using mysql 4.0 and phpmyadmin 2.5.5 p\1 I am trying to get my html user form on my website to insert into mysql database. I keep getting: Error! Could not select the database: Access denied for user: 'match.match.com@10.80.0.%' to database 'mydb' Can you … | |
Hello. I'm taking a C++ course were the explanations are bad and we program only 3 times a semester. Therefore, my knowledge of C++ programming comes from trial-and-error. I'm sure that everyone had to do the Roman numerals to decimal conversion program at one point. The assignment goes something like … | |
hi there, i'm doing a basic computer science homework and i cannot figure out how to run the javascript on the browser... so i write a program on microsoft word and save as "java.html" under html document, then what do i do to display the contents on the browser??? any … | |
hi every 1 i wanna to ask about sigl and double linked list *what is the advanyages and desadvantegs of the double linke list *when we use the double and when we use the single thanks | |
[code] CREATE TABLE my_feature ( pk_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, member_id INT(8) UNSIGNED NOT NULL, time_added DATETIME NOT NULL, personal_questions BOOL NULL, hits INTEGER UNSIGNED NULL, PRIMARY KEY (pk_id)); [/code] When I put this into the MySQL Query Browser I get this error: You have an error in your … | |
Hello will someone please help!! Here is the assignment • Using a function with the header below, pass it arguments in main, alter ary1 contents and display ary2 contents in the function definition. Display the contents of ary1 in main after the function is called. void arrayTst(int ary1[], const int … | |
Does anyone know how to count the number of characters words in a string or in anything in QBasic? I'm trying to make a hangman game and I have a list of all my words but i need to find out how to count characters for the blank spaces, you … | |
I have problems in how can i use the backspace key work in deleting characters in real time. I have a program where you can type a string no more than 60characters but say i don't want the last character and want to delete it, if i hit backspace it … ![]() | |
I am currently learning 32 bit Win programming in assembly. I used to write in C and C++ but didn't like the code bloat. My hobbies are photography, stamp collecting, wood working, and bike riding. Thanks. | |
I have an assignment to create a mortgage calculator in C++. I have attempted to complete this but I cannot get it to compile. Any help would be appreciated. Here is what I have come up with: [code] #include <stdio.h> #include <math.h> using namespace std; /* Begin program */ int … | |
I create the dynamic array with malloc and assign the last char to NULL. When I assign the NULL character, the warning message as follow appear: `'=' : 'unsigned char ' differs in levels of indirection from 'void *'` The code is as follows: void main() { const char sendText[] … | |
address data ------------------------- 0xad 0x59 0xae 0xfa 0xaf 0x9d oxb0 0xa6 0xb1 0x78 0xb2 0x04 oxb3 0xbc oxb4 0x88 0xb8 0xff the MIPS code: addi $s1, $zero, 0xab lb $t0, 5($s1) lw $t1, 5($s1) addi $s1, $s1, 11 lbu $t2, -8($s1) lw $t3, -8($s1) wat will the hexadecimal value be … | |
Hi I am into my Database course. I have proposed to develop a criminal record database as the project. If anyone have worked on such a project before or know a few things about it please do share it with me. Currently I am trying to design the schema for … | |
Greetings I've been faced with this problem may be you could help? [CODE] [B]class[/B] CalculatorObject : [B]public[/B] TDialog { [B]public:[/B] StateType CurrentMode; [B]char[/B] Operator; [B]char[/B] DisplayBuffer[DisplayPlusSign]; [B]BOOL[/B] Negative; [B]BOOL[/B] InputIsADigit([B]char[/B]* input); [B]double[/B] Operand; TBrush CalcBackground; .....[/CODE] I need to change char DisplayBuffer into a character pointer instead of a character … | |
Hi, I just want to say thank you in advance to anyone that replies to this. I'm new to JAVA & my 4th assignment has got me stumped. I have to write a program that reads 4 integers and prints the largest and smallest value that the user entered (using … | |
so I am trying to write a regular expression lets just take this case for an example: [code]^[0-9a-z]{5,9}$[/code] OR an empty string, how would I add that part? I tried stuff like:[code]^([0-9a-z]{5,9}|[]{0})$[/code]but to no avail, any ideas? | |
If the items in <select> drop down menu are populated from mysql DB, like: [code] <? echo "<select name=ptype>"; echo "<option value=\"\">------Select------</option>"; for ($i = 0; $i < mssql_num_rows( $result0 ); ++$i) { $line = mssql_fetch_row($result0); echo "<option value=$line[0]>$line[1]</option>"; } echo "</select>"; ?> [/code] Now I want to submit this … | |
just want to ask if this is an array program????... my professor told us to make array program that displays 10 names.. He also tells us that we can use C or C++ program.. i prefer using C cause im much familiar with C programs... my knowledge in Array is … | |
I am trying to write a date of birth compair. here is how i have started out but I am not getting the results I want to see I am wanting to enter the text as 03/14/73 and compaire that to todays date and tell the user how old they … | |
Yes, this is homework, I'm not asking for a cut/past answer, just a pointer. I think I've developed brain lock form staring at this issue for too long. I'm using VB.Net 2003. I've created half the assignment, using a form to add records to a text file. The second half … | |
Hello. I am doing a project for a database that takes in student details and allows users to display their records. My problem is this: I have created a class called student (below coding) and created a menu class that displays the menu (2nd coding) I seem to be stuck … | |
I have been fiddling with these damn loops for hours. I am new to c++ but not too programming. My teacher is absolutely worthless. she refuses to help me and explains things very poorly. I have a 100 % on the assignments in the class and do not wish to … | |
Need help please. The site I am helping with is an equine php classifieds website where people place Ads and upload photos of their horses for sale. I have an issue where sometimes people go to place an Ad and can not see the Place Ad links on the page … | |
I have all this code for my project which is to copy a file to another file using windows coding in C ++ i have to repeat the the code 5 times using diffrent buffers everytime which the numbers are 1, 5, 10, 100, 1000 i know i have to … | |
i need help with writing a program that produces a hollow box of stars | |
pl help me to writea program that takes a decimal number and coverts it to both octal and hexadecimal equivalents with two function detooct and dectohex. The out put willbe as under enter a number 456 Num 456,octal710(710)hex1c8(1c8) | |
Hello. I have the following errors: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/winnie/public_html/pqQuiz/lib/templates.php on line 13 Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/winnie/public_html/pqQuiz/lib/templates.php on line 13 Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in … | |
Below is my source code for a tictactoe program. However, my output after first move always states invalid choice, no matter what number I enter? [code] #include <iostream> #include <string> #include <cmath> using namespace std; class TicTacToe { public: TicTacToe(); // constructor int Pick_Player(); // member function int Pick_Row(); // … | |
I have a bad instructor.... I need to know were to find the best online help I can to start from the begining JAVA and do it right... Suggestions :?: | |
hey everybody if anyone know how these instruction work and explain it's purposes in actual assembly programming... SHR SHL SAR SAL ROR ROL RCR RCL ALL THIS INSTRICTION IN TASM ,I USED THANKXXX FOR TIME WASTED | |
can someone give me a good link on how to add, subtract, multiply matrixes i cant fint it anywhere | |
Would any one help me to solve the problem??? for example: 12345/abc123 I want to divide the above string into two value, - 12345 - abc123 I want to know how can the program recognize the value in each digit??? And how can the program recognize the "/" to divide … | |
I am write a payroll grogram. Is it possible to make this program run in the network? I mean, how could I make it for users at different workstations access it simaltaniously. regards, ben. | |
Hi, Can anyone tell me if i have done these functions correctly; i maybe missing something; maybe thats why im getting segmentation fault!!! #include "listFuns.h" #include <stdlib.h> #include <stdio.h> listADT stringToList(char str[]) /* desc: converts a C string (array of char) into the */ /* corresponding word (list of characters) … | |
I'm working on a MS-SQL-Server-DB with MS-Access. There are some dozens of forms. I'd like to translate the forms by button-click into another language. I've made a procedure (sub) called by button-click which walks over the complete "Controls" and changes the captions. So far, so good. But this procedure (in … | |
hi peeps, i have here a code of the contents in a field fetched from the database. the ProductID is looped until all are displayed, which depends on the sql. i put a comma after a ProductID so that all ProductIDs are displayed separated by a comma and a single … | |
hello im having twoo issues as stated in the topic name. one of them being the page not being able to load in Opera and the second one being a warning that pops up on the page if you are using IE because my website is Standards Compliant and is … |
The End.