199,112 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Zack2008

Hi I have my existing code [code=php]<?php $query = sprintf("select venue,count(venue) as frequency from matches group by venue ORDER BY `frequency` DESC limit 300"); $result = mysql_query($query); ?> [/code] and it outputs a table [code=php]<?php $result = mysql_query($query); while ($row = mysql_fetch_assoc($result)) { $text = "".$row['venue'] . ""; $url = …

Member Avatar for Zack2008
0
103
Member Avatar for DanDaMan

All right so I'm learning C++ via library books and the information isn't too helpful, but it's the best I can find. Most of the books at my library are older than I am - copyright 1993 - some even earlier. So it's kind of ironic how the [seemingly] simplest …

Member Avatar for DanDaMan
0
144
Member Avatar for geemicah

this program is running, but the problem is., the function that I called didnt give me the accurate answer.. if you looki into my source.. what was the problem?? is the formula?? or the wrong way of calling functon?? or the whole source of my program.? this program should able …

Member Avatar for ArkM
0
146
Member Avatar for cam875

I compiled this code in dev c++ and i got 0 warnings and 0 errors, so it was a clean compile and whenever i run the exe i get this error which says assembler.exe has encountered a problem and needs to close. And gives me the error report thingy for …

Member Avatar for cam875
0
62
Member Avatar for andyT

Hi, This is my first post, this site has been very helpful in the past. I am wondering if it is possible to assign a dynamic array to a vector? If so, how? The following code is not working for me (with Visual Studio .NET 2003): [code] int *current; current …

Member Avatar for andyT
0
227
Member Avatar for peter_budo

I'm working on an application that simulated process of writing text message on mobile phone. On the canvas I first draw already typed message. If any and on button pressed I retrieve correct set of characters. Here I'm able to loop through them and highlight currently active/selected character. However I …

Member Avatar for peter_budo
0
227
Member Avatar for FumarMata

Hello I have written my program and right now I am stuck in something that I thought that was going to be easy. I have the [B]char buffer[/B], which receives from the serial port some letters and 2 numbers at position 3, lenght 2. I want to extract those numbers …

Member Avatar for FumarMata
0
171
Member Avatar for Subhankarde

I tried to use CF_SQL_ARRAY in the following but it is not working: ColdFusion: [code=coldfusion]<cfset faq = ArrayNew(1)> <cfset ArrayAppend(faq, "What are ColdFusion arrays")> <cfset ArrayAppend(faq, "How to create a ColdFusion array?")> <cfset ArrayAppend(faq, "What are two dimensional arrays?")> <cfoutput>#faq[2]#</cfoutput> <cfstoredproc procedure="p_cf_array" datasource="#Application.DSN_VAT#" username="vacdvl01" password="vacl33ds" debug="Yes"> <cfprocparam type="In" cfsqltype="CF_SQL_ARRAY" dbvarname="array_in" …

Member Avatar for Johnle
0
297
Member Avatar for MNR

Hey guys, the program has to wait until send button in jframe clicked then to get the text and put it in to queue and then send it to server using doInBackground method, also in line 65 i get a compile error which says that ther is nothin to override …

Member Avatar for MNR
0
171
Member Avatar for Kplusplus

Okay, so im new to this website/forum. I am in programming 12, and as my final project in C++ I have decided to create an address book application. It will be "simple" and I was hoping to be able to get it to be able to: 1) Create new entry. …

Member Avatar for VernonDozier
0
933
Member Avatar for launic

Can someone please explain how to create a makefile? I'm somewhat confused by what I've read on the web thanks

Member Avatar for stilllearning
0
97
Member Avatar for aoi

[code] t=malloc(sizeof(NODE)); t->lname[i]=ln[i]; t->fname[i]=fn[i]; t->add[i]=ad[i]; t->telno[i]=tn[i]; t->next=NULL; i++; if(*h==NULL){ printf("\nCreating record..."); *h=t; } else{ p=*h; if(p->next!=NULL) { while(p->next!=NULL){ if(strcmp(p->lname[i],ln[i])>=0){ p->prev->next=t; t->next=p; } p->prev=p; } } else { if(strcmp(p->lname[i],ln[i])>=0) { p->next=t; t->prev=p; t->next=NULL; } else { p->prev=t; t->next=p; } *h=p; } } [/code] could help me with my code? i can't …

