The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
42 views

Adding to existing JList

I need some help about adding items to JList. I work on some "library" kind of project. And I need to add readers to already existing JList. But when I try to add it, JList just resets, removes all ...
0
votes
2answers
20 views

Adding Dynamic TextBoxes to Dynamically added Panels

Windows Forms VS 2012 vb.net I've tried some code but somehow the dang Textboxes aren't being place inside the panels, i can only assume that im not actually placing them inside the panel, anyone ...
0
votes
0answers
22 views

Adding variables with decimals

I have the following code that I'm using to add different variables to a "base price". The variables are coming from a separate dropdown menus and my issue is that in the dropdown some of the prices ...
0
votes
2answers
33 views

Using an Integer ArrayList in Android

I am needing help creating an ArrayList and adding some Integers to them. Essentially, I have a card game that pulls the card and then saves the ID (BCID). I want to add this pulled ID to an ...
-2
votes
0answers
46 views

Adding and subtraction in Java (Android)

I am new here and Im trying to make a calculator which adds, subtracts, divides and multiplies numbers. But I have a problem... When I want to write the code for adding and subtracting two numbers, ...
0
votes
5answers
90 views

In C add up 1/2 + 2/3 +…+ 18/19 + 19/20

Pretty much I am trying to do 1/2 + 2/3 +...+ 18/19 + 19/20 in C and here's my code: Version 1: int main(){ double i,j,sum; for(i=1,j=2,sum=0; i<=19 && j<=20; i++, j++) ...
2
votes
2answers
25 views

adding at the end of a singly-linked list in constant time

I'm trying to write a method for adding at the end of a singly linked list in a constant time. I don't know how to assign a pointer to the last node in the list in constant time. This method runs in ...
0
votes
1answer
15 views

SVM: Adding Clinical Features To Feature Vector Extracted From Image

I'm using SVM to classify clinical images of patients belonging to two different groups (patients vs. controls). I use PCA to extract a vector of features from each image, but I'd like to add other ...
-2
votes
0answers
12 views

Adding numbers to a variable [closed]

