199,114 Archived Topics
Remove Filter ![]() | |
I've constructed a photo gallery with a dynamic CMS backend that allows the content providers to upload, delete, etc images. All images are stored as reformated jpeg files (processed by the GDLib on upload) and the relevant metadata is stored in a table called `gallery`. References are made by an … | |
Hey there, This is my first posting, as for once in my life I need extreme help with programming. I can work C with a little magic, just assembler is just [B]NOT [/B] my cup of tea. I was hoping that my attempts will show through, yet there are numerous … | |
Hi guy, I need to create a program that sorts 3 words entered into order from shortest to longest. So far I have the following done but when I run it, it only displays the first two words in order of length and doesnt show the 3rd word. Can anyone … | |
Hey everyone, Would someone please be kind enough to direct me to a good explainatory tutorial site or that can explain to me in how I would go about in answering this question. I don't know where to begin or start. What is the decimal value of the binary fraction … | |
# tpm.py # A program that accepts the total amount of purchase, calculates the # appropriate discount, and displays the discount and the purchase after # discount. from math import * def main(): cost = get_cost() discount = get_discount() % = calc_percent(discount) final cost = get_final_cost cost_percent = cost_discount(cost, discount) … | |
hi .. can any 1 give me "brilliant" idea to do this (Projet ) in ASP.NET [B]An airplane reservation system for an airline. The airline allows a 15% flight overbooking, and passengers who cannot be accommodated are compensated, and rebooked on the next available flight. Also take into account flight … | |
[B]Hi everyone, First I want to say hello to everybody in this site and I hope that you'll welcome me as one of your nice members :o . I've just started learning C++ language, and now I have to make a small program that counts the average grade for a … | |
Ok, :) For the conversion of binary to decimal, check it out: Let’s say we have to convert – 1010.1010 We solve this kind of problems into two parts as follows: (<LHS> . <RHS>) 1. First take the left hand side no. of the radix point( . ) which is … | |
[COLOR=DarkOrange]Hi , Please give me example for xml file parsing in c++ using xerces libraries(xerces-c_2_3_0.lib).Please give me the simple example of parsing the example xml file and how generate sax tree print on screen. Thanks Krishna kant lowanshi [email]kklowanshi@gmail.com[/email] | |
Hello all, Thank you ahead of time if anyone answers this. I am new to c++ and am having some difficulty understanding my assignment. I wrote some code that does what the teacher has requested but according to her it does not utilize a function. I know that I have … | |
Dear everyone; I am after a function, which could work out the inverse of a letter: Dim a as string a b c d e f A = F E D C B A Now the inverse would be F E D C B A The inverse is worked out … | |
Is there a code that you can use to create an object(s)? Ie Picture box and other ones already in vb.net | |
I have created the foloowing javascript and placed it in a file called common.js. it gets called on a onChange event. it works up till it gets to setting the value (i think). Being my first script i'm really at a loss why it errors out. I tried .value() = … | |
Hi, I've got a small program, that would be really useful if it could stay on top of other windows programs, i don't think there is a method for that in Tkinter, if anyone has any experience or ideas on this topic, please let me know thanks | |
I'm looking for a source code using the LSI technique (Latent Semantic Indexing) for information retrieval. Any help would be very appreciated! | |
Hello can anyone please help, I have started the assignments, but am a little confused, what i need is 9 option buttons: at the buttom i have enclosed the code i have written please have a look and please help, If the user enters option 1, it should make option … | |
Hi, basically I have an array of JButtons 0-25 labeled A through to Z. When each of the buttons are clicked I need to call a function passing the letter value. I thought that I could do this like this: [I] if (buttonObj == letterButton[0]) { functionName(); }[/I] But I … | |
This is what i have in a file sortdata IGOT C9.1.20.2DBSU10 - - CVGRETesting C9.1.20.2DBSU11 - - BalInqMail C9.1.20.2DBSU11 - - SecScore C9.1.20.2DBSU8 - - IGOT C9.1.20.2DBSU8 - - IGOT C9.1.20.2DBSU9 - - SecScore C9.1.20.2DBSU9 - - When i Sort i am getting BalInqMail C9.1.20.2[B]DBSU11[/B] - - CVGRETesting C9.1.20.2[B]DBSU11[/B] - … | |
Hi I am having a file called Log.csv which contains 196 columns 9 of them empty and 1447 rows, I start reading the file but as I think I am facing a problem of getting the whole data, actually it gives me empty screen when print out on the screen. … | |
How do I go about defining the average and total variables in the following script? Assistance is appreciated... Ben import javax.swing.JOptionPane; class minmax { /** Main Method */ public static void main(String[] args) { final double TOTAL_NUMBERS = 5; //Convert string to double double Average = Double.parseDouble(averageString); //Convert string to … | |
I have just finished a PhD in Algorihmic Techniques, all written in C++. I would now like to work from home, with an option of commuting to London once a week. Could anyone suggest how I could get my first paid contart within algorithms. | |
Hi, i'm now making a project of sending ,receiving ..with SMS.I think only sending, receivng,includeing error handlin doesn't make my project complete. What do i need to improve my proj. plz ignore my mistakes. :cheesy: Thank You | |
Hello everybody, I am using a Laptop that runs the Windows XP Home Edition operating system. However Win XP Home Edition doesn't ship with a web server IIS / PWS. Can u suggest me how to run ASP script ? Is there any free ASP host which is trust worthy??. … | |
I don't know if this is possible but would appreciate any help. RefDes table: ------------------------------------------ ID RefDes ------------------------------------------ 123 VR1 123 C1 124 C2 123 C2 123 R1 125 R2 ------------------------------------------ Is it possible to write a SELECT statement that will produce the following? ------------------------------------------- ID AllRefDes ------------------------------------------- 123 VR1, … | |
Why wont my delete name function acualy delete any names? [CODE]#include <stdio.h> #include <stdlib.h> #include <strings.h> void add_member(void); void remove_member(void); void display_next_member(void); void display_required_member(void); struct member_type *seek(struct member_type *, char[], char); void error_routine(void); struct member_type { char m_f_name[30]; struct member_type *pointer_to_next_record; }; struct member_type *position_ptr = NULL; struct member_type *temp_ptr; … | |
Write an interactive C++ program that prompts the user for ten (10) real numbers and calculate the sum, average, and prints the result. Hint: you may use an array to store the data. > Program requirements: > - The program must contain a class in which all the required private … | |
I have been working on this code for a banking program I am trying put together. Trying to test my ability to grasp this stuff on my own. I am stuck on this part and maybe it is my non-math mind that is causing a block. Can someone help me … | |
Hello, everyone. I'm working on rebuilding a GUI for an ultrasound machine and magnetic position sensor. I'm rebuilding the GUI because the previous coder's work ran too slowly, not allowing for the 30 fps capture rate that the (less useful) company-provided code was capable of. The original company code is … | |
Hello, i've got two tabels, "Artists" and "Music". The relevant columns are: Artists: [Id],[Name] Music: [Id],[ArtistId], [Title],[Added] I want select the post's in the music table, but instead of returning the artist id, it should return [Name] from the Artist table where Music.ArtistId = Artists.Id (so it looks in the … | |
![]() | Does anyone have any links/ tutorials about writing complex classes. U know stuff like overloading operators, using friend function. Or am I best to get a book on this. If so which book is good . ThanQ ![]() |
How can i Transfer a Particular Record from 1 Data Base to another.. i am using ADODC control and MS..Access database | |
Sorry because of disturbing, but i really need your helps . Please help me in C#. | |
HI FRIENDS I AM DOING MY mca IN PUNE I HAV PROJECT IN JAV FOR 50 MARKS I HAVE NO IDEA ABOUT WHICH PROGRAMS :?: CAN I WILL DO IN JAVA PLZ HELP ME TELL ME SOME PROJECT TITLES | |
Hi, I was lately interested in creating dll from C++ and using the functions in C#, I've came across one tutorial where the guy is creating dll in C++ and using them in another c++ project with VS 2003. I've tried the same with my VS 2005 but I didn't … | |
I am writing an application to interact with a Faircom c-tree database, there will be thousands of entries in the database I am trying to decide if I should impliment in perl or C++ Has anyone used Perl to interact with c-tree databases? What kind of perform have people got … | |
hi im covinus im new here. I was looking for a community that can help me learn perl through my own efforts. thats why i found this community.. i want to learn perl!! i cant afford to go to school and learn pearl so i just bought a cheap book … | |
I'm in an entry level c++ class. My professor wants us to write a function that counts the number of words in a string. The stipulation to this is, [I]A WORD IS DEFINED TO BE ANT CONTIGUOUS GROUP OF ASCII CHARS THAT START WITH THE LETTERS A THROUGH Z AND … | |
Hello friends, i am doing programs in c++....and think that my progress is good .. but here is very serious problem with me ..i need a c++ graphics simulation source code for generating huffman tree....plz if you peple know any link for source code or have that program ....let me … | |
hai , i am sandip :o could you help me making a stop watchinvb6? :!: | |
Hello all, this is a real newbie question. I just bought VisualBasic.net student addition. I also bought a book to learn the language. But I've ran into a problem. Example, when I start a form and add a button to it and hit f5 to run the program it runs … | |
Im trying my best but I keep gettting this Error. Somebody please Help me. Its error C2447: '{' : missing function header (old-style formal list?) Im New to C++ I really need Help, Let me know if Im on the right track with my HomeWork Please!!!Write an interactive C++ program … | |
[B]Hi every body, I'm a student in Open University and I face a big problem with learn the C++. So I wish that all of you can help me in this course. We work in C++ Builder 5. And I want to ask you one question that if I get … | |
Hello, I am one of those new assignment people, BUT I have tried to resolve this for a while now. Cant find much on google or other C++ sites. I am trying to compare string lengths of 3 words and then display them in order of length. My code is … | |
Ive been working on this assignment for ages now and its almost working.. well its working but since my output isnt right there must be something wrong lol. problem... I have to select an object to hit a ball.. the distance the ball travels is done using rand according to … | |
I am having a huge problem with writing this program. Every time I ask the teacher for help she is too busy helping someone else. so she just tell me one thing and runs off to the next person without checking if it worked and what other help I might … | |
Okay How Does The Pros Do It! The user fills out the entry form and becomes activated. But I don't want the Post method because the user cannot go back without getting an error... And I don't want the GET method because it shows in the address bar... How do … | |
Hi, i was writing a program to make permutations of strings, but I ran into a snag and can't figure out what's wrong. It prints out the permutated strings, but some of them are duplicates. I attached the source Thanks for the help. | |
hi everyone i am doing my assignmemt in C#.Most of the time i face exception like "overflow or underflow in arithmetic operation". i dont know why it occur and how to remove it. | |
I recently started to create a tag editor/creator for the game halo. It wasnt till just now that I have no idea how to read and write data from files. :rolleyes: so my question is: how could i open a file with the common dialog, and have it automatically display … | |
Hey Guys and Gals I just seeing if anyone can help me out? I discovered how to convert a Gui textfeild into an String but cant seem to find the on the api to do it for an int? For example int num = tfNum*****; Just cant find a appropiate … |
The End.