199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for T&T

Hello, I need your help in this programme. The programme is explained in the attachment file. the main problems are: 1) how can I get specific data from a data file. (as required in 3,4,5 and 6) 2) how can I solve the problem of over written the data file …

Member Avatar for ithelp
0
68
Member Avatar for ocreds

For: Sum = Var1 + Var2 Difference = Var1 - Var2 Quotient = Var1 / Var2 Product = Var1 * Var2 What Exponent = ? Thanks in advance...

Member Avatar for Alex Edwards
0
125
Member Avatar for afiq200990

Hey guys. Question is. I need an example of a working code for a multiset. Hope theres someone out there who can help me on this, kind soul. Probably a multiset with a set of a grocery lists; not numbers you know.. for eg... {eggs, tomatoes, onions, chicken, shampoo..etc} you …

Member Avatar for Undertech
0
135
Member Avatar for how1121

This program does not have any input. Instead, the main routine, called the driver, calls the Pay function, testing it with a variety of parameters. Your job is to write the function. It should calculate the rate of pay, but in this case, the function returns the amount of pay …

Member Avatar for ithelp
0
117
Member Avatar for just asif

me new in php i need some guide about the installation & implmentation of the php

Member Avatar for Shanti C
0
87
Member Avatar for natpu

[code]using System; class abc { public static void fun() { Console.WriteLine("Function"); } public static void Main(string[] args) { ThreadStart ts=new ThreadStart(fun()); Console.WriteLine("Main begins"); Thread t=new Thread(ts); t.Start(); Console.WriteLine("Main ends"); } } [/code] [B]Output showing[/B] Main Begins Main ends Function. [B]My Question[/B] The thread has been started and then the "Main …

Member Avatar for natpu
0
97
Member Avatar for zakshurst

Hi I am looking fro some real world examples of Agile project in particular MSF 4.0 for development methodology combined with Scrums for management. Background Currently our company uses the water fall model, but new developments I believe are better suited to Agile. To this end I am trailing out …

Member Avatar for sarehu
0
130
Member Avatar for CoolGamer48

Hey I'm writing a color class, and I want to have a constructor that can take in an unsigned int like 0x00FF00FF and interpret it as fully opaque green. I have code for that (I think it should work, could someone check it?): [CODE] rzb::color::color(unsigned int hex) { m_red = …

Member Avatar for ArkM
0
245
Member Avatar for vibhashin

I m new to java. I need help What are the software/component used to compile Java program? What are the editors used to write Java program? What are the software/component used to write Java program? What are the software/component used to execute Java program?

Member Avatar for vigneswara
0
80
Member Avatar for qaz1134

hello guys iam new in this forum and comunity can you please help me with my code? i must input a string or name depending on how any time i like and out u it at the end but my code only ouputed the last name i enetered and it …

Member Avatar for vigneswara
0
117
Member Avatar for vlopez

Hello, I just started programming in c# a few months ago, i have to do a project that consists in picking up a phone call using my computer, play a .wav file and then detec the key pressed by the user on the telephone pad and according to which number …

Member Avatar for kondayya
0
365
Member Avatar for andrew13d
Member Avatar for Labombadog

Hi, I normally post at the IGN boards for games, but recently I semi-quited games(school reasons) and thought of getting serious with C++ because I want to become a game designer in the future. I know its going to take a lot of hard work and time but I know …

Member Avatar for mahlerfive
0
132
Member Avatar for plike922

I am learn about using arrays and i need help [CODE]#include <cstdio> #include "simpio.h" #include "strlib.h" #include <iostream> using namespace std; #define Max 6 int main() { int power2[Max], i, n; for (i=1; i<=32; i++) { power2[i] = i; i = i*2; } for(n = 0; n<=Max; n++) { printf("%d …

Member Avatar for Aia
0
81
Member Avatar for AON07

K i have installed XAMPP, which includes (Apache 2.2, PHP, MySql and Filezilla) for windows XP Media edition. I have put my webpages in the C:\xampp\htdocs folder. The browser will run any HTML files in this folder using ://localhost/ however when ever i call on a .php file the browser …

Member Avatar for AON07
0
179
Member Avatar for omdnaik

Hii there Can ne tell me how to compile and run a C prog. using microsoft VC++... Till now i have been using Turbo C++ Compiler...

Member Avatar for Ancient Dragon
0
139
Member Avatar for herephishy

Consider the following VBA statement that calls a user-written function procedure Conevol with two arguments: Volume = 0.333* Module1.Conevol(radius, height) Based on the above VBA statement, identify the assertions below that are false: a. The above VBA statement resides in Module1 b. Conevol is a public procedure c. Conevol returns …

