132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for total90

Write a C++ program that asks the user to enter the price of a car (real), the down payment (real) and the number of years for the loan (integer). Calculate and output the monthly payment (real) of that car. Assume the sales tax rate is 7% and an interest rate …

Software Development c++
Member Avatar for Suzie999
0
308
Member Avatar for Nebil

I've a problem in getting a record from 3 tables: There are two conditions for getting the records,'project number' and 'current month'.I used this statement to get the records but it results in 3 times the actual record. Any help would be appreciated. "INSERT INTO patempTable SELECT [pay_roll].[project number],[pay_roll].[employee number],[pay_roll].[current …

Software Development vb.net
Member Avatar for Eng.William
0
213
Member Avatar for Atkinson88

Hello, I'm building an application in MVC which allows people to upload and sell there items, (Like ebay but on a much smaller scale) I currently have a view where they choose the categorie they want to place there item in, when they click ok I pass in the selected …

Software Development file-system
Member Avatar for Atkinson88
0
124
Member Avatar for Masood_786

Hi, All last year i posted for solution to programatically retrieving I Q data from USB Tv Tuner (Gadmei UTV382 USB TV BOX) for implementation of SDR. Since then no reply was received that could solve the problem. Some detail of the device, it has 1. XCEIW XC4100ACQ tuner 2. …

Member Avatar for Masood_786
0
1K
Member Avatar for Natiprog

C program which calculate Sale,balance Am new for c++ and pleas help me

Software Development c++
Member Avatar for rubberman
0
128
Member Avatar for VSBrown

Here is a link to some C++ Code that I did while I was in college. Thought I would post it because maybe it will help someone else. [url]http://www.vsbrown.com/cplusplus.asp[/url] :D

Software Development asp c++ first-post
Member Avatar for s.kiroshan
0
647
Member Avatar for sanz

hi, i am making a project in which i have to read barcode from scanned document and i have got a piece of code with its demo version from internet.but the thing which i am unable to understand in its demo version is that when the demo reads my scanned …

Software Development image
Member Avatar for JOSheaIV
0
298
Member Avatar for Mya:)

When the user's mouse pointer touch a button I want a message to appear telling the user what that button's function is. Wich function do I use? Thanks

Software Development delphi pascal pc-peripheral
Member Avatar for Mya:)
0
384
Member Avatar for AbstractEden

I'm having some issues with one of my bonus assignments for school. In my code the purpose of the project is posted, but this is what I have so far. /******************************************** *File Name: Combination (Assignment 8 Part 1) *Purpose: Create a frame with ten buttons, labeled 0 through 9 (Hint: …

Software Development java java-swing window-manager
Member Avatar for Hiroshe
0
1K
Member Avatar for Gracious_1

So here's a bit about the details. I need to read the contents of file A, and B and store it in file C by joining the contents of A and B and also counting the number of letters/characters present in it. I've come up with this so far. Can …

Software Development file-stream java
Member Avatar for Gracious_1
0
310
Member Avatar for DeneyimszDenek

webBrowser1->Document->GetElementById("email")->Value = textBox2->Text; this code an error. help me.

Software Development c++
Member Avatar for DeneyimszDenek
0
121
Member Avatar for howemonster

So I am writing a program to read text from a file. Save from an array list to an array and then parse that array for ',' and use that to change words position in the 2d array i will write from the 1d array. So essentially String[]{"a,b,c","d,e,f"} ought to …

Software Development java
Member Avatar for howemonster
0
149
Member Avatar for skusobny

