132,722 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for arvin2006

Hi, everyone! I wish i could find someone who is diligent in answering to my queries since i am a beginner when it talks about java. I understand visual basic very well since it was the language i used when i am doing my thesis, and now i am working, …

Software Development assembly java visual-basic
Member Avatar for stultuske
0
102
Member Avatar for asweetroxxi

i have to use an array for this and when i run my program my computer starts to spit out number can someone help me. the critia is that it can read from base 2-9 and will give me the answer in base 10. [code] #include <iostream> using namespace std; …

Software Development c++
Member Avatar for Freaky_Chris
0
78
Member Avatar for ajithraj

I had learned that JVM will collect only the freed memory location during the garbage collection..That is if an object had a reference, then it will not be collected... My doubt is, will the JVM collect all the used location whenever it goes out of the method..That is . [ICODE] …

Software Development java
Member Avatar for ajithraj
0
168
Member Avatar for billchow24

I am recently writing a doubly link list by C++ However,I don't know how to perform shuffle as the following: Places all the nodes in odds positions before that in even ones. For example,after executing shuffle, the list {a, b, c, d, e} will become {a, c, e, b, d} …

Software Development c++
Member Avatar for Freaky_Chris
0
871
Member Avatar for scream2ice

Hi all The program i'm trying to write is meant to take a series of HTML codes as input and check to see if the all the tags in that code are matched or not (it should basically check all the opening tags and see if they have been closed) …

Software Development java
Member Avatar for verruckt24
0
882
Member Avatar for devilz

Hello readers, I'm very new with VB6.0. Can you please help me?? There are two tables in my Access DB. Users are inputting Emp_id(PK) in Table1. Under combo_click i need to save all Emp_id from Table1 into emp_id column(FK of Table1) of Table2. It is possible to save date in …

Software Development visual-basic
Member Avatar for abbajee
0
279
Member Avatar for dollmar

gud day I made a software in which it is possible to save data to an Excel sheet. Now, I would like to program that one can open this sheet and the saved data is then (automatically) loaded into some textboxes of the forms in the VB software. The data …

Software Development visual-basic
Member Avatar for abbajee
0
150
Member Avatar for Jack Wetson

Hi, I have recently jumped into the realms of C# and I am having some trouble with editing properies accross threads. From what i have managed to research thus far i beleive i need to use the Invoke() method, however i am not quite sure how to go about this …

Software Development c c# c++
Member Avatar for Jack Wetson
0
168
Member Avatar for Everlong

I need some help with a project. I'm trying to print out all possible combinations of a number grid. For example: 1 3 2 5 4 2 4 3 1 5 5 3 4 2 3 4 3 1 5 2 5 3 4 1 2 The numbers are randomly …

Software Development c++
Member Avatar for Everlong
0
227
Member Avatar for nandomendoza

Does anybody know how to indent in the java code and then once then one you run the application the output is displayed with the indentation you created. Anyone's input in this would be helpful.

Software Development java
Member Avatar for stephen84s
0
182
Member Avatar for cassie_sanford

I am trying to right align my numbers to make them look like this: [TEX] Total Collected: $ 26572.89 Sales: $ 25068.76 County Sales Tax: $ 501.38 State Sales Tax: $ 1002.75 [/TEX] The problem is i dont know how to format it in my code. Here is my code …

Software Development c++
Member Avatar for vmanes
0
112
Member Avatar for jaasaria

hi guyzz... is their a third party software were can i install/register all the vb dll files need in my visual basic project. im having hard time in my installer setup. im using setup factory. and before im making the setup up factory wizard, im using the Package & Deployment …

Software Development visual-basic
Member Avatar for jaasaria
0
214
Member Avatar for DLightman

I have a char array with a size of 17. I need to copy each block of 4 characters from the array into 4 separate char arrays. I'm not exactly how to go about this.

Software Development c
Member Avatar for DLightman
0
64
Member Avatar for Eyo

