132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for neosonic

I would like to create a drawing tool similar to visio, with the linking to the database But i have another half of my .exe project done with visual basic.\ we want to sell it. is it wise to use visio and built macros links to it? is it easy …

Software Development visual-basic
Member Avatar for neosonic
0
341
Member Avatar for hitro456

Hi everyone...([COLOR="Green"]read carefully[/COLOR]) I am Developing an application in C#. In which First I create two text files say a.text and b.text. and then fetch data from them ...... Now every day when I run my code for the first time I want to delete these files and recreate new …

Software Development file-system
Member Avatar for hitro456
0
145
Member Avatar for dude1

i have my file input like this ifstream inFile; inFile.open(fileName.c_str()); and i cin >> fileName; i want the output file name to be the input filename with .dat added to it eg if fileName was c:/tmp/test.txt i want the output to be c:/tmp/test.txt.dat anyone know how i can do this …

Software Development c++
Member Avatar for dude1
0
99
Member Avatar for zenbakir

I have a report named crystalreport1 added to my web application in visual studio 2005 when i try to create the instance of the report like dim rpt as new crystalreport1() it shows an error crystalreport1() not defined What is the problem and what namespaces need to be included.

Software Development vb.net visual-studio
Member Avatar for kodema
0
94
Member Avatar for tquiva

Could someone please help me with this assignment? I am near finishing. It is just one minor problem that is preventing me from finalizing this. I added a comment /* Problem */ above the problem. I just can't seem to add up all the values for JOG_min. When I run …

Software Development c
Member Avatar for tquiva
0
97
Member Avatar for hwlibra083

I'm a little confused on how to even start this problem. Here's the problem: Given a square matrix, write a program that determines the number of white blocks and total number of squares in each of the white blocks. By definition the outside boundaries of the matrix must be shaded. …

Software Development c
Member Avatar for hwlibra083
0
174
Member Avatar for neigyl_noval

Hi everyone! I am in Windows XP and this has been my problem whenever i use graphics mode in C. We are required to use the Borland Turbo C compiler IDE (with the blue background thing.) Here is the problem: Whenever I run the program in graphics mode, it always …

Software Development c ide
Member Avatar for neigyl_noval
0
319
Member Avatar for schippi

Hello, Stuck on one line of code, tried everything but could not make any progress. Please help. Thanks in advance. The problem is on line 39 which is: slant_height = SphericalCone1.getSlantHeight( radius, cone_height) ; TheNetBeans IDE6.8 displays the error message: Can not find symbol: class SphericalCone But SpericalCone class compiles …

Software Development java
Member Avatar for BestJewSinceJC
0
175
Member Avatar for clutchkiller

[code] #include <iostream> using namespace std; int main() { double var1 = 0; var1 = 2/10; cin.ignore(); cin.get(); return 0; } [/code] Its not setting var1 to .2 it is keeping it at 0. wth? it does 10/2 = 5, but then it does 2/10 = 0.

Software Development c++
Member Avatar for clutchkiller
0
109
Member Avatar for infrapt

Hi guys I am trying to read 8 lines from a file an and pass each line of data to a separate SPE using dma transfers.. how can I do this any ideas?

Software Development c
Member Avatar for Ancient Dragon
0
72
Member Avatar for ruin

[code] #include"stdio.h" #include"conio.h" #include"process.h" #include"ctype.h" #include"string.h" #include"io.h" #include"fcntl.h" #define length 1 struct StudentInfo { char studentid[8]; char lastname[15]; char firstname[15]; char middlename[15]; char gender[6]; char birthdate[15]; char age[3]; char contactno[15]; char guardian[30]; char address[120]; }; struct tmp { char studentid[8]; char lastname[15]; char firstname[15]; char middlename[15]; char gender[6]; char birthdate[15]; …

Software Development c++
Member Avatar for jonsca
0
112
Member Avatar for NathanOliver

would the workings of strlen() be something like this? [code=c++] int strlen(const char * str) { int size = 0; while (!!*str) size++; return size; } [/code] any feedback would be appreciated. also i have learned that !! will convert a value to an actual bool eg. !!104 = 1

Software Development c++
Member Avatar for Ancient Dragon
0
149
Member Avatar for isralruval

