132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for MarounMaroun

Hey all, I'm trying to implement a function InitMatrix which suppose to return a pointer to a new created 3d array of the size determined by x,y and z. I have a struct which represents a matrix and should be able to deal with some functions required, like setting the …

Software Development c
Member Avatar for Ancient Dragon
0
299
Member Avatar for Tankadin

Ok here is my problem thus far. My program I have created is horrible lol...I am adult enough to admit it. My issue is the output I am getting that I will post after my code. It has weird characters at the top and I am not sure why. The …

Software Development java
Member Avatar for Tankadin
0
264
Member Avatar for koduruabhinav

Hi,i was a beginner in perl .please try to help m ein these areas. If i use [CODE]du -sh[/CODE] in my perl script i was getting output as 54M /home/abhinav/compare or 569M /home/abhinav/debug But i want only the size that is either like 54m or 569m and i dont want …

Software Development perl
Member Avatar for koduruabhinav
0
163
Member Avatar for Alec0905

Hey Guys, I had a question earlier about some bounds and i've got it all figured out after some intense debugging and some help. I just have one more simple question and I think I should finally be on my way. If I have a recursive function that returns an …

Software Development c++ file-stream
Member Avatar for Alec0905
0
202
Member Avatar for killerbeat

Hi, Daniweb members i have an listview containing an normal listviewitem plus one subitem What i want to do is save the info in the listview in a textfile and load when i start my program. So that all the info will be saved, but how do i do this? …

Software Development listview vb.net
Member Avatar for codeorder
0
2K
Member Avatar for volkang

Hi i ve been dealing with a program and encountred a weird problem. the problem is that my array variable por[27][1]'s value changes for no reason. please take a look at the pictures in the attachment. the pictures belong to debugging.

Software Development c
Member Avatar for volkang
0
163
Member Avatar for ccandillo

I am doing the O'reilly School of Technology course and the current topic deals with Tkinter. It gave me the idea to write this application. The idea is to transfer files to various ftp sites. If I set a default master password, then the password should be used for all …

Software Development python tkinter
Member Avatar for ccandillo
0
288
Member Avatar for Phil++

Hello, Right, basically I'm trying to write some HTML to a file, now the problem is that I do not want to write the whole of the HTML in the C# program, incase I ever need to change the HTML file. All I want to do is change a few …

Software Development
Member Avatar for Unhnd_Exception
0
132
Member Avatar for TGeorge824

Hello, I have an assignment where we are supposed to populate an operating system's ready queue with processes and try various process scheduling scheme and record their wait times. To do this i made a rudimentary structure for a process: [CODE]typedef struct{ int ID; int wait_time; int exec_time; }process; [/CODE] …

Software Development algorithm c operating-system queue
Member Avatar for TGeorge824
0
155
Member Avatar for c2q

Hi Okay so i have a text file and i have it converted to a bunch of lists with strings as the words. Now i need to find words that occur only once in the entire text file, how can i do this using a loop? A hint says that …

Software Development python
Member Avatar for cghtkh
0
133
Member Avatar for Gumbo

Hi I'm doing an assignment on Rational Number calculations. I'm getting some compiling errors which I don't know how to fix. Here is the error message and the code is beneath the error message. I would really appreciate if someone could read over this and see if you know whats …

Software Development c++ ios microsoft-access visual-studio
Member Avatar for Gumbo
0
186
Member Avatar for achieve_goals

Hi, I am trying to make a word counter, for that I have to input a string line untill '@@@' character is entered. My problem is that when I enter "Hello hello" as my input it reads the last hello twice.. or this is what I think it does.. Right …

Software Development c++
Member Avatar for achieve_goals
0
342
Member Avatar for radnam

Hello, The title of this thread perhaps does not explain my problem correctly. Actually i am developing a financial software for a company.The software is similar to a banking system. The software is being developed using VB 2008 and SQL Server 2008.The company has its branches located at different locations. …

Software Development dataset sql vb.net xml
Member Avatar for Momerath
0
138
Member Avatar for Bri426