Hello please i need some help to rewrite this code in PHP to Python i am totally new in this and need this baddly please help if u can. Thanks a lot. <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>phpChart - Basic Chart</title> </head> <body> <?php function array_delete($array, …

Software Development php python
Member Avatar for itsnauman
0
200
Member Avatar for MasterHacker110

I am trying to figure out where is Java and C# mostly used? I read that enterprises favors Java and JEE, but they don't say anything about JSE. I also read that C# is being used a lot, especially on Windows platforms. But the question remains, what do enterprises use …

Software Development c# gui java
0
100
Member Avatar for ankit.baphna

Code1: <input id="text" type="text" name="fname" value="First Name" onclick="this.value='';"/> Hi Friends, Code1 - this print in my text box value "First Name". onclick this value gets erased so I can type Name. but if I go to second text box and come back to this text box to modify or add …

Software Development php
Member Avatar for patk570
0
202
Member Avatar for Doogledude123

I'm trying to make this as easy as possible but I'm stuck. Inside the for loop, if the input entered was not a number or wasn't valid, it moves on, but I don't want it to. I want it to repeat that interation. Is there a possible way to do …

Software Development gui java
Member Avatar for JamesCherrill
0
398
Member Avatar for LVZombie

I am now on part 3 of a payroll program for my Java class but I did not add the while loop in last week so I need to figureout what I did wrong so I can do part 3. The program should loop until the user enters "stop" It …

Software Development java
Member Avatar for jwenting
0
256
Member Avatar for airhalynn101

This thing has particularly interested me because I never thought in any way that this is possible (due to the fact that I don't know how to create one). While I was looking for tutorials/articles that can help me solve my problem about formatting a textbox to display currency during/after …

Software Development vb.net
Member Avatar for airhalynn101
0
215
Member Avatar for nickkipr

package dmaze2; import java.awt.Dimension; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.table.DefaultTableModel; public class Dmaze2 extends JPanel { JTable jt; ImageIcon Icon = new ImageIcon("x.png"); JTable imagelabel = new JTable(Icon); public Dmaze2() { Object[] columns = {"1","2","3","4","5","6","7","8"}; Object[][] table={{"f","f","f","f","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}, {"f","f","f","o","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}, {"f","f","f","f","f","f","f","f"}}; …

Software Development java java-swing
Member Avatar for mKorbel
0
239
Member Avatar for Vlad_2

// Convert Celsius to Fahrenheit and vice versa. import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.GridLayout; import javax.swing.JTextField; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; public class ConvertTemp extends JFrame { // instance variables JLabel labelFahr; JLabel labelCels; JTextField textFahr; JTextField textCels; JButton conFahToCel; JButton conCelToFah; public ConvertTemp () { super …

Software Development gui java java-swing
Member Avatar for Vlad_2
0
8K
Member Avatar for Builder_1

what are merits and demerits of overriding in java

Software Development java
Member Avatar for Hiroshe
0
139
Member Avatar for wngus0

plz cheak this if you dont know? >>>>>surf birthday paradox #include <iostream> using namespace std; #include <stdlib.h> #include <time.h> const int SAMPLE_SIZE = 24; const int NUMBER_OF_SETS = 1000; int Menu(int); void ExplainBirthdayParadox(); void VerifyBirthdayParadox(int Birthday[]); void SortBirthdaySet(int List[], int Last); inline void Swap(int &A, int &B); void LookForMatch(int Birthday[]); …

Software Development c++
Member Avatar for Hiroshe
0
644
Member Avatar for finalist

Anyone know how to avoid this error - message on compiling my program using Delphi XE5: Undeclared identifier: 'DateSeparator' When I compile the same program using Delphi XE, it is OK, without any errors. I have declared: uses SysUtils ....;

Software Development delphi pascal
Member Avatar for finalist
0
580
Member Avatar for cambalinho

when we create child controls, what is the style for accept text formats? (i mean: '\t', '\n' and others)

Software Development c
Member Avatar for cambalinho
0
136
Member Avatar for SpottyBlue

I was doing my 2nd assignment to create a bank program using Java. I got a problem when I run a few times. For example, I entered the starting amount as $50000. Then, I choose withdraw. I tried to enter withdrawal amount as $5000. Then, I choose to check balance, …

Software Development java java-swing
Member Avatar for howemonster
0
418
Member Avatar for abra_ka_dabra

Is there ay inbuilt method to convert 2D array into CSV file? e.g. Can anyone give me a hint to convert [1,2;3,4] into a file output.csv?

Software Development java
Member Avatar for howemonster
0
424
Member Avatar for ACE--

Hi, My requirement I need to edit or replace content in the word document every time and save it to another location. What I wanted is I want to simplify this through vb.net but stuck in somewhere I am doing mistake in the code itself (I am completly newbie). I …

Software Development microsoft-office vb.net visual-basic
Member Avatar for cgeier
0
10K
Member Avatar for johans22

The 3rd party to EXE calls like call backs work but call backs from 3rd party DLL to another DLL won't work. 3rd party DLL has to message the upper EXE or DLL that evetually gets emailed out. Working platform is Vista or Win 7.

Software Development c++
Member Avatar for johans22
0
90
Member Avatar for sheelap

some people says that java is not purly oops language like C++.pls suggest me if it is true then why iot is so?

Software Development java
Member Avatar for mike_2000_17
0
207
Member Avatar for alina.nazchowdhury

For developing web apps eg. oline portal, asterisk billing software, voip soft swich billing, wich programing language i should learn, please give me details.

Software Development
Member Avatar for Hiroshe
0
196
Member Avatar for nickliutw

I'm currently writing a program that can track each word appear in a paragraph. For example, if a paragraph is "I have two dogs and two cats......" my program output should be: 'I'appeared 1 time, 'have' appeared 1 time, 'two' appear 2 times ....so on So far, I have two …

Software Development c cybersecurity
Member Avatar for iamthwee
0
158
Member Avatar for MasterHacker110

I am writing a program that will open another form, the user will continue doing stuff on the new form and would then close the form. When and only when this new form closes, the main form should continue with its work and re-enable some components. Here is the code: …

Software Development java
Member Avatar for mKorbel
0
211
Member Avatar for MasterHacker110

I am trying to read a some data that is stored in an xml file and then print it to the screen for the user. But my program isn't working correctly. Here is my XML document: <UserAccounts> <Account AccountNumber="1234567890"> <Password>12345</Password> <Balance>1024.64</Balance> </Account> </UserAccounts> And here is my code: File fXmlFile …

Software Development java xml
Member Avatar for MasterHacker110
0
303
Member Avatar for Nebil

Dim dr As OleDb.OleDbDataReader = GetData(qry) If dr.HasRows = True Then Do While dr.Read TextBox32.Text = dr.Item("total") If Val(TextBox32.Text) > 800 Then TextBox37.Text = Val(TextBox32.Text) - 800 Else TextBox37.Text = 0 End If TextBox38.Text = Val(TextBox36.Text) + Val(TextBox37.Text) TextBox31.Text = (Val(TextBox33.Text) + Val(TextBox32.Text)) * Val(TextBox34.Text) Loop Else If MsgBox("Fuel allowance …

Software Development vb.net
Member Avatar for Reverend Jim
0
161
Member Avatar for irfan_3

Actually i need help in making a project on reservation system(hotel,bus etc) in C++(oop) ..can somebody just guide me in making my project ,,, thanks in advance

Software Development c++ oop
Member Avatar for irfan_3
0
1K
Member Avatar for Vegito1991

I have been struggled to solve this problem for few days, i was working on multichat application where in this class i want to send the text to the server and and response in the client side, if anyone can help me i really appreciate from what i known the …

Software Development client-server java java-swing
Member Avatar for JamesCherrill
0
384
Member Avatar for moaz.amin.37

hi: we use system("cls") function in c++ i need a function or a class or any command that i give it in my code that clear my screen plz help me

Software Development java
Member Avatar for JamesCherrill
0
337
Member Avatar for Nikusha.Kalatozi

Hi can anyone write down the source which is written manually?

Software Development
Member Avatar for deceptikon
0
73
Member Avatar for agrbinoo.albaker

Write a program that calculates the average of a group of test scores, where the lowest score in the group is dropped. It should use the following functions: • void getScore() should ask the user for a test score, store it in a reference parameter variable, and validate it. This …

Software Development c++
Member Avatar for Sarkurd
0
208
Member Avatar for CervantesLost

Hi, I picked up this code on daniweb and am trying to get it further. Here's the class import java.util.*; import javax.swing.*; public class LibraryBook { private String title; private String author; private int pageCount; //contructor for books title, author, page public LibraryBook(String bookTitle, String bookAuthor, int bookpageCount) { title …

Software Development java java-swing
Member Avatar for JamesCherrill
0
189
Member Avatar for shelton22

I have declared, map<int, vector<int>> abcmap; map<int,vector<int>>:: iterator itmap; vector<int>SPLINKS; SPLINKS contains: 1 3 4 abcmap contains; 1=> 1 2=> 2 6 3=> 1 2 4 I want to iterate both SPLINKS and abcmap to find and erase elements that do not match in both containers; ie after execution; 2=>2 …

Software Development c++
Member Avatar for shelton22
0
279
Member Avatar for JimH13

I'm new to this site so please excuse any errors in etiquette or format. I have Visual Basic 4.0 (Please don't laugh!). It works fine on my desktop but when I installed it onto my new laptop running Windows Vista I get an error message " 'olepro32.dll' could not be …

Software Development microsoft visual-basic windows-vista
Member Avatar for arndtwc
0
625
Member Avatar for Mya:)

Hey Guys, What is the easiest programming laungage i can start learning by doing free trails, or anything like that. I already know Delphi but it's kinda useless so any laungage that is usefull and used alot Thanks!

Software Development delphi seo
Member Avatar for Mya:)
0
132
Member Avatar for Fatma_2

plz can any one help me.. i need it 2night

Software Development c
Member Avatar for deceptikon
0
238
Member Avatar for OTOSystem

Hi - me again... I have a large list of names that are stored in an array. I want to load the names in groups of 30 and have a button named after each name. The button is on another form that is 'shown' when the names are all loaded. …

Software Development vb.net
Member Avatar for Begginnerdev
0
220
Member Avatar for fix.fix.733

any help pls, i want to display my database in a gridview. Edit and update this gridview in another table not in the same gridview then save it Thank you so much

Software Development
Member Avatar for ShadyG
0
117
Member Avatar for renzlo

This is the scenario: I have one table (main_tbl) with columns RECID(primary key),JOBNAME(text),STATUS(text). Now, I created an application that will query to the database and get one jobname and update the status. How can I make sure that multiple users wont get the same jobname when they executed the query …

Software Development mysql sql vb.net
Member Avatar for Begginnerdev
0
401
Member Avatar for nouth

How can I return the indexes of RBG? Say `p` is my *Numeric Python array*. >>>x = 58 >>>y = 72 >>>p[y][x] array([255, 255, 255], dtype=uint8) I don't know what a *Numeric Python array* is or how to handle them but I found how to convert it to `['255', '255', …

Software Development python
Member Avatar for nouth
0
1K
Member Avatar for toldav

Hi Guys, I'm new to awk and trying to format an stadout "temp.txt" to csv format so I can export to excel. I'm having issues here is my code so far..If any one can help to see the light!!! The ### sign is the second server on the list each …

Software Development microsoft-office shell-scripting
Member Avatar for thekashyap
0
234
Member Avatar for maekhel

Am about writing my final year project and my topic is student transcript generation system. The problem now is that I don't know how a transcript generation system works. someone please put me through on how to go about it using VB. NET.

Software Development vb.net
Member Avatar for maekhel
0
584

The End.