i know the following function is not correct, but its suppose to read a text file(which containts the words "hello all") and pass it to a Vector called V1 and then encrypt it and pass the encryption to a second vector called V2 and finally output the result into a …

Software Development c++ encryption file-system
Member Avatar for VernonDozier
0
70
Member Avatar for corby

hey does anyone know if i am using the srand() fucntion correctly to randomly choose if a persons letter is X or O? [CODE]#include <iostream> #include <cstdlib> using namespace std; int main() { srand(time(0)); int playerTurn = rand() % 2; char initPname; if (playerTurn == 1) { initPname= 'X'; playerTurn++; …

Software Development c++
Member Avatar for corby
0
140
Member Avatar for SoulMazer

Hi, so in essence I have two little scripts: a server side script and a client side script. My client script sends a request to the server, and the server sends a string to the client. Once I get the string back into the client, I set it to the …

Software Development client-server python
Member Avatar for SoulMazer
0
2K
Member Avatar for kohkohkoh

Hi guys, as per title above, im at my wits end after a week of thoughts.... i want to download a file from a SSL web to my local(C:\) e.g [url]https://www.abc.com/File/myfile.txt[/url] Scenario: from the web browser(Internet Explorer), i required to login to the site in order to download the file. …

Software Development cybersecurity file-system vb.net
Member Avatar for kohkohkoh
0
1K
Member Avatar for crozbme

//I am trying to use the reverse function but only get garbage when trying to print s2. How do I properly assign s2 a value in order to print it in main? #include <iostream> #include <string> using namespace std; class ch_stack { public: void reset() { top = EMPTY; } …

Software Development c++
Member Avatar for crozbme
0
79
Member Avatar for jimJohnson

I hope this doesnt constitute as me asking for answers but I am running a program and at the end I am asked for the program to wait 10 seconds after saying goodbye and prompted back to main menu. I have researched this on google and from some of the …

Software Development c c# c++
Member Avatar for necrolin
0
154
Member Avatar for rastus77

I have a homework assignment that's due in a couple of days and I need a set of experienced Java eyes to confirm that a few of the answers to the questions below are correct. The hard part about these questions (for me anyways as a newbie Java person) is …

Software Development java
Member Avatar for BestJewSinceJC
0
156
Member Avatar for rastus77

I'm new to Java and can't seem to understand why this code doesn't work. Any input would be appreciated. Thx. [code]Public class MyClass int a; float b = 1.5; public void static main(String args) { MyClass mc = MyClass(); mc.a = 1.5; system.out.println(b); }[/code]

Software Development java
Member Avatar for peter_budo
0
223
Member Avatar for webdragon89

If I where to have a matrix of say: 123 456 789 How would I write a getVal() functions so that row[0]col[0]=1 and so for?

Software Development c++
Member Avatar for webdragon89
0
99
Member Avatar for pinsickle

[CODE]current = queues[i];[/CODE] This line of code is killing me. I am suppose to be doing a write method for an array based priority queue. However I cant seem to get the first node on the give part of the array. queues is of the Queue class which is a …

Software Development c++ queue
Member Avatar for pinsickle
0
139
Member Avatar for automata

I want to append string in front. [CODE] 'For example Dim value As String = "a" 'I want to append the 'value' string so that it prints the below: ' gfedcba [/CODE] I found the below thread which tells the solution for my problem: [url]http://www.daniweb.com/forums/thread139781.html[/url] But I was wondering if …

Software Development vb.net
Member Avatar for k1robert
0
164
Member Avatar for CSStudent728