Hello Everybody, If you plz am fresh graduate and now am asked to do project and to use barcode..... really I dont know anything about barcodes, I've searched the internet , i knew that there are fonts... (code39,...) If i have a barcode field saved in db, if i read …

Software Development vb.net
Member Avatar for Minolwen
0
91
Member Avatar for muhammad ismail

Hi Every body I need help in how to cast a single datagrid cell to a textbox in vb.net. Actullay i want to validate datagrid cells.

Software Development vb.net
Member Avatar for Minolwen
0
74
Member Avatar for UGndLord

Hi! This is my first post here :) and I'm not good with english :) I hope that you will understand :) I'm trying to enter a string with only numbers. I solved this but i dont know how to enable delete (backspace button) ? I solve and this problem …

Software Development c++
Member Avatar for UGndLord
0
123
Member Avatar for mtramnes

I tried to search for other threads to answer my question but couldnt come up with anything that I could think of to describe what I was looking for well. My assignment is this: Write an application that shows the sum of 1 to n for every n from 1 …

Software Development c c# c++
Member Avatar for mtramnes
0
153
Member Avatar for nekt

Hello People Please suggest me the use of passing class reference in a method Here is the sample code from class A [code]public Integer[] getReport(Class classname, String sql) {[/code] And, then when it is called inside class C, it is referred to as , [code]new A().getReport(B.class, "select * from Table …

Software Development java
Member Avatar for nekt
0
86
Member Avatar for JackDurden

Is it possible to input numbers into two different arrays like so, 1 2 3 4 5 6 7 8 9 where the first array would hold {1, 3, 5, 7, 9} and the second array would hold {2, 4, 6, 8}?

Software Development
Member Avatar for Rashakil Fol
0
84
Member Avatar for ryansullivan

So I have an assignment where I have to translate some code in C to MIPS. It is what we are calling "Rule 1," which solves Sudoku puzzles by eliminating a number from a column, row, or 3x3 box if it is present elsewhere in that same row, column, or …

Software Development assembly
Member Avatar for ryansullivan
0
923
Member Avatar for daviddoria

I have a function that I call recursively, but I want to keep track of a maximum through the entire process. This is what I am doing: [code] void Intersect(double &MaxDistance) { if(something) MaxDistance = something; Intersect(MaxDistance); } [/code] Is that correct/reasonable? Something doesn't seem to be working and I'm …

Software Development c++
Member Avatar for vmanes
0
158
Member Avatar for thacravedawg

I am trying to write a loop that will use the add.row function to add a number of rows that will be decided by user input. The button action submits info to a couple other tables also, and that function is working properly. This code will execute, but instead of …

Software Development
Member Avatar for nelis
0
77
Member Avatar for C#Newbie

I have a class Friend: [CODE]public class Friend { public string friendName; public string friendStreet; public string friendCity; public string friendState; public string friendZip; public Friend() { } }[/CODE] and I am using a ArrayList called friendArray. I have a text file that is formatted like this: My Name My …

Software Development file-system gui
Member Avatar for Antenka
0
1K
Member Avatar for DrLod

Hi! I have two questions for you, 1. Browse pictures! How do i view and browse pictures on the same way as in picasa or bridge. In my DB i have only path to the pictures. 2. Zooming. If i then want to zoom in this pictures again in the …

Software Development adobe
Member Avatar for nelis
0
215
Member Avatar for OrionImprisoned

Game description here:[url]http://www.google.com/url?sa=t&source=web&ct=res&cd=11&url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FBreakthru_(board_game)&ei=dXeTSZH9KJmatwe2i_DiCw&usg=AFQjCNGMFXvDxyuxmi8PrdyGneGpX5SNRA&sig2=pdq6w2j03qSNW-9gQio83g[/url] Variables/functions needed to be known: m_count: turns taken (0,1,2) x,y starting coordinates of a piece h,v destination of said piece get() returns integer 0,1,2 [empty,gold,silver] sideSwitch() resets m_count to 1 and turn to the opposite player. ___ [B]Problem:[/B] First pieces started disappearing: fixed game wasn't ending when …

Software Development c++
Member Avatar for OrionImprisoned
0
263
Member Avatar for Himerz

Hi people. I have this code and I am stuck on trying to get a 'call by reference' to work properly. I need to convert Celsius to Fahrenheit and Fahrenheit to Celsius. I am not sure what is wrong with my code. Remember that I have to use a function …

Software Development c++
Member Avatar for DemonGal711
0
177
Member Avatar for k2k

hi, i just have many questions regarding abstract class, please briefly explain if you may. thanks. 1. what is the difference between declaring public abstract class and abstract class ? 2. should abstract class have a constructor? i know by default it has one, but since abstract class doesn't have …

Software Development java
Member Avatar for masijade
0
145
Member Avatar for guatemalagirl

HI! i need to create a program that lets user input as many numeric grades as they like.... in return they get the letter grade for each and the their grade average, minimum, and maximum. this is all i have so far...... import TerminalIO.KeyboardReader; public class LetterGradeWLT { public static …

Software Development java
Member Avatar for VernonDozier
0
100
Member Avatar for slimjimmer

Hi. I have written a program to build an array and move values around until a point of "equilibrium" is reached. It then records how many of each number there are and outputs them to a file. My program works in part, but sometimes encounters a seg fault (I think …

Software Development c
Member Avatar for slimjimmer
0
151
Member Avatar for massivefermion

Hey I want a code for a please wait with dots in front of it (writes some and delete them and starts again) or a / or \ that rounds. thanks

Software Development c++
Member Avatar for ArkM
0
138
Member Avatar for Bob Jacobs

The principle of setting up files on a server to be downloaded and installed by a web user is a black art to me. Could anyone explain how I can do this.

Software Development visual-basic web-server
Member Avatar for Comatose
0
111
Member Avatar for jpp10

Hi, I am in a requirement of selecting a particular .csv file for reading into the program for further manipulations (calculations) based on zipcode entered by the user. So, can u pls direct me for the same so as to get the things moving on.

Software Development java
Member Avatar for jpp10
0
109
Member Avatar for Lone-Wolf

I just started nightschool to learn c# (learn programming at all) We got an exercise where we need to test for a palindrome We were asked to put the test in a function and then call the result in a messagebox. I'm kinda stuck on the last part the calling. …

Software Development
Member Avatar for Lone-Wolf
0
102
Member Avatar for thehivetyrant

I have been asked the following: create inputs for a half-adder using python and the outputs i expect. I was hoping someone could just have a look at this for me and see if i've got the right idea. This will work from a copy and paste straight off the …

Software Development python
Member Avatar for BearofNH
0
106
Member Avatar for C#Newbie

Hi. I am working on my Final for my Intro to C# class so yes I am new and my code is pretty unprofessional probably. We are required to use a array or a class to read addresses from a text file and display them in the GUI. We should …

Software Development gui visual-studio
Member Avatar for C#Newbie
0
519
Member Avatar for h3llpunk

Hi, I tried creating multiple bitmaps on top of each other but cant seem to get the result i want: currently i have one bitmap that is the background and another bitmap that is supposed to be an animal and will be on top of the background. this is my …

Software Development c++
Member Avatar for h3llpunk
0
204
Member Avatar for shikhakenue

I have to write a code in Native C++ using which i have to load the contents of an XML into GUI and write back the changes done (pertaining to parameters) into another xml which is a replica of the loaded XML. The usage of TinyXml is a must. Please …

Software Development c++ gui xml
Member Avatar for Salem
0
80
Member Avatar for drew7py

I am trying to create an array of integers from a list of strings to do some calculations, but all I can get is an array of strings or an error. Does numpy have any functions to do this? any help at all would be much appreciated. infile: 23 CL …

Software Development python
Member Avatar for Ene Uran
0
3K
Member Avatar for Skorpion

HI can u plz help me with this? [CODE=c]#include<stdio.h> #include<conio.h> void main () { int i,j; printf ("\t*"); for (i=2; i<=5; i++) { i=i+1; printf ("*",i); for (i=3; i>=1; i--) { printf ("*"); } printf ("\n"); } getch(); }[/CODE] its suppose to give an output in the form of diamond …

Software Development c
Member Avatar for Prabakar
0
131
Member Avatar for drew7py

I need to add a column to a list of strings and then print it back to a new text file without [] or "". I tried this below but it is not the result I wanted. infile looks like this: 23 CL 006 2004 DBA8ORPU 41 8Y S0111P 2 …

Software Development python
Member Avatar for Ene Uran
0
4K
Member Avatar for seemant gupta
Member Avatar for verruckt24
0
75
Member Avatar for BobLewiston

I tried to compile a Windows Forms Application in Visual C# 2008 Express with this source code from the CSharpSchool tutorial at Programmer's Heaven:[code]using System; using System.Windows.Forms; using System.Drawing; namespace CSharpSchool { class HelloWinForm { static void Main () { Application.Run (new MyWindow ()); } } class MyWindow : Form …

Software Development visual-studio
Member Avatar for JerryShaw
0
153
Member Avatar for bluue

I changed the name of a folder so that it would meet the requirements for my assignment submission and now my program wont run in the command window. its saying it can't find the .txt files. However, the program runs without any problems in JCreator. i have a folder called …

Software Development java perl
Member Avatar for bluue
0
103
Member Avatar for bluue

I know that the code sorts a list of temperatures numerically but i cant get my head round what it does in detail, as in line by line. [code] public void sortnumerically() { for (int i = 0; i < temperatures.size() - 1; i++) { int min = i; for …

Software Development java
Member Avatar for verruckt24
0
96
Member Avatar for chris5126

HI guys, I have file with 6 values in: [code] 1060276 2211546 7544.941158316 1060276 2211606 7545.960677177 [/code] I put those numbers into variables: [code] obyte1=`cat $TMP | sed -n 1p` rbyte1=`cat $TMP | sed -n 2p` snapt1=`cat $TMP | sed -n 3p` obyte2=`cat $TMP | sed -n 4p` rbyte2=`cat $TMP …

Software Development shell-scripting
Member Avatar for chris5126
0
118
Member Avatar for de boer

hie all, i am here all because of need u guys help.. my task is to create two fishes which can swim inside aquarium and move and turn by using java coding. actually i got a set of uncompleted code. what i need to do is to compile all the …

Software Development java
Member Avatar for javaAddict
0
821
Member Avatar for rat1973

I wish to filter records during an xsl transformation. I know basic filtering is quite simple, however, I wish it to be conditional based on data from the original source xml data. My source data will have several updates for the same record in it. Each update will be identified …

Software Development xml
Member Avatar for rat1973
0
170
Member Avatar for nikolaos

This is a poor implementation of quicksort in pascal. I will use it in the classroom for a demonstration in sorting algorithms (divide and conquer). I would appreciate if someone could help me a little with some improvements. [code=pascal] program quicksort; uses wincrt; const max = 10; type table = …

Software Development pascal
Member Avatar for LizR
0
267
Member Avatar for ryan311

please help me all i want is simple if what i inputted to my 2 textbox for example i input 08:30 the timer of my system could change and i want a running time can i anyone help me?

Software Development visual-basic
Member Avatar for abbajee
0
86
Member Avatar for firoz.raj

Can anybody tell me why these statement is not working ?. I want to see supplier detail using listview.here is the code what i have written. [code] Private Sub Form_Load() Set con = New ADODB.Connection con.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=\\asfserver\itp$\Product_tabletest.mdb") con.CursorLocation = adUseClient Dim listitem As listitem ListView1.View = lvwReport …

Software Development listview open-source visual-basic
Member Avatar for firoz.raj
0
141

The End.