Member Avatar for ahamed101
0
109
Member Avatar for annie_singh

Hello, I am new to perl, but I would like write a perl script that can convert xyz cordinates from a pdb file to distances using the formula: distance = SQRT[(X1-X2)^2 + (Y1-Y2)^2 + (Z1-Z2)^2] eg: line 1 xyz to line2 xyz line 1 xyz to line3 xyz line 1 …

Member Avatar for Salem
0
181
Member Avatar for nealpcarpenter

Is this hard? I am introducing Python to my students and want to make a simple, interactive program that will, while it's running, 'listen' for any keyboard events. That is, I don't want to include an 'input' statement - that would pause execution till someone answered. I just want it …

Member Avatar for Freaky_Chris
0
219
Member Avatar for psyman_86

Hi, I have a structure in a library that defines various parameters for wireless transmission. I want to create an array of these structures, which each element in the array containing the required parameters for a particular wireless channel. The structure: [CODE]typedef struct S_RF_RXTXPAIR_SETTINGS { byte modem0; // Baudrate, xosc_freq, …

Member Avatar for Salem
0
156
Member Avatar for Bigboy06

[code=cplusplus] #include <iostream> using namespace std; class Month { public: Month (char char1, char char2, char char3); // Precondition: The parameters contain the first three characters // in the name of the month - all lowercase. // Postcondition: The member variable month has been set to // the integer value …

Member Avatar for Salem
0
144
Member Avatar for launic

Anyone know how to pass an entire hashmap to a function?? The hashmap is hash_map<string, wordStruct> hashofwords; wordStruct contains information about each word in the hashmap.

Member Avatar for launic
0
158
Member Avatar for Stefano Mtangoo

Hello All, I now learn Python and would slowly want to learn C++. I got little brushing on C++ very long ago and was very introduction and I know C++ is harder than Python. Can somebody point some good tutorials, IDEs and free books around the Net? Very newbie worried …

Member Avatar for William Hemsworth
0
123
Member Avatar for pradeepkk2008

Hi, this is my first job in UK, so need bit of help. The problem goes like this. I have an existing SQL database where there are 2 user tables. One contains only field.U_Id(int) not null and other is user_details table where there are fields like user_id(int), username and so …

Member Avatar for LizR
0
94
Member Avatar for Stefano Mtangoo

Can somebody tell me how to do bolding and Italicizing plus underlining I have just started getting serious after long time "milk drinking", now I want to eat solid food. Thanks all, Steve [ICODE] import wx ID_EXIT =100 ID_BOLD = 101 ID_ITALIC = 102 ID_UNDERLINE = 103 ID_TEXT = 104 …

Member Avatar for Stefano Mtangoo
0
3K
Member Avatar for lordx78

[B]Eclipse IDE for Java Developers[/B] (85 MB) [B][COLOR="Red"]Vs[/COLOR][/B] [B]Eclipse Classic 3.4.1[/B] (151 MB) Just wanted to know. Please advise.

Member Avatar for lordx78
0
118
Member Avatar for Tekito

I have a routine that, at one step, calls a form and shows it modal. When the user closes the form the routine continues. However, upon closing the form I want to know if it performed its assigned function- if it failed then I need to stop the routine. However, …

Member Avatar for Tekito
0
115
Member Avatar for Gerbilkit

I've been working on a homework assignment for a while now for my class, and right now I'm stuck on what should be a very simple problem. I have two files, EmployeeSystem.java and FullTimeEmployee.java. EmployeeSystem is the main, and is the file currently failing to compile. Basically in the method …

Member Avatar for Gerbilkit
0
108
Member Avatar for lotpb

Hi I am a newbe to php and I need to have the Dates on the list passed on to the two input values (Example Datefrom-Date list option - Dateto-Date list option) I am clueless on how to do this Thanks see code below <form id="form3" name="form3" action=""> <select name="SelectDate" …

Member Avatar for lotpb
0
141
Member Avatar for cplusplusgeek

I am developing an application for a video store, can someone guide me on different fragments of it.I need some help here. Here is what i have come up so far: [code=cplusplus] #include <iostream.h>// #include <string.h> #include <fstream.h>//Library fro File I/O using std::string; class Video { private: //Data Members string …

Member Avatar for Ancient Dragon
0
133
Member Avatar for Tank50

HI I got an error once I i run below coding,it give me error messages as No row at index 0.Pls help me slove this probelm.I think there is no row is datatable,So i want to know how to add row before it populate from data. DataTable data = new …

Member Avatar for LizR
0
129
Member Avatar for nizbit

Say I have a class named Contestant, could I declare an instance of the Contestant class as: [CODE] Contestant *c = new Contestant; [/CODE]

Member Avatar for grumpier
0
102
Member Avatar for jyotiu

Hi all I want to append a text file data to an already existing excel file.the text file will be of the following format: [code] BARCODE|TITLE|PRICE|CUSTOMER_FIRST_NAME|CUSTOMER_LAST_NAME|CITY|STATE|ZIP|PURCHASE DATE 111111868167|Dead North Friday Night OCT 10th |18.5|Amber|Follensbee|Windsor|VT|05089|08/07/08 11:30am 111111868177|Dead North Friday Night OCT 10th |18.5|Amber|Follensbee|Windsor|VT|05089|08/07/08 11:30am 111111868187|Dead North Friday Night OCT 10th |18.5|Amber|Follensbee|Windsor|VT|05089|08/07/08 …

Member Avatar for R0bb0b
0
122
Member Avatar for davidjonas

Hi! Just signed up and can't help to notice what a good forum you got going here!! congratulations! I am working on a project of educational software concerning sound editing and audio-video synchronization. I am researching the Java Sound API and it's been working pretty well but now I got …

Member Avatar for davidjonas
0
178
Member Avatar for opposition

Hey, Im just wondering if there is a fuction that already exists which finds a character in a string and then ignores everything after it. Its reading in a whole line from a text file and then suppose to seperate it. [QUOTE] char myString[500]; indata.getline(myString, 500, '\n'); [/QUOTE] the text …

Member Avatar for iamthwee
0
124
Member Avatar for redflame777

I can't figure out why I am recieving error messages from the compiler that tells me that I have an illegal start of the expression for the code that is in red. I have also put the product class that goes with the main class; I'm not sure if the …

Member Avatar for redflame777
0
106
Member Avatar for acs_cobra

Hi Guys.., I hope someone can point me in the right direction...... Please :) I have created a shopping cart with a product photo upload section where the path and description of the photos are stored in a sql table. Product photos get uploaded to the website, then the person …