Member Avatar for aktharshaik
0
165
Member Avatar for HLA91

Hey all I am making a simple text editor, it is my first project and I have got the text area all set up but i have now tried to add a menu bar which will hold the File>Save,Open,exit etc... I have created the menubar and added one menu item …

Member Avatar for HLA91
0
3K
Member Avatar for tuse

The website that I created enables users to signup. When they register an account, a mail is sent to them. In the mail, I wish to send them a link upon clicking of which enables them to login. How can I do this? ----- I was thinking on the following …

Member Avatar for tuse
0
65
Member Avatar for dinilkarun

hi, I would like to delete duplicate rows in MS ACCESS. Note: There are no PKEY in Database also the DB allows duplicate records. Please help Regards, DINIL

Member Avatar for mrsjpvan2
0
87
Member Avatar for herephishy

I'm trying to create a do while loop where I can automatically fill cells A1:D1 with the numbers 4 to 1 respectively. can anyone help??

Member Avatar for aktharshaik
0
173
Member Avatar for PC_Nerd

Hi, Im trying to find out about redirecting my site to another daomain - and I couldnt quite pick the right forum to post in so this seemed the best one since im most familiar with PHP. short and to the point. xyz.com I want that to be viewing abc.def.com …

Member Avatar for Coldice4678
0
133
Member Avatar for Karil

Hi Guys I just started learning some C# Coding and i was wondering how i would make an interface for a C# program. If this is a dumb question please dont be too cruel to me.

Member Avatar for natpu
0
143
Member Avatar for Mr.UNOwen

Hello, So I'm following this tutorial ([url]http://www.csharp.com/javacfort.html[/url]) to learn how to link java with C and I want to be able to link java to two C programs (one for linux and one for windows). How do I create a java class that figures out what OS it's on and …

Member Avatar for sciwizeh
0
155
Member Avatar for loimarie

Hi!i need your help.please help me solve my assignment in numerical analysis,our teacher asked us to get the derivative of a function using turbo c programming language.I really don't have any idea on how to solve this. The equation would be like this [COLOR="Red"]f(x)=3x^2-5x[/COLOR].In this program, the user is asked …

Member Avatar for loimarie
0
160
Member Avatar for herephishy

How would I modify this do while loop to generate the values 4 to 1 instead of 1 to 4 I can't figure it out?!?!? thanks

Member Avatar for aktharshaik
0
105
Member Avatar for Jadellll

My code is below. Try running it if possible to see the problem. But basically, after returning the word as backwards (cc2) it then displays none on a new line. Why? and how do I prevent this in the future? [CODE]print "Welcome to the string reverser and palindrome checker. \n …

Member Avatar for Aia
0
140
Member Avatar for scream2ice

hey all; is there a conversion from "char" to "int" or to "double" possible ? If yes, how? and if not, how do we work with numbers that have more than 32 digits, for instance a 500 digit number? thanks

Member Avatar for invisal
0
331
Member Avatar for phdbd

Hello, Today I put together some code for a VB macro, but, having tried different methods I can't get it to loop. The closest I could come was getting my 1st copy paste to do so infinitely. I'm trying to get it to copy the department name in front of …

Member Avatar for aktharshaik
0
291
Member Avatar for foxfire

Hello to everyone... Hi I'm new to C# programming, but i have a background in programming specially in c, c++ and vb 6, now i'm trying to study the c# programming, i have a problem to solve i am doing a project in c# that the sql connection string of …

Member Avatar for JerryShaw
0
469
Member Avatar for herephishy

Ok. here it is. can anyone help?? [R5] Consider the following code segment: Dim I, Isum As Integer Isum = 0 For I = 8 To 1 Step -3 Isum = Isum + I*I Next I What will the value of the variable I at the termination of the loop? …

Member Avatar for aktharshaik
0
91
Member Avatar for jazu100

I have to send bitmap and do something like this: Client: [code] HBITMAP bmp = LoadBitmap(0,MAKEINTRESOURCE(1)); send(socket,(char*)&bmp,sizeof(HBITMAP),0); [/code] Server: [code] HBITMAP bmp; recv(socket,(char*)&bmp,sizeof(HBITMAP),0); [/code] But this won't work and I know it... so I have to use e.g. GetDIBits and SetDIBits. But how? Please don't give any example links, they …

Member Avatar for jazu100
0
214
Member Avatar for swamy kavitam
Member Avatar for Salem
0
61
Member Avatar for architact

Hello, I have designed a website which let the users create account and use our services, my client asked me to design a page which will show all the online members at that time, the solution i have figured out is that i have create a column in my user …

