199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for ahoyikisoba

I am trying to find the SDK for sony ericsson, I can't seems to find it anywhere! Any info for me? Thanks!

Member Avatar for ahoyikisoba
0
205
Member Avatar for ravikiran032

I am doing mini project in [B]VB.net[/B]. Actually my project contains [B]form1[/B] and [B]form2[/B]. I have opened form2 from form1 using "[B]form2.show()[/B]" method. While closing form2, my application still remains in debugging mode. I thought my form1 has not yet been closed and used [B]me.close() [/B], to close form1 while …

Member Avatar for ravikiran032
0
93
Member Avatar for jake43

I am new to c++ and i advice for this particular assignment. I new to programming. The instruction is to use while loop for the two output process and for loop for the other 2 output. #include <iostream> #include <iomanip> #include <math.h> using namespace std; int main() { system("color 4"); …

Member Avatar for VernonDozier
0
112
Member Avatar for flebber

HI I would appreciate some assistance if possible. I am embarking on setting up a database for sports data and results( at home project). Wanting to know which application would be most suitable. Data would consist of 60% text(venues dates etc) 40% data(times scores resuts etc). Most of the data …

Member Avatar for flebber
0
118
Member Avatar for Schwein

Can Someone help me regarding my C++ Assignments? I'll list the questions below: ASSIGNMENT 1 Assume the array in the following table represents the monthly rental price of six resort cabins over a five-year period. YEAR 2005 2006 2007 2008 2009 1 200 210 225 300 235 2 250 465 …

Member Avatar for VernonDozier
0
197
Member Avatar for sonia sardana