I'm working on a program for my C++ class. The assignment uses a file that includes student names and three test scores. For example: Name Test1 Test2 Test3 Name Test1 Test2 Test3 My teacher wrote the main part of the program for us and we are to write the functions. …

Software Development c++
Member Avatar for Bri426
0
174
Member Avatar for Alec0905

Hey guys, i'm working on a recursive problem that invlolves getting from a place "s" (start) to a part "e" (end) in as few moves as possible. There are road blocks "x" and the grid is a size up to 15x15. My problem is that when I try to write …

Software Development c++ file-stream
Member Avatar for Alec0905
0
167
Member Avatar for geryin

Write a function that accepts an array of integers and determines the difference between the integers. For example, if the array [3 7 8 13 11] is passed to the function, it prints to the screen [3 4 1 5 -2]. mine give me : 3, 4 ,4 9, 2 …

Software Development c++
Member Avatar for Duoas
0
2K
Member Avatar for thisischris

So I have a data file that looks like this [CODE] Movie1 Year Salary Actor1, Actor2 Movie2 Year Salary Actor3, Actor4, Actor5 ... etc [/CODE] The part that's throwing me off is the actors line. It can have from 1 to 5 actors on it, separated by commas. I have …

Software Development c++
Member Avatar for Duoas
0
133
Member Avatar for kafro

I'm working with sets and notice when I do: [CODE]s1 = set( ['a', 'b', 'c']) s2 = set([1,2,3]) print s1.symmetric_difference(s2)[/CODE] It prints it off as: [CODE] set(['a', 1, 2, 3, 'c', 'b'])[/CODE] Is there any reason to why it displays it in the order of 'a', 1, 2, 3, 'c', …

Software Development python
Member Avatar for TrustyTony
0
112
Member Avatar for kiddo39

Hi, I've been using tkinter to write a program that has a root window and many toplevel windows. I was able to create them successfully but my next step was to incorporate mysql with it so it would actually store any data that was entered in the various entry fields. …

Software Development python sql tkinter
Member Avatar for TrustyTony
0
1K
Member Avatar for ereruh

Hey. As the topic states i want to use a streamwriter to write the listbox from form1, but the streamwriter is in form2. How do i get the data from form1 to form2? I have the code to write everything out etc, all I need is help to get the …

Software Development
Member Avatar for can-inlife
0
136
Member Avatar for 3FLryan

Hello, I am just starting learning Python and I am having some trouble properly importing a function from a module. I wrote the short script: [CODE]def print_twice(param): print(param, param) [/CODE] When I try to import the function print_twice, the shell tells me it cannot import the name print_twice. When I …

Software Development apple python
Member Avatar for TrustyTony
0
453
Member Avatar for xyzt

hello, i need a tool to measure the cyclomatic complexity of a given C source file. what do you suggest for this? thanks..

Software Development c++
Member Avatar for IssamLahlali
0
156
Member Avatar for gizmo7008

I'm trying to create a print void function, however I'm not understanding how to call the database in the print function. I've tried to do something similar to what is in my textbook but all I'm getting is errors. This is what I've done so far. [CODE] #include <iomanip> #include …

Software Development c++
Member Avatar for gizmo7008
0
6K
Member Avatar for irandokht

can i format a digit while typing it on a textbx for example 2343244 will show 2,343,244 any help will be appreciate

Software Development c#
Member Avatar for irandokht
0
3K
Member Avatar for MarounMaroun

Salam, My mission is to program a cube[I](given its dimensions (x,y,z))[/I]. The cube will be represented in a struct, which I'll choose what data members it should contain. I need to implement the allocation function(which actually creates the matrix) and some other functions. The most important function is the setter …

Software Development c
Member Avatar for myk45
0
109
Member Avatar for LianaN

Hi! Is it possible to dynamically update a text of items in JList? Let's say there is JList defined as follows: [CODE] list1.setModel(new AbstractListModel() { Object[] values = listOfTasks.toArray(); public int getSize() { return values.length; } public Object getElementAt(int i) { return "Task " + i; } }); [/CODE] As …