Member Avatar for scru
0
81
Member Avatar for Anticipation

Hi! I'm writing an application in VB.NET for drawing. The problem is, that when I try to draw in freehand, it allows me to draw one thing, then when I lift my mouse and go to draw another thing, i get an Out of Memory Exception. Any help would really …

Member Avatar for Anticipation
0
144
Member Avatar for conan19870619

what is the easist way find out the number of lines in a txt file? there seems to be a function to ignore rest of the line...will that help?

Member Avatar for Radical Edward
0
190
Member Avatar for chern4ever

i want this result : [CODE]* * * * * * * * * * * * * * *[/CODE] but i get this result with this code : [CODE]* * * * * * * * * * * * * * *[/CODE] [CODE]Private Sub Command1_Click() a = 5 …

Member Avatar for mmkhetan
0
77
Member Avatar for Wiki_Tiki

Hi everyone, I've been working on a word processor called 'Pen and Paper', and I need some help with the Find/Replace Dialogs. I'm using Visual C++ 2008 Express, and I have a Richtextbox control (txtdisplay) including a main menu. I've finished making everything such as save/open, New Document, but I …

Member Avatar for William Hemsworth
0
176
Member Avatar for anuj_sharma

hey guys, I have made a database using mysql and php. I have also put in a search option. But what i want is that if the item which is being searched for is not in the databse it should return "Database Not Found". I am not able to execute …

Member Avatar for anuj_sharma
0
77
Member Avatar for yasmena

i have a login page which contains a text box for a username i want whenever i get to this page the Cursor is in the Text Box Waiting for my entry i know its so simple but im new to JS

Member Avatar for yasmena
0
89
Member Avatar for wussa

This is in c programming. The question is not with me right now but its like this, the program wants me to input 10 numbers and then find the average,total,maximum and minimum, Then print back the numbers according from lowest to highest. I'm having a bit of difficulty doing it …

Member Avatar for paragt
0
164
Member Avatar for keithmolo

Please let me know if this is possible or even remotely possible! I need to write to a file, but directly to hex. For example, if I write "2D" to the file, i want to be able to open the file in a hex editor and see "2D" in the …

Member Avatar for jephthah
0
192
Member Avatar for anuj_sharma

hey guys, I want to make a table but i want the first column of the table to have a radio button. On clicking the radio button i want the user to go to another page. Please suggest some ideas or some coding which could help me.

Member Avatar for anuj_sharma
0
495
Member Avatar for tuse

Hi all! I am trying to connect to a remote MySQL database. This database is located on my LAN at the address 192.168.1.2. I am using MySQL Connector/ODBC 3.51 (MyODBC 3.51) for the connection. The connection string that I am using is the following- Driver={MySQL ODBC 3.51 Driver};Server=192.168.1.2;Database=mydb;User=root; Password=;Option=3; The …

Member Avatar for tuse
0
97
Member Avatar for nobi

Hi, MyByte is byte that could contain binary value between 0000 and 1111 [CODE] int sum = 0; for (int i = 0; i <= 3; i++) { if((MyByte & 2^i ) == 1) sum += 2^i; }[/CODE] What will be the value of SUM at the end of this …

Member Avatar for invisal
0
245
Member Avatar for mhil_joy

i have been given an assignment about palindromes but i don't no how to do the coding in c++ and using queue and stact to check if a string is a palindrome.. please help me guys.. i need all your knowledge about it!.. i need it as soon as possible.. …

Member Avatar for WaltP
0
56
Member Avatar for lynlyn

please help me with my problem... i have here a running program...but then you have to press the keyboard twice in order to input data.. can you help me to modify my source code???please..my future depends on you...-_- specification: Accepting data in the lists should only terminate only if the …

Member Avatar for jephthah
0
181
Member Avatar for Alex Edwards

I've read up to the point where the author explains partial classes. I understand the general concept - they're used when a class is so big that it is better to split it across files. I created two .cs files. Let's say one is CS1.cs and the other is CS2.cs …

Member Avatar for Alex Edwards
0
171
Member Avatar for Mr.UNOwen

Hello, This is similar to the thread I did a while back, except this time I need to do it under linux. I'm using the latest version of Ubuntu. Can some some one show me how to send information (an array of char) to the rs232 port (synchronous communication) . …

Member Avatar for jephthah
0
181
Member Avatar for yanie

i need help here. how do i display checkbox value from my database MS access in a visual basic 6 form? i hv 2 checkbox in my form, which are Available and Not Available. if the value is yes, i want to display it in Available checkbox and if no, …

Member Avatar for aktharshaik
0
659

The End.