Member Avatar for acs_cobra
0
105
Member Avatar for Bigboy06

i need help with this code it compiles and runs fine but it is not giving me the results i expect the problem is i think on the switch statemen. Here is where the problem is and then there is the rest of the code [CODE=cplusplus] void Month:: Output(ostream& outs)// …

Member Avatar for ArkM
0
337
Member Avatar for cproud21

I have the following program to write: given the TimeAT class: The time class uses two integers, one to store the hours and one to store the minutes of a given point in time. Write a Clock class which uses TimeAT class objects to store the current time and an …

Member Avatar for javaAddict
0
131
Member Avatar for launic

Can someone please give me an example of how to use .find() with a hashmap? This is what I have: (wordData is a struct with info about each word, and hashFunc is the name of the hash function) typedef hash_map<string,wordData,hashFunc> wordHash; wordHash hashofwords; (after passing in a string s to …

Member Avatar for sidatra79
0
197
Member Avatar for liquoriser21

Hi everyone! How do I format the layout of the datagridview to display header titles the way I want? and how do I format the layout to display the rows in multiple color mode. Any type of help wil be appreciated Lets do what we do best!

Member Avatar for liquoriser21
0
161
Member Avatar for blindkilla

Here is my situation. Im trying to learn how to take full advantage of multithreading but am at a rump. I have one listbox of usernames and it checks them on a website to see if they exist or not. If they exist it puts the username into listbox2. Now …

Member Avatar for LizR
0
86
Member Avatar for shijunair

I am facing problem while retrieving values from the jsp page. my database structure is as follows: ----------------------------------------------------------------------- m_emp_no|from_date|to_date|approver|status| ________________________________________ 1002 | 22/9/2008 | 23/9/2008|1003 |pending 1004 | 29/9/2008 | 30/9/2008|1003 |pending 2044 | 15/9/2008 | 16/9/2008|3076 |pending -------------------------------------------------------------------------- I am retrieving values from database properly using the following sql …

Member Avatar for shijunair
0
239
Member Avatar for abu taher

I want to change the format of Dt Picker. I write in format property dd/mm/yyyy. But it show 30/00/2008. why the month didn't show. any body help me to change the format of Dt Picker.

Member Avatar for Teme64
0
201
Member Avatar for Birdie010

Can someone please help me with why I'm receiving this error message for a ALineIn.Split Delimiter. Thanks! Error Message: Error 1 Overload resolution failed because no accessible 'Split' can be called without a narrowing conversion: 'Public Function Split(separator() As Char, options As System.StringSplitOptions) As String()': Argument matching parameter 'separator' narrows …

Member Avatar for Teme64
0
122
Member Avatar for god_1896

hello to all; I'am newbie to PHP and needed to all php master, Please help me to make this code funtionally working, her is my code that i mean to <form id="myProvince" method="get" action="index.php"> <select name="select" style="width:200px" onchange="myProvince()"> <option value="all">Province</option> <?php $ByProvinceToShow=province::getByProvince($select); if (!isError($ByProvinceToShow)) { foreach ($ByProvinceToShow as $element => …

Member Avatar for god_1896
0
152
Member Avatar for slayman89

[code] int main() { vector<double> list; bool more = true; while (more) { double x; int yes; cout << "Do you have numbers? yes=1 or no=2" "\n"; cin >> yes; if(yes == 1) { cout << "Enter number""\n"; cin >> x; list.push_back(x); yes = 0; } if (yes == 2) …

Member Avatar for slayman89
0
250
Member Avatar for letlet_pogs

hello guyz, do you know best sites to recommend about "JOPtionPane"?? i need to have more tutorials with this due to our next project..i hope you could help me guyz...thank you ahead..

Member Avatar for letlet_pogs
0
76
Member Avatar for virajmm

Hello, I am totally new to PHP...started working on it a week back. I am looking for a innerHTML equivalent in PHP. I need to create a web page with a "Add row" button which when clicked would add 1 blank row on the screen with "remove" button infront of …

Member Avatar for Will Gresham
0
89
Member Avatar for jackakos

I have this chronic problem with my php file, though I have made a lot research about the submit buttons and isset and $_POST part of the problem still persist. For you to understand and probably point out my mistakes, i have enclosed the script below: [code=php]<?php $m = (!$m) …

Member Avatar for Will Gresham
0
220
Member Avatar for vrga

I am having trouble reading the second matrix from my file. Can anyone help me please? Thank you!

Member Avatar for vrga
0
115
Member Avatar for gangsta1903

I want to create a class for I/O operations. This class take filename as parameter and then provides functions to write and read from file. I had to include two different fstream objects,one for input and one for output ,so I designed such an implementation.If you can see a better …

Member Avatar for gangsta1903
0
137
Member Avatar for lllllIllIlllI

Hi I have fiddled around with other GUI's such as pygame and wxPython but i wanted to use something a little more powerful when it came to 3D objects and i saw what PyOpenGl can do. But i spent ages looking for any help but i couldn't find any place …

Member Avatar for lllllIllIlllI
0
684
Member Avatar for shuey79

When I run this I get an error saying that the sql syntax is wrong. [U]Field types are:[/U] [B]Time:[/B] Text [B]Date:[/B] Text [B]SalespersonID:[/B] Integer [code=vb.net] Dim sqlWrite As String = "INSERT INTO Audit (Time, Date, SalespersonID) VALUES('" & CType(lblTime.Text, String) & "','" & CType(lblDate.Text, String) & "','" & SalespersonID & …

Member Avatar for shuey79
0
328
Member Avatar for orangejuice2005

I have this big operating system's project where I have to basically write my own mini operating system. I have everything broken into pieces and am taking it step by step. Starting with the loader. Prior to this class, I had no idea how intricate an OS system was and …

Member Avatar for orangejuice2005
0
264

The End.