132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Triggerhappy41

The attached image shows my problem. When I create a GUI in netbeans, the preview of the GUI does not match the actual GUI shown when running in two ways. One (in a minor sense) is that it does not have the windows xp "look" for its buttons, borders and …

Software Development gui java windows-xp
Member Avatar for peter_budo
0
151
Member Avatar for cl3m0ns

I have this program it allows the users to enter a name and a score it saves all the names to one array and all the scores to another. The program then displays all the names and scores in a list. I want to have the code for displaying the …

Software Development c++
Member Avatar for WaltP
0
162
Member Avatar for Barefootsanders

Hey everyone, I was hoping you could help me out in choosing or not choosing java for an upcoming project I would like to do. I would like to have my media library streaming from my home computer. So basically you would input a directory and it would gather all …

Software Development java
Member Avatar for nschessnerd
0
84
Member Avatar for warpstar

Heres the problem, Ill try my best to explain this: If your given a 5x5 array whicih looks like: 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 Basically in each column below any …

Software Development c++
Member Avatar for warpstar
0
90
Member Avatar for cl3m0ns

I have a program that takes two arrays. One is a persons name. the other is their test score and displays it. I have an if statement nested in the for loop used to fill the array that allows you to enter stop as a name and it will put …

Software Development c++
Member Avatar for cl3m0ns
0
126
Member Avatar for DemonSpeeding

This is my first time writing a bash script in Linux, basically I want to create a user but not use adduser or useradd. So, in the /etc/passwd folder I need to put data in, in this way. login:encrypted passwd:UID:GID:gecos:home directory:login shell I'm going to leave the gecos blank. Then …

Software Development shell-scripting
0
122
Member Avatar for cl3m0ns

I am trying to write a program with two separate arrays in it. In the first array I will store all my Dads clients names. In the second array I will store all their address. If I wanted to do this how would I go about storing the arrays so …

Software Development c++
Member Avatar for twomers
0
146
Member Avatar for vijay_choudhari

I am getting coredump on linux (Red Hat 3.4.6-8). I am using gcc (GCC) 3.4.6 20060404 compiler. The problem is I have used a static map inside a function (making the map local to the function). This function is in libStreet.so Now at run time another host application is loading …

Software Development c++
Member Avatar for iamthwee
0
140
Member Avatar for SerapH

I already have web pages written in HTML that give out Help info about various functions of the application. How do I get them to pop up when the user clicks a button on the VB.NET form ? Private Sub btnHelp_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnHElp.Click …

Software Development html-css vb.net
Member Avatar for SerapH
0
203
Member Avatar for tlgkumar

hi all, i have some requirements to scrollpane, i am attached my requirements, please give some idea to do my requirements thankyou ganesh

Software Development java
Member Avatar for Ezzaral
0
48
Member Avatar for Yasin786

hi ol my name is yasin and am currently working on this application that is an assignment for my diploma. i am creating the application in vbnet 2003 One of the tasks in the assignment is to capture and save the image on the form. I got this piece of …

Software Development vb.net
Member Avatar for waynespangler
0
367
Member Avatar for balagangadharm

Hi can any help me how get page linksI mean if there are 10 pages contents. I would like to show certain amount of content in each page. At the bottom we do display 1 of 10 pages 1 2 3..<last>. how to write this code in java or javascript …

Software Development java javascript
Member Avatar for Ezzaral
0
93
Member Avatar for disc

Hi all, This is my problem: [code] void StartRun( void ) { std::auto_ptr<Validate> val ( new Validate( "input.txt" ) ); val->DoIt( ); } // Destructor Validate::~WValidate( ) { if( mFileIn.is_open()) { mFileIn.close(); } if( mFileOut.is_open() ) { mFileOut.flush(); mFileOut.close(); } } [/code] The function DoIt() makes use of a DLL. …

Software Development c++ file-system
Member Avatar for WaltP
0
88
Member Avatar for cms271828

Hi, I'm looking to update a MySql database from an applet. The 2 roots I was thinking were: Applet->php->database Applet->servlet->database But my webhost doesn't allow servlets/jsp, so I would like to try the php route. I've looked on the internet, but I can't find anything concrete to use, just lots …

Software Development java php
Member Avatar for Ezzaral
0
137
Member Avatar for Annex

I don't understand cause of error [code] program Project2; {$APPTYPE CONSOLE} uses SysUtils; function Rus(mes: string):string; var i: integer; // number of processed character begin for i:=1 to length(mes) do case mes[i] of 'A'-'n' mes[i]:= Chr(Ord(mes[i]) - 64); 'р'..'я'// after first mes occur the Error(27): Operator not applicable to this …

Software Development pascal
Member Avatar for Annex
0
71
Member Avatar for pawan_1983

sir, i have appli.jar,mysql_connecter.jar, and two dll file,and i am using jdk1.5 how can i create .exe file for client. i want to create same enviorment on client machine. plz help

Software Development java
Member Avatar for Ezzaral
0
144
Member Avatar for clski1973

I am to use one loop to accumulate numbers (and later get average of) and to be a sentinal control (when the user wants to quit). I think it makes better sense to use 2 loops (nested) but the instructor has insisted on one loop. Could anyone give me a …