Im not sure how to explain this but this is what I am looking for. If I create a while loop like this: while(count <= Max){ ++count; ++number; and I want to have a variable ...
0
votes
0answers
34 views

VB.NET Watermark Adder

i asked earlier about a way to add a watermark to a picture using visual basic . and thanks to everybody i managed to find a way , but now it seems like i need a code for an option to make the user ...
0
votes
3answers
50 views

How do i make my footer go down as i add content?

I structured my site like this: <body> <div class="main"> <div class="header"> content </div> <div class="section"> content ...
1
vote
1answer
43 views

Trying to add a number to a variable in Python, keeps resetting the variable back to what it was originally [closed]

def start(): number = 0 prompt = raw_input("> ") if prompt == "1": number += 1 print number start() else: start() start() My output: Enter ...
1
vote
3answers
44 views

Java - Adding Rows is there a more efficient way?

Below is the code, I am just wondering if others are coding it differently. Maybe I can make small changes. Thanks in advance! public class addRow { public static int[][] insert(int [][] a, int ...
2
votes
3answers
65 views

Double parseDouble adding extra 0's when adding the numbers

I am running weird situation. I am counting the numbers using Double parseDouble. In some situation i am getting extra 0's for instance instead of 109.1 i am getting ... 109.10000001. I am trying to ...
0
votes
2answers
53 views

How to calculate total of an increasing variable

If there's a variable called a, that's constantly counting up, but resetting to 0 when it hits a certain number, how can I calculate the total of that variable? For example: int count = 0; ...
0
votes
1answer
13 views

add images to placemakrs google maps

I thought this would be simple enough but i cant seem to find a solution to this. All the examples online talk about "editing html" but this option is not there in the maps...at least i cant see it. ...
0
votes
6answers
58 views

Adding days to date in php

I read about this but does not working for me. Here is my code: $today = date_create()->format("d/m/Y"); // Today is 25/04/2013 $num_days = GetNumberOfdays(); $end_date = date("d/m/Y", ...
0
votes
0answers
18 views

When adding doesn't add up in Javascript/Titanium

SDK 3.0.2, Mac OSX 10.8, targets iOS and Android. I have two textfields that I am attempting to add user-entered values (numbers) to use the sum in a payment module. After several trials, that I am ...
0
votes
2answers
151 views

How to add records to MS Access via Java

Im trying to add a row of records to my already existing MS database. Basically these records are to be entered into a GUI and then added to the database when the user clicks submit. I've created the ...
0
votes
2answers
25 views

String casting error in a Doubly Linked list

I asked a question about this code yesterday which helped me overcome that issue, however now I am having other issues. I am taking a doubly linked list and writing the add, remove, reset, etc. ...
0
votes
1answer
101 views

Doubly Linked List -Removal and Adding

This is a class lab, and within it I am attempting to add, remove, etc. into a doubly linked list. I have what I believe to be correct with what I have. I am having problems figuring out how to remove ...
0
votes
0answers
37 views

Two issues How do I seperate two buttons and adding two fields together

I have two problems. The first one is I have two buttons on the form. One is to retrieve the data from the database this issue is that when you push either one they both update the database. The other ...
0
votes
0answers
11 views

It is possible to set Pickerview that you can add files while app is running?

please how can I set picker wiew, that it will be able adding files (no by code, but by the user) and remember it? My last item will be "add new file" is it possible?! Thanks ;)
0
votes
3answers
82 views

Array out of Bounds Error Java

This first code is all I believe you need to look at. The rest of the code is in case there is something I am missing. Edit: Indeed changing that second j to a k fixes the problem. I was looping the ...
-2
votes
3answers
139 views

Trying to add 1 to an integer array for every value. JAVA

(int i=0; i < n; i++){ for(int j=0; j < n; j++){ Array[i][j]=Array[i][j] + 1; } } for some reason I am getting an error. Array is an int array filled with 0s. n can be any size. The ...
0
votes
1answer
30 views

Cocoa touch NSInteger plusing 4 not 1

I have this cocoa touch code where you press a button and a NSInteger adds its self with the number 1 and then a label turnes into the NSInteger value This is the code - (IBAction)out:(id)sender { ...
0
votes
0answers
14 views

add scrollview around a whole xml class

Hi there I am looking to add a single scrollview around this layout without changing the layout itself. I can fit it all on one screen however when i edit a box i need to clear keypad scroll down then ...
0
votes
0answers
44 views

Adding argument to php function on the fly

I'm really stucked on this one. I have a function Get("FieldName") which is getting a field value from the database with that field name of document. This function is used by CMS users in document ...
0
votes
3answers
25 views

Java Adding Numbers Together + Score?

Hi I have made this to add to a score systems. public int Cascore = 0; public int Dascore = 0; public int dascore () { return Dscore = + 5; } public int cascore () { ...
0
votes
2answers
48 views

Appending existing onClick value

I am using javascript and need to grab the value of an existing onclick and append to it. I am not trying to replace the current onclick, I am trying to append to the front, or end, of it. But all ...
0
votes
0answers
6 views

Selecting many adjacent columns easily

I need to add many columns together. Here is an example - SELECT DISTINCT a.st, (sum_cat1+sum_cat2+sum_cat3+sum_cat4+sum_cat5+sum_cat6+sum_cat7+sum_cat8+sum_cat9+ ...
-2
votes
1answer
65 views

PHP Add Currency in Table

I'm trying to add currency together from multiple rows. Below is my code so far. I'm not sure where the SUM should be. I'd also like to out put the resulting table in a PDF format using FPDF if ...
0
votes
1answer
47 views

iOS: DDL Commands during runtime

i want to add tables/columns to a database during runtime. Currently I'm using Core Data. I know that there's a possibility to do so in XCode (add new data model version), but I definitely can't use ...
0
votes
2answers
294 views

Java program that adds two numbers generated by using two sliders

Hello Everyone :) I have this assignment for my java class where I must add two numbers using sliders, and I'm really stuck. Here is my code: import java.awt.*; import java.awt.event.ActionEvent; ...
-2
votes
6answers
191 views

Adding values to an array in java

int[] tall = new int[28123]; for (int j = 1;j<=28123;j++){ int x = 0; tall[x] = j; x++; } What is wrong with this code? Shouldn't this code do the following: ...
0
votes
0answers
109 views

Android Adding more than one TextView to a TableRow Programmatically

I have a LinearLayout inside a FrameLayout for tab purposes. And I'm trying to add TableRow's to the LinearLayout in the code. LinearLayout testLayout = (LinearLayout)findViewById(R.id.testLayout); ...
0
votes
1answer
88 views

c++ - adding new values to an array of ints

In my code below I have an array of objects - tArray. I am trying to find the 'buyer names' that have the top five total 'num shares', the calctotal, and calcstring arrays work in tandem to store the ...
0
votes
2answers
268 views

How do i add prices to my comboBox items in c#? [closed]

I would like to know how I can add prices to the following: private void OrderForm_Load(object sender, EventArgs e) { comboBox1.Items.Add("0"); comboBox1.Items.Add("10"); ...
0
votes
0answers
47 views

adding a camera to a game. how?

I would like to add a camera that will show the off-screen area of my game when the ball passes near to the edge of the screen. I am new to java and would like to know what coding I would need to do ...
0
votes
0answers
93 views

Adding SQLite to my jar File

Hello there I was wondering if there was a way to include SQlite in my Jar file. I want to be able to access it so I can edit the connect on that database. However each time I make it into a runnable ...
0
votes
4answers
120 views

Adding using HTML forms and PHP

I'm having some trouble adding numbers taken from a HTML form. I know this is a really basic question, but nothing seems to work. I'm trying to add up an user's score in a psychical game, such as ...
0
votes
2answers
71 views

Adding hours in PHP

I figured this would be a very simple problem but I haven't found a solution anywhere. I am creating a scheduling program in PHP and mySQL. The shifts have a startTime and endTime, each of which are ...
2
votes
2answers
108 views

Extending c++ with a new keyword

I want to extend c++ with some keywords, for example, "property", to add properties to a class/object (like Visual Studio extend C++ in the "managed" version). For a code example: class Example { ...
2
votes
4answers
65 views

average of five valuesin javascript

I work for a charter school and I'm just learning my way around javascript. I've got some code written by the person who formerly filled my position and it seems to me that it should work, but it ...
0
votes
1answer
89 views

Adding multiple CheckBoxes for a map viewer

I've created a list of structs, each of which has a few properties. My intention is to use a basic 10x10 map to practice / learn to write A* Search Algorithms for a game I'm developing a tool for. ...
1
vote
2answers
299 views

C# adding a row to a datagridview in another form

I'm having difficulty trying to pass information from one form in which a user inputs a lot of employee data and presses a Submit button and the information is to display as an added row to a ...
-2
votes
1answer
123 views

Java multiplying two doubles into another double

I'm trying to replace payRate * hoursWorked into a single variable grossPay but when I do it's returning a value of 0.0 for any calculation. double grossPay is commented out on purpose so you can see ...
0
votes
1answer
140 views

Adding Slide show with JavaScript is messing up my divs

I am not too experienced with JavaScript. I have created a website with 5 divs on the container. When I added the Slideshow with JavaScript all the images jump to the top and the image I use as ...
0
votes
1answer
200 views

Editing a known HTML element and adding an attribute in C#

I want to figure out how I would do this: HTML: <input type="password" id="j_password" name="j_password" autocomplete="on"> How would I make my webBrowser1 add value="testpass" in the ...
0
votes
2answers
165 views

How to add radio button selection to a list in c#?

I am relatively new to C# and I am trying to create an app where a user can supply a lot of data about bonds. So I have a lot of textboxes for bonds names etc and I have 2 radio buttons inside a ...

1 2 3 4 5