Hello everyone, Background: I am currently attempting a project for a professor of mine, but I cannot integrate my formula properly into my code. The project calls for a conversion from numbers to words. (I last worked in C++ a year and a half ago, so any words that don't …

Software Development c++
Member Avatar for WaltP
0
124
Member Avatar for DuffManLight

Trying to learn recursion. Problem asks to use recursion on non-negative number to insert commas. Ex: 20131 as 20,131. My program adds in an extra comma at end. Any help in pushing me in the correct direction to fix this would be appreciated. Tried to use a 'count' to determine …

Software Development c++
Member Avatar for WaltP
0
1K
Member Avatar for k1robert

My problem is I want to be able to read through this xml document and populate a winform before validating it and then storing it into a table. This is a snippet of the xml document, it's way too big to put it all here. [code=xml] - <Applicant> + <common:PersonName> …

Software Development pdf vb.net xml
Member Avatar for k1robert
0
964
Member Avatar for Suicidal_tool

HOMEWORK HELP - Just so i stick by the rules. The second part of my assignment is to create an array object, and love and behold, im having problems passing my small array into the function. Bellow is my code of what i have done so far, the solution seems …

Software Development c++
Member Avatar for mitrmkar
0
175
Member Avatar for StephNicolaou

Hi developers, I'm not sure if this is possible, but I've tried to add database elements to a list box. There are no errors shown, but it simply does not work. Here is the code below: [CODE] if(criteria1 == 1){ getDBConnection(); try { stmt = conn.createStatement(); if(stmt.execute("SELECT Clients.Firstname FROM Clients …

Software Development java
Member Avatar for StephNicolaou
0
126
Member Avatar for Jeff_5_7

Ok i am writing a program with Arrays and could use a little help. I have to build a two dimensional array with data from a file. The file has date that first is two numbers followed by a list of charterers. So the fist line of data is 2 …

Software Development c++
Member Avatar for NathanOliver
0
154
Member Avatar for wale89

Can someone help me with this code.. I have a function which is InsertNode() it is use for inserting a new node after the index in the double link list.. For example I want to add a node of value 6.0 after position 3 This is the code i write..but …

Software Development c++
Member Avatar for mrnutty
0
99
Member Avatar for frag

[CODE]#include <iostream.h> float salary (int, float); int main() { int n,h,i; float r,GS; cout <<"Enter number of employees: "; cin >> n; for (i=0;i<n;i++) { cout << "\n Hours= \t"; cin >>h; cout<< "\n Rate= \t"; cin >> r; GS=salary(h,r); cout << "\nSalary=\t"<<GS << "\n"; cout << "Rate=\t"<<r<<"\n\n"; } return …

Software Development c++
Member Avatar for vmanes
0
94
Member Avatar for asa88

this my cpp file : [CODE]//****************************************************** // Chapter 15, Programming Challenge 7 * // PersonData and CustomerData classes * //****************************************************** #include <iostream> #include "PersonData.h" #include "CustomerData.h" using namespace std; // Function prototypes void displayPerson(PersonData); void displayCustomer(CustomerData); int main() { // Create a PersonData object and pass arguments // to the …

Software Development c++ visual-studio
Member Avatar for mrnutty
0
840
Member Avatar for habibalbi

I wrote this java program that performs functions of a vending mention. But now I need to write it using methods, how can I do this? Here is my code: (Any help would be greatly appreciated! [CODE]import java.util.Scanner; import java.util.Random; public class VendingMachine { public static void main(String[] args) { …

Software Development java
Member Avatar for kvass
0
204
Member Avatar for akssps011

Hello all I wanted to make a text editor in C or C++. I wanted to make it for learning purpose only and also so that I can modify it further according to my personal use. I am good at C++ but do not have much experience at writing large …

Software Development c++
Member Avatar for WaltP
0
173
Member Avatar for nike_jj4

Hello People, I've joined this forum and I need some help with sorting a vector of structures. Here is the problem: I have the following structure> struct student { char name[20]; char lastname[20]; int points; } class[10]; Can you help me figuring out a void function that will have a …

Software Development c++
Member Avatar for WaltP
0
107
Member Avatar for cyberguy007

[CODE]#include <stdlib.h> #include <stdio.h> #include <conio.h> int main() { int tempnum = 0; int i; int mainnum ; int maincount = 0; int tempcount ; int *a; int n; FILE * file; file = fopen ("input.txt", "r"); if(file==NULL) { printf("Error: can't open file.\n"); return 1; } else { printf("File opened …

Software Development c
Member Avatar for WaltP
0
155
Member Avatar for JamesGeddes

Reading from a text file on your local computer is easy, but surely using a URL to point to a different location should work too? The code I have thus far is as follows [CODE] 1. using System; 2. using System.IO; 3. 4. namespace csharp_station.howto 5. { 6. class TextFileReader …

Software Development file-stream
Member Avatar for jonsca
0
249
Member Avatar for fplgenius

I want as said in 'cout' to input 10 or more letters in this statement but when i try to run it when I enter more then 10 letters i get error that says:: Run-Time Check Failure #2 - Stack around the variable 's' was corrupted" so is there any …

Software Development c++
Member Avatar for NathanOliver
0
92
Member Avatar for COKEDUDE

I have a weird Buffer Clearing Error in this code. This is the line that is causing the error. [CODE] if(a<=0) [/CODE] After you compile the code and run the code put in a group of letters like abc when the programs asks you to put in an integer. The …

Software Development c unix
Member Avatar for Dave Sinkula
0
130
Member Avatar for TDMarko

Hi there DaniWeb community, I have a problem with such a task: I need to create a programm that will open, give option to modify, and save modifications to other text file (with other name). All I did so far is programm that can open a .txt file and read …

Software Development pascal
Member Avatar for FlamingClaw
0
157
Member Avatar for germ

Hi I am new at python, so say I have a text folder with many number records in a single column how would I go about extracting only numbers that begin with zero and is either 10 or 7 digits long creating a new txt file for the 7 digit …

Software Development python
Member Avatar for vegaseat
0
159
Member Avatar for Nicris

say int a[]; int &p=a; int *q=a; what is the difference b/w p and q ?? Is it like q can retrieve the value of the address which it is pointing to where p cant do that ... or is there something else also.....

Software Development c++
Member Avatar for NathanOliver
0
138
Member Avatar for Singlem

Hay I'm just spent hours on google and other sites, can't find any help. I just wrote my 1st major application and now I want to make it installable. Is there components I can download or built in that I can use to do this?

Software Development pascal
Member Avatar for Singlem
0
98
Member Avatar for COKEDUDE

Does anyone know where there is any good documentation for input functions in C programming? I've been searching google for quite awhile with no luck :(.

Software Development c
Member Avatar for WaltP
0
112
Member Avatar for tulip6

hi every one........... i'm new in this forum and need ur help please.... i want to write a programme using c++ code, programme that find the optimal parenthesization of a matrix-chain product, then perform the optimal matrix -chain multiply 4 a sequence of matrices, but the user should enter the …

Software Development c++ matrix-multiplication
Member Avatar for TECHNICAL GIRL
0
290
Member Avatar for HBK_100

I seem to have trouble reading the input from the array [CODE]#include <stdio.h> #include <conio.h> #define ROW 1 #define COL 6 void printinfo(int[][COL],int,int); void findId(int[][COL],int,int); int sum=0; float avg=0; int main() { int info[ROW][COL]={0}; for(int x=0;x<ROW;x++) { printf("\nEnter the students ID number:"); fflush(stdin); scanf("%d",&info[x][0]); for (int y=0;y<COL;y++) { printf("\nEnter the …

Software Development c
Member Avatar for abhimanipal
0
102
Member Avatar for wee_shark

Hi all! I'm writting a little application and I'm triying to give it a feature where the user can move the Mouse over an component(JButton) and gets a little explanation what the Button does if pressed. I have an Rectangle for every component I use to set the bounds of …

Software Development java
Member Avatar for BestJewSinceJC
0
112
Member Avatar for skwatamkar

hello friends I have a large table which contains the large text data. the table cell shows the value as for example if value is "Hello Friends" it shown in cell as "Hello Fr". which cuts the value so want to display this complete value in rectangle like joptionpane (I …

Software Development java java-swing
Member Avatar for BestJewSinceJC
0
113
Member Avatar for laelzio.mosca

I`m trying to use sets and gets for a code, but it`s not compiling I`m not sure how to set and get a String, this is what I have so far this is class Car [CODE] String color; void setColor(String col) { color = col; } String getColor() { return …

Software Development java
Member Avatar for laelzio.mosca
0
101
Member Avatar for piers

This is the hardest thing I have tried yet. I am not adding ti as part of the main programme I am doing at the moment cus otherwise it would be too hard to debug. So I have created this as a separate file. I am trying to get a …

Software Development java java-swing
Member Avatar for peter_budo
0
3K

The End.