Software Development java
Member Avatar for JamesCherrill
0
2K
Member Avatar for etftw

Hello, I am looking for a means of database interaction in which the database will be stored on a user's machine but with no actual server software running. I have read there is some way to create databases in SQL express and then take the files for use in your …

Software Development sql
Member Avatar for etftw
0
323
Member Avatar for Turaiel

Originally I was using Office Interop to import data, but that was a headache and a half for both me and my computer. Right now I'm attempting to load it with ACE, but my data grid isn't being populated. Once that's up and running I need to know how to …

Software Development dataset microsoft-office vb.net
Member Avatar for Turaiel
0
226
Member Avatar for cppgangster

Hi, Thank you for helping and here is the problem: [ICODE] #include <string> #include <fstream> #include <vector> #include <iostream> using std::string; using std::ifstream; template<class t> class Openfile { private: string pavadinimas; ifstream fin; public: typedef ifstream & reference; Openfile(); Openfile(const char * c); reference rout(); std::vector<t> & operator>>(std::vector<t> &); ~Openfile(); …

Software Development c++
Member Avatar for StuXYZ
0
233
Member Avatar for PDB1982

I can't figure out for the life of me why the names of the square and rectangle won't show up....can anyone help? [code] public class Square extends NamedShape implements Shape { public void Length() { System.out.printf("Please Enter Length Value: ", this.getLength()); } public Square(String name) { super(name); System.out.printf("Shape:", this.getName()); } …

Software Development java
Member Avatar for apines
0
108
Member Avatar for qvyhnl

Write the function my_strncat(). The function has three parameters: a char * s1, a const char * s2, and an int max, which represents the maximum size of the s1 buffer. Append the characters in s2 to the end of s1. Make sure you have only one '\0' at the …

Software Development c++
Member Avatar for qvyhnl
0
99
Member Avatar for Turaiel

I've read around that playing WAV files from resources using My.Computer.Audio.Play causes horrid distortion when playing the sound, and I've experienced this myself. I cannot, however, use WaitToComplete, because the sounds are associated with a timer that cannot stop for anything, as it is an official competition timer. Also, I'm …

Software Development audio vb.net
Member Avatar for lolafuertes
0
177
Member Avatar for RobBobSmith

Hello all: I am working on a class for creating 2-D arrays. A couple of days ago, someone kindly helped me identify a problem with my operator() expression, but now I'm getting a segmentation fault. I just can't figure out where the problem is! If anyone could take a look …

Software Development c c# c++
Member Avatar for RobBobSmith
0
410
Member Avatar for TahoeSands

Every time I think I am really making progress in understanding object oriented programming, I run into something that makes me have to go back and start all over again... This time its "subclassing". I believe that I understand the basics inheritance and overriding, but when I start to develop …

Software Development java oop
Member Avatar for jon.kiparsky
0
124
Member Avatar for michal_nowak

Hello, I'm completely newbie, I used pairs from <utylity>, but now I'm in need of something like "thirds", so I decided to create a template. I started with: [CODE]template <class T1, class T2, class T3> struct thirds { typedef T1 first_type; typedef T2 second_type; typedef T3 third_type; T1 first; T2 …

Software Development c++ visual-studio
Member Avatar for mrnutty
0
141
Member Avatar for denmarkstan

please i want someone to help me out here. i am trying to develop a dynamic class timetable. Every 2hrs; classes change lectures and lecturerers. i want my application on its own to be able to switch to next period. Doing that, the next period lctures and the lectureers would …

Software Development display queue
Member Avatar for Unhnd_Exception
0
127
Member Avatar for Sunshineserene

Hi all, I want to parse the elements in my arraylist to double. May I know how to implement that? [CODE]import java.io.*; import java.util.*; public class Array2 { static ArrayList myDouble = new ArrayList(); static String[] temp; static String[][] finalTemp; static String[] arr; static int rows; public static void main(String …

Software Development java
Member Avatar for BestJewSinceJC
0
6K
Member Avatar for smeghead007

Hey guys i need help with my program. What I need to do is to open to inout files. one containing the accout numbers with there names and balance. the second is the transactin history with accout num ie 123 d45.67 d 56.78 w 78.99. My problem is that i …

Software Development c++
Member Avatar for smeghead007
0
340
Member Avatar for StaticX

Hi everyone, I am having a little(lot of..) trouble figuring out how to combine a GUI I have made and the code that goes with it. I am vaugley familiar with action listener process, and I understand this is how to give functionality to buttons etc. However, the part I …

Software Development gui java
Member Avatar for StaticX
0
160
Member Avatar for indrajeet6

[COLOR="Green"]Hi, I'm trying to write a linked list Program to accept a no. and print all the prime numbers less than it, using the sieve method, Explained below: Suppose that n=30.Then we list all the numbers till 30, and cross out 1 and all the multiples of 2, then 3,then …

Software Development c linked-list
0
259
Member Avatar for it2051229

hello i m deleting a file but it is giving the error that "The process cannot access the file 'D:\MyDataBase\106.jpg' because it is being used by another process." What I did was I created a picture box and the when the form loads the picture box image is referenced to …

Software Development
Member Avatar for tanisha123
0
311
Member Avatar for anthonys1mom

I'm working on a program to convert decimal to binary, octal and hexadecimal. I can get the code correct to convert decimal to binary and octal, but in reverse. I was 'given' the code to use for STACK class to push and pop o reverse teh order, but I'm having …

Software Development c++
Member Avatar for mitrmkar
0
2K
Member Avatar for YellowJello

Hi, I'm making three bank account classes but this is just the basic one. I am having trouble with the withdraw function, mainly due to me not understanding how to correctly use the friend method when it come to overloading operators. Any help explaining how to correctly use it in …

Software Development c++
Member Avatar for Ancient Dragon
0
190
Member Avatar for jugnu

Hello everyone I have 2 forms frmEmployee and frmSearch. frmSearch is called from frmEmployee i m not hiding frmEmployee. when i get the focus back of frmEmployee, it seems that textboxes are getting the values from frmSetup but not displaying. Following is the code on frmEmployee [CODE] private void btnBrowse_Click(object …

Software Development
Member Avatar for Momerath
0
113
Member Avatar for merse

Number is always represented with the closest double? A real number is usually between two double representation. Always the closest representation is used or not necessary?

Software Development c++
Member Avatar for Ancient Dragon
0
95
Member Avatar for MichaelSammels

Hi DaniWeb, [INDENT]So when you right click an .exe file (one you compile with C) you get the option to view the details such as File Description, File Version, Product Name, etc. I was wondering how to change these? I assume it'll be a C command, but I'm not entirely …

Software Development c
Member Avatar for mohanty_555
0
79
Member Avatar for hatux

Hello gentlemen. I have a question over here. with the following piece of code i want to extract data from a document. The question is how can i assign the values [B]Sentences, Words[/B] in the Array. [CODE] String data[][]; //[files][sentences][words] public void ScanSearch() { for (int i = 0; i …

Software Development java
Member Avatar for JamesCherrill
0
103
Member Avatar for Transcendent

This file is saved as Employee.java [CODE]// Employee.java //Employee Class with a construuctor to initialize the first name, last . public class Employee { private String FirstName; //first name for this Employee private String LastName ; //last name for this Employee private double MonthlySalary; //Monthly salary for this Employee //constructor …

Software Development java
Member Avatar for kramerd
0
228
Member Avatar for DynamicMember

Friends,i need your advice.i cant find a good program to use and work on C++.At the moment i am using Borland C++ Builder 6,but i also have Microsoft Visual C++ 2o1o.What will u advice?:(

Software Development c++
Member Avatar for DynamicMember
0
147
Member Avatar for Transcendent

The End.