[code] function ConvertToUpperCase() { var result; var numaric = "sonia"; var Character = numaric.charAt(0); result=Character.toUpperCase(); //In Result char is coming in UpperCase /[B]/I want how to replace the charater at postion 0 in numaric with result[/B] } [/code]

Member Avatar for Airshow
0
234
Member Avatar for Smoking Bros

Hello guys! I'm new at C++ (started yesterday) but I'm a fast learner and I think I got pretty far with this noob project! The only thing I need to do is to make C++ open my .txt file and the beta version of this application is done! By the …

Member Avatar for AssaultM16
0
225
Member Avatar for maxicube

hey all, been a while since I've been on here. I was wondering how I could make an rss reader for twitter, and make it so that it displays the content of my 'twit' and nothing else (like time/date ect.) Thx in advance, Maxicube

Member Avatar for maxicube
0
106
Member Avatar for iamsmooth

Hey guys: I'm having trouble breaking out of a loop that takes input from a file. I can only break it if I make a code that specifies how many inputs there are and makes it stop when it reaches the max input. I think it has to do with …

Member Avatar for mrnutty
0
142
Member Avatar for perlfan

The following code: Exits immediately and produces the message below when search pattern "[COLOR="Green"]\b\w+{3}\b[/COLOR]" is entered: [code=perl] #!/usr/bin/perl -w #matchtest1.pl use strict; my($pattern); my($true); $_ = '1: A silly sentence (495,a) *BUT* one which will be useful. (3)'; do { print "Enter a regular expression: "; chomp($pattern = <STDIN>); if …

Member Avatar for perlfan
0
137
Member Avatar for Defaye

Ok I need help with this structure its now been split into header and main, I have added a function which runs after adding a new customer which is for writing it to a txt file, the program builds fine but once it gets to the part where it needs …

Member Avatar for Hiroshe
0
152
Member Avatar for goody11

Hey, I was attempting to make a password protection system in windows API where someone can type the password in an editbox and if it is the right password, then continue the program else display an error message box. I've tried a bunch of different things but can't get one …

Member Avatar for goody11
0
113
Member Avatar for catcit

Hello! I`m new here and I hope you could help me. I have to make o program that takes an excel file, counts the number of columns and extracts only two columns from the file and prints them in a .txt file. The number of the columns are inserted from …

Member Avatar for sab786
0
133
Member Avatar for wantolearn

Hello im trying to create my first software :) this is what im wanting to do There is a text box with 1 command button and inside the text box will store arrays 0-25 for example [code] cypher(0) = "0" cypher(1) = "1" cypher(2) = "2" cypher(3) = "3" cypher(4) …

Member Avatar for vb5prgrmr
0
110
Member Avatar for spalax

Hi, i'm a beginner in Java. i'm just trying to code a program that extract some specificline from a text file. for example : i want to extract line No 5000 and lineNo 5100 and lineNo 5200. Here is my code, but it only extract just one line from my …

Member Avatar for spalax
0
3K
Member Avatar for ju_10_ve

[B] plz i wont soulotion of my questions by codes : where list is the node pointer for the whole double linked list how i can : 1- add a node after the node that has 30 2- delete a node at the beginning of the list 3- delete a …

Member Avatar for invisal
0
164
Member Avatar for EvilOrange

hi, its been a long time since i've had to work on c and i've stumbled. I'm basically trying to get a string[5] into a 2d array stringarray[10][1] [INDENT][CODE] char string[5]; char stringarray[10][1]; void workfunction(); int main(){ workfunction(); for(i=0;i<10;i++){ printf("%s", stringarray[i][0]); } } workfunction(){ for(j=0;j<10;J++){ //does something to get me …

Member Avatar for EvilOrange
0
121
Member Avatar for k007

This is part of an assignment that I am doing. I have to create a Queue (FIFO) using templates. I have been able to create that and it works. There is one more part to this same assignment where I am unable to figure out how to proceed. Here is …

Member Avatar for k007
0
1K
Member Avatar for brentv911

Hello, I'm looking for a way to make a simple multi line text box in PHP. I am trying to make a text box a couple thousand characters log. but when i try to create it, it just makes a very long text box. I can't seem to find any …

Member Avatar for Josh Connerty
0
198
Member Avatar for Newbi

Hi i am fairly new to php and am trying to make an application where some1 enters a unique id which brings up a form with data in it retrieved from the database. the user should then be able to edit the information and submit & the details changed in …

Member Avatar for Newbi
0
202
Member Avatar for severman

hi all! i have a question. i want to add an img to a specific cell in a table(which is inside a form) with inside a javascript function. (i greened which function i use, which cell i want, and which img i want) this is the code i write so …

Member Avatar for essential
0
130
Member Avatar for gauravmishra

[code] #include<iostream> using namespace std; class sample { static int i; public: sample() { cout<<"base:construcotr"<<endl; cout<<this<<endl; } ~sample() { cout<<"destructor"<<endl; cout<<this<<endl; } sample(const sample &s) { cout<<"copyconstructor"<<endl; cout<<this<<endl; } /* sample operator =(sample s) { cout<<"==operator called"<<endl; cout<<&s<<endl; return s; }*/ }; int sample::i=0; sample fun(sample x) { cout<<"hello"<<endl; cout<<&x<<endl; …

Member Avatar for mrnutty
0
110
Member Avatar for Lioshenka

Hello all, in time of need I always come here to cry for help) Anyways. What I need to do is to store data about people in a binary tree. They need to come from a file, but for now I can hardcode them in. To put it simple, I …

Member Avatar for Lioshenka
0
153
Member Avatar for Aiban

Hi There. My code is functioning well these days ... my first project which is a big project is nearing completion and would like some ways of tidying up some functions. It's a backup program and when you press a button it backs up a section of your system. Here …

Member Avatar for Aiban
0
627
Member Avatar for dwdata

I have one page that has several form actions: [CODE]form action="maze_enter.php" method="post" enctype="application/x-www-form-urlencoded" name="finance" target="_self"> <tr> <td colspan="2" align="center" valign="middle"><span class="style11"><a href="#" onclick="document.finance.submit();return false;">Enter Maze</a> </span></td> </tr> </form> <form action="maze_enter.php" method="post" enctype="application/x-www-form-urlencoded" name="shop" target="_self"> <tr> <td colspan="2" align="center" valign="middle"><span class="style11"><a href="#" onclick="document.shop.submit();return false;">Enter Maze</a> </span></td> </tr> </form> [/CODE] I want …

Member Avatar for kireol
0
134
Member Avatar for jake43

I have an issue with this assignment, the instructor says that I use the brackets incorrectly that is why the program will not compile. Please provide feedback to correct program. #include <iostream> using namespace std; int main() { system("color 4"); restart: int number, ans; number = rand() % 100 + …

Member Avatar for Salem
0
205
Member Avatar for Laik

Hi guys...I am starting with Qt and I have problems with configuring it. It write: "Start C:/Apps/Qt/demo/demo.exe... This proccess could not be started !" I am using Qt Creator 1.2.1 on Win XP SP2. In code: [CODE] #include <QApplication> int main( int argv, char* argc[]) { QApplication demo(argv,argc); return demo.exec(); …

Member Avatar for Laik
0
73
Member Avatar for smoore

I think all together its about 2000 lines of code give or take. Took me a good 2 weeks to complete. The program is called Character Creator. What is does is basically creates characters with skills / stats / attributes and a custom image that you provide. There are a …

Member Avatar for VernonDozier
0
312
Member Avatar for cougarclaws

OK, with some help from all of you, I have this working, but I am at a loss as to how to display the number of steps the user asks to show (if they say 10, then every tenth answer displays until the final one) and we need this to …

Member Avatar for cougarclaws
0
129
Member Avatar for ddanbe

I'm working on a Complex number struct. To display the numbers I've overridden the ToString method like this: [CODE=c#]public override string ToString() { if (_imag >= 0) return String.Format("({0}+{1}i)", _real, _imag); else //imaginary part negative return String.Format("({0}{1}i)", _real, _imag); }[/CODE] Works fine. My numbers get displayed as (a+bi) or (a-bi). …

Member Avatar for sknake
0
329
Member Avatar for Kecy

I was trying to install sql server 2008, and came across a problem. After testing the setup files, I got this result: passed 10; Failed 0 and Warning:1. The warning is for the windows Firewall image. Can someone please quickly tell me how to handle this an continue with my …

Member Avatar for sknake
0
93
Member Avatar for caierhui

//The Calculate and exit button does not appear every time i run the program... HELP PLEASE.... import java.awt.event.*; import javax.swing.*; import java.awt.*; public class Assign_1 extends JFrame { private static final long serialVersionUID = 1L; private JLabel quizOneL,quizTwoL,quizThreeL,quizFourL,AverageScoreL; private JTextField quizOneTF,quizTwoTF,quizThreeTF,quizFourTF,AverageScoreTF; private JTextField weightOneTF,weightTwoTF,weightThreeTF,weightFourTF; private JButton calculateB, exitB; private CalculateButtonHandler …

Member Avatar for quuba
0
107
Member Avatar for group256

Hi everyone, I'm trying to do my assignment, and in there, I'm supposed to use a nested class with which seems I'm facing a lot of difficulties. To make things easy to understand and debug, I made a small piece of code as follows: [CODE]class outter { public: int getID(); …

Member Avatar for Sky Diploma
0
146
Member Avatar for caramel91

Hey,just wanna consult any expert,currently i'm studying visual basic.NET myself by using this book "Sybex Mastering Visual Basic 2008",all i wanted to know is i can't find any task or homework to evaluate how well my understanding to it,of course,i'm not like some other people who just read over the …

Member Avatar for calsey
0
110
Member Avatar for thanatos1

hi guys, i'm wondering how to calculate a probability and make the program respond to the result. for example, in this little text RPG i want the drop rate of certain items to differ after the player has killed an enemy, or the accuracy rate to change based on the …

Member Avatar for sknake
0
196
Member Avatar for recycle_carlbin

This code will run but it has some errors in it( I mean,logically wrong.) What is its error? Can you help me figure it out? [CODE]void preOrder(){ myPreOrderTraversal(this); } int myPreOrderTraversal(BinaryTree t){ if (t != null) // {} missing return t.getRoot(); //return should be removed myPreOrderTraversal(this.getLeft()); //replace this with t …

0
82
Member Avatar for Dajer

hi there i have 2 forms that each one has a datagridview. i want when i fill dgv1 in form1 and press a button the dgv1 data has been sent to the dgv2 in form2.But it doesn't work. form1: [CODE]public string str; private void button1_Click(object sender, EventArgs e) { str …

Member Avatar for sknake
0
193
Member Avatar for speedy gonzalos

Hi I am trying to update more than 1 field in an Access table. I am developing a windows application using an Access database in vb.net. This is the code that i have for my Update button, which works fine if i want to update the field 'CategoryName' however when …

Member Avatar for sknake
0
2K
Member Avatar for selvaganapathy

Hi, I am designing a Task Manager like Application in C#. It displays the currently running processes. I used to get the Process detail using Process.StartInfo. But Process.StartInfo.UserName is empty for all process. How can get the UserName for the currently running processes.

Member Avatar for ddanbe
0
568
Member Avatar for arvindikchari

Hello I have a ticket helpdesk script that I am converting to make it completely skinnable. For this, there is a file called header.php which includes the link to a css file. The code is below [code] <link rel="stylesheet" href="<?php print $GLOBALS["URL"];?>/templates/gothica/aquarius.css" type="text/css" /> [/code] I want that the path …

Member Avatar for diafol
0
154
Member Avatar for samoual

i have problem with compiling vb6 application not certin one but all even the one that i have compile before it just give me automation error with ok and help since i dont have the msdn library its not useful i have remove and install vb6 but still the same …

Member Avatar for dspnhn
0
298
Member Avatar for Stefano Mtangoo

I want to use folded panel in wxPython, like one In explorer in Windows XP. I have tried to check through API and Demo but I cannot Get Idea. The Demo example is complicated Anyone to get me up and running. I'm still googling, but your help is highly appreciated …

Member Avatar for Stefano Mtangoo
0
206
Member Avatar for Stefano Mtangoo

I have two different pyApps, and I want to make a task bar Icons. For one I use .ico file and another .png file. The .ico one works but not the .png file. Does it mean I cannot use PNG file to make taskbar icon? Here is a code that …

Member Avatar for Stefano Mtangoo
0
93
Member Avatar for gretty

hi My random number function is meant to loop 6 times & output 6 different numbers. But instead it outputs 6 of the same numbers. How do I fix it? :) Any advice would be really helpful. [CODE=cplusplus] #include <iostream> #include <fstream> #include <cstdlib> #include <ctime> #include <iomanip> #include <string> …

Member Avatar for twomers
0
463
Member Avatar for dub4theworld

I am attempting to alter a Blackjack game so that the game throws an exception and repopulates the deck when their are less than 3 cards per player. I am pretty sure I am on the right track but after 3 hours of trial and error I am still unable …

Member Avatar for Sky Diploma
0
108
Member Avatar for valter

I have a form called MainForm with controls on it say a combobox and textbox. I have a separate class called routines which hold my methods. I am simply trying to control the visibility etc of the controls on MainForm by a method in Routines. The MainForm class is public. …

Member Avatar for ddanbe
0
110
Member Avatar for Karthy
Member Avatar for 9868
0
124
Member Avatar for Stefano Mtangoo

Hello guys, I have loaded akrip32.dll and can get handle within a function, but cannot get it when calling the function in main() Please help me app.cpp [CODE=C++] #include <iostream> //testing function below //main application int main() { CDRip instance; DWORD ver = instance.GetVersion(); LPGETCDHAND cdhandle; HCDROM handle ; handle …

Member Avatar for Stefano Mtangoo
0
199
Member Avatar for agentili

How do I create a field in ajax? I am totally new, i using this ajax form and i need to create a new field!: [ICODE]'||var|get|||||if|id||||||||||||||||||||value|span|style|function|className|return|div|false|important|label|RequiredField|RequiredFieldVisible|li|document|innerHTML|px|ContactFormJs|class|title|type|text|http|message_label|else|focus|name|for|display|contactform|width|input|this|contact_form_website_label||where_did_you_hear_about_us_label||your_country_label|none|ContactForm||JS|setAttribute|_required|nbsp|contactformroot|window|flv|navigator|option|SecurityCodeLoader|visibility| inpt_email|contactformskin|auto|create|contact_form_name_label|onkeyup|contact_form_email_label|select|textarea|height|createGUIDKey|appendChild|indexOf|setTimeout|val_email|Scripts|userAgent|css|ul|inputs_width|email|selected|on|SecurityCodeCheck_required|new|SubmitReservation|visible|getElementsByTagName|inpt_website|true|addEventListener|renderContactFormJs|ActiveXObject|attachEvent|loadStylesheet|firstname|SecurityCodeCheck|unselectable|SecurityCodeOverlay|href| new_security_code_label|top|hidden|where_did_you_hear_about_us_input_enabled|countries_input_enabled|InputJs|val_website|submitReservationForm|contactformjs|msie|MSIE|test|with|strong|Internet|Explorer|name_li|contact_form_name_label_required|email_li|contact_form_email_label_required|website_li|contact_form_website_label_required|where_did_you_hear_about_us_li|dropdowns_width|onchange|where_did_you_hear_about_us_label_required|your_country_li| your_country_label_required|comments_li|overflow|ismaxlength|message_label_required|AntispamPanel|position|size|onclick|generateNewSecurityCode|button|validateReservationForm|ReservationSent|color|white|font|trial|version|of|acidmartin|wemakesites|net|pageId|reservationid|reservationbody|LoadingItemFix|where_did_you_hear_about_us_array|length|countries_list|antispam_enabled|dropdownheight|overflowY|inpt_name|comments_enabled|appName|head|toLowerCase| disableReplacedButton|substring|createElement|checkSecutityCode|removeClassName|replace|createRequestObject|Microsoft|by|messagemaxlength|brjsSkin|brjsFolder|srjsSkin|srjsFolder|srjsEnabled|srjsItemScrolling|srjsOptionsListHeight|inputjsrootfolder|inputjsenabled|inputjsskin|init|load|onload|contactformenabled|AJAX|Hotel|Reservation|Form|cannot|be|used|To|make|reservation|please|use|different|browser|Skins|Styles|form|autoComplete|off|ContactFormJs_|contactformwidth| RelativeFormWrapper|LoadingPanelProperties|loading|panel|properties|LoadingPanelPropertiesDitherColor|dithercolor|personal|info|where_did_you_hear_about_us_please_select|your_country_label_please_select|comments_box_height|cols|rows|security_code_instructions|relative|img|116|src|Transparent|gif|maxlength|security|code|javascript|void|buttons||area|submit_form_button_text|contact_form_submitted|background|829360|12px|line|22px|weight|normal|left|block|indent|static| margin|padding|align|center|Created|target|_blank|lorem|ipsum|dolor|sit|amet|replaceButtons|replaceSelectBoxes|your_country_label_SkinnedSelectBox|where_did_you_hear_about_us_label_SkinnedSelectBox|rounded_corners_enabled|initInputJs|Opera|border|20px|chrome|safari|renderAjaxLoadingPanel|enableReplacedButton|5000|click|10000|Math|random|0x10000|toString|attachDomEvent|getElementById|link|rel|stylesheet|split|val_name||val_comments|val_where_did_you_hear_about_us| val_countries_input|clearRequiredClass|required|field|1000|RegExp|XMLHTTP|XMLHttpRequest|Sent|created|Martin|Ivanov|open|php|msg|personname|country|website|hear|onreadystatechange|readyState|hideLoadingPanel|2000|displayLoadingPanel|send|null|disable_after_submit'.split('|'),0,{}))[/ICODE]

Member Avatar for DangerDev
0
103
Member Avatar for iamsmooth

So for my comsci assignment, I need to read in this text file with a butt load of messages. Here is what the text file looks like: [code] 1 R Jemma Harry What were you thinking? Harry, You seriously need to stop claiming your paperclip orders under the heading art …

Member Avatar for thelamb
0
116

The End.