Software Development c++
Member Avatar for WaltP
0
145
Member Avatar for BigDAlcala

So I used to know a bit of VB6 during the one year of college I took. I was unable to make it to class for all the database lectures (all the good stuff), though. I now have a copy of VB.net and a new registration on this forum I …

Software Development audio microsoft-access vb.net
Member Avatar for waynespangler
0
208
Member Avatar for Sunny28525

Hi this is sunny, i have a form with 5 text boxes and 5 labels. now i want to zoom in and zoom out the form. actually i have no idea. please tell me the solutions.

Software Development vb.net
Member Avatar for waynespangler
0
80
Member Avatar for JaedenRuiner

Is there a generic (built in either to windows or VB.Net) Find and Replace dialog, like the simplistic one that's in Notepad, or do I have to design and write the Form from scratch? Thanks Jaeden "Sifo Dyas" al'Raec Ruiner

Software Development vb.net
Member Avatar for waynespangler
0
77
Member Avatar for tropical08

i got a little question hope you guys can help out i wanna copy a char array[8] to a 2D array , strcpy doesn't let me do it. how should i go about [INLINECODE] char letter[8]="abcdefg"; char temp[10][2]; for(int i=0;i<10;i++) strcpy(temp[i],letter[i]) [/INLINECODE] how do i get extract all the letters …

Software Development c++
Member Avatar for tropical08
0
86
Member Avatar for santhiks

i am new to c++ graphics.can anyone suggest a book name to study graphics for a beginner

Software Development c c# c++
Member Avatar for Xavier2k
0
79
Member Avatar for kalaiselvi.v

I have created connection through URL. Now i want to validate user and password in the URl page.

Software Development java
Member Avatar for jwenting
0
79
Member Avatar for Zonr_0

Hi! Haven't posted on danniweb for awhile, but I'm hoping I can get some help. I am in the middle of learning Java, which will be my second language after python, and I have come across a problem, ordering a list of integers in an array. In python, there's a …

Software Development api java java-swing python
Member Avatar for jwenting
0
195
Member Avatar for rickshaw

I'm unsure if this is exclusively a unix/linux scripting forum but I need help writing a windows script (I'm more of a perl/unix scripter). I need to be able to periodically clean out the user profiles on a presentation PC in a conference room. Therefore I need a script which …

Software Development perl shell-scripting unix
Member Avatar for Duoas
0
101
Member Avatar for warpstar

Can someone please explain to me how dynamic memory allocation actually works? For example whast going on in the piece of code written below? If you can respond asap, that would be great. Thanks in advance. [code]p = (float *) malloc ( n * sizeof( float ));[/code] And whats the …

Software Development c++
Member Avatar for Salem
0
221
Member Avatar for jaepi

Hello there, do you have any idea what is the corresponding function of this Win32 api (GetDiskFreeSpace) in standard library? Thanks. :)

Software Development api c++
Member Avatar for jaepi
0
236
Member Avatar for jordan1985

Anyone here can help me code a bubble sort algorithm code in C++ programming? I need to separate it in different file, which include the "h" file and the "cpp" file. The sorting display must be have 7 screen which the sorting is sort in step and show in step. …

Software Development algorithm c++
Member Avatar for ndeniche
0
95
Member Avatar for pearly

morning everyone. i hope someone out there could really help me. im trying to store large numbers. as i need to complete my work under Dev-c++ environment but im not familiar with it as i just started using it recently. the following is my initial coding for my work. [code=cplusplus] …

Software Development c++
Member Avatar for pearly
0
1K
Member Avatar for bcm

I have created child nodes in app.config.xml file: <applicationSettings> <XML.My.MySettings> <setting name="Astrology" serializeAs="String"> <value></value> </setting> <setting name="Cricket" serializeAs="String"> <value></value> </setting> <setting name="ForiegnCurrency" serializeAs="String"> <value></value> </setting> <setting name="Jobs" serializeAs="String"> <value></value> </setting> </XML.My.MySettings> </applicationSettings> I want to insert values in this child nodes Astrology=6:00 Cricket=7:00 ForeignCurrency=8:00 Jobs=9:00 How to read and insert …

Software Development vb.net xml
Member Avatar for ptaylor965
0
106
Member Avatar for stokes323

I'm trying to write a program for a homework assignment and basically have no idea what to do now... if anyone could help me by pointing me in the right direction it would really help.... Write a C++ program that includes a function called "find_a()". This function will take a …

Software Development c++
Member Avatar for Ancient Dragon
0
88
Member Avatar for lakshya

I want to display the search results of any search engine on my webpage... my webpage wud hav a textbox n with the user entering something in my webpage's textbox.. i want to have search results of google ..actually m workin on search engine optimisation ..so i will use dese …

Software Development
Member Avatar for kreitje
0
111
Member Avatar for Duki

Hey guys, I'm supposed to write a program that will calculate the Nth fibonacci number, without using recursion. I have the recursion problem written already, but am having a hard time doing the iterative one. here's my recursion function: [code]int fib ( int n ) { if ( n <= …

Software Development c++
Member Avatar for Duki
0
759
Member Avatar for warpstar

Each of the following program segments might have syntax, logic or other kinds of errors. If there are errors, correct, otherwise answer "no error". Assume all function headers are correct. Function copy_array receives an integer array a and its size length, as parameters. It copies the array a into another …

Software Development c++
Member Avatar for Ptolemy
0
165
Member Avatar for jonbuckets

Need to figure out what is going wrong with my source code. When I imput the values of 72, 69, and 2.8 respectively I should output pdf=0.85801, however I am not getting that value. I don't know why. I am doing the adaptive simpsons method to find the probability density …

Software Development c++ pdf
Member Avatar for jonbuckets
0
96
Member Avatar for Panarchy

Hello! I was wondering if anyone has a forum backend, in java? I know a bit of python myself, but I want the backend (working backend for a forum) I am going to make the frontend myself (in html, not php, has to be html) Please provide it! Thanks in …

Software Development java python
Member Avatar for Panarchy
0
157
Member Avatar for still_learning

This time I am making an orderedLinkedList program, which will not compile for me. The code is all way too long to put on here, so I will show you the errors I am getting. Please give me any input on what you think the errors could be caused by. …

Software Development c++
Member Avatar for Duoas
0
223
Member Avatar for mt171406

[INLINECODE]I am trying to develop a program that reads a list of integers from a file and outputs whether or not each integer in the file is perfect. Its suppose to give practice using endfile-controlled and for loops. The input file of numbers i have created are : 456 18 …

Software Development c
Member Avatar for Aia
0
91
Member Avatar for degamer106

I'm supposed to design a method that takes in a double value and translates the value into the closest letter grade. 4,3,2,1,0 denote A, B,C,D,F, respectively. + increases a grade's numerical value by 0.3 and - decreases a grade's numerical value by 0.3. There is no F+ or F-. A+ …

Software Development java
Member Avatar for Mouche
0
76
Member Avatar for leroi green

Hey all, I've tried not to ask questions for like a week or two but, I've got the Introduction to Java Programming (sixth edition) and I'm doing the Exercise 7.2 'The Fan Class' where I am to; Design a class named Fan to represent a fan. They have the UML …

Software Development java
Member Avatar for mickinator
0
216
Member Avatar for paydfody

This code is meant to be a simple quiz, but I am getting 4 errors that I cannot figure out. Thanks in advance. import java.io.*; public class Quiz { public static void main(String args[]) { int correctCounter; InputStreamReader reader; BufferedReader buffer; keyboard = new BufferedReader (new InputStreamReader (System.in)); } String …

Software Development java
Member Avatar for kmlittle
0
310
Member Avatar for warpstar

[code] _ _ _ _ function2(_ _ _ _ _ _ _ _ _ _ _ ); main{ int n[]= {4, 5, 6}; int *kptr ; kptr = function2( n ) ; } [/code] Fill in the blanks and you get: [code]int *function2( int array[ ]); or int *function2( int …

Software Development c++
Member Avatar for WaltP
0
121
Member Avatar for vivek_green

Hi, Can someone tell me how to identify a carriage return character in string

Software Development java
Member Avatar for Ezzaral
0
2K
Member Avatar for c++beginnerer

Hi, im at the end of my tether after spending hours trying to find a solution to this so hopefully somebody here can help me out. I have a structure, customer, which contains just a few details such as name address phone number etc. I need to store this info …

Software Development c c# c++
Member Avatar for Lerner
0
95
Member Avatar for sreejithps

Hi, I am tryiing to open a file from my python project. The path to the file is given as .\Templates\html\temlate1.html. I used the file Alerter.py to open the above said file. Actually this source file and the Templates directory are existing in the same folder and on execution of …

Software Development file-system open-source python
Member Avatar for vegaseat
0
114
Member Avatar for ravi_forum

Hi , Is there any one help me to write the java code for displaying all [B]compatible system time zones[/B] and setting the required time zone among those list. Thanks and regards

Software Development java
Member Avatar for jwenting
0
78
Member Avatar for zayalaksme

please any one send a program to "[B]addition and subtraction of two SIGNED BINARY NUMBERS by using 2'S COMPLEMENT[/B]" it is urgent

Software Development c
Member Avatar for Salem
0
70
Member Avatar for Magnusz

I already made the calculator, but I'm trying to also put the function used in the textbox results. Example: 2 * 2 = The function used was multiplication. Your answer is 4 I used labels to identify -, +, *, / Two textboxes to put in input. 1 textbox for …

Software Development visual-basic
Member Avatar for Prozeen
0
121
Member Avatar for deeptiarora

Hi can we create an exe file in java and used it anywhere we want without using any jdk/jre deepti

Software Development java
Member Avatar for Ezzaral
0
156
Member Avatar for tamilmercy

I tried to Sends email but somehow email not getting out, please help me how I can write shell script in right manner. Thanks and regards This is the one I tried my end. Script: #!/bin/sh set wma = `grep -i "java" sampletest` echo $wma mail -v -s "ALERT" [email]tamilmercy@yahoo.com[/email] …

Software Development email shell-scripting
Member Avatar for tamilmercy
0
120

The End.