Questions tagged [fill]

fill refers to the process of assigning and rendering a color or pattern to the set of coordinates within the outline of a shape.

References

1838 questions
0
votes
1 answer

Filling a file who needs values from 1000 other files - Java

Suppose you have this .csv that we'll name "toComplete": [Date,stock1, stock2, ...., stockn] [30-jun-2015,"NA", "NA", ...., "NA"] .... [30-Jun-1994,"NA","NA",....,"NA"] with n = 1000 and number of row = 5000. Each row is for a different date.…
zardlemalefique
  • 77
  • 1
  • 11
0
votes
1 answer

Java : fill circle partially and put percentage number inside it

How can we fill a drawn circle (or any other shape) partially (e.g. from the bottom to the top) ? And how to put the percentage's number inside this circle ? Here's a preview, but for Android environment : Draw a circle partially filled dynamically
Omar
  • 1,430
  • 1
  • 14
  • 31
0
votes
1 answer

Assembly80x86 filling array with user input(names), but no repeating them

I need to fill an array with names from user input, but keep out names that are already stored in the array(ex, john,jaina,tom,bob). I got this, but it's not working. data segment numbers db 0 names db 220 dup (?) buffer db 10 dup (?) code…
0
votes
4 answers

filling matrix with user's input in C#

i wanna fill a matrix in C# with user's inputs,but i have trouble with it.when i enter rows and cols equal with each other,it work; but when i enter rows and cols different with each other the program stop . the code is int row = 0; …
Navid
  • 11
  • 1
  • 6
0
votes
3 answers

Fill in missing dates

I am working on big data set and manually filling the missing dates is very tedious work. I want to automate this by applying Excel formula or VBA code which can help me fill all these missing dates. Please have a look at the data below. The first…
0
votes
1 answer

How do you pad the StringBuilder?

I build a string adding chars to the end and trimming the end incidentially. Incidentially, I need to add n identical c-chars to the end. How do you do that, 1 to n sb.append(c)?
0
votes
1 answer

Aside background won't load when scrolling on mobile site

The background of the
Muckee
  • 474
  • 1
  • 8
  • 26
0
votes
1 answer

R ggplot2: Classify continuous data in discrete classes in tiled graph

I'm having a filled ggplot contour plot, depicting continuous R-squared values on a 100x100 grid. By default the legend depicts the values in a gradient like continuous manner, resulting from the data's continuous nature. I, however, would like to…
0
votes
2 answers

Filling std vector

I can't understand why does vector empty after it's filling. The code is: bool fillArray (vector &array) { string temp; getline(cin, temp); if (temp == "-1") return false else return true; int res =…
Max Frai
  • 61,946
  • 78
  • 197
  • 306
0
votes
2 answers

Filling DIV regardless Aspect Ratio

What i'm trying to achieve is to fill a div with an image both in width and height. What i get is control over width but height will respect aspect ratio without filling div in height. Tried background-size: cover and contain in every combination…
Razinar
  • 727
  • 3
  • 13
  • 21
0
votes
1 answer

dynamically fill a jquery UI category autocomplete

I'm trying to fill a autocomplete jquery from the event of a select, but can not, I've tried several ways but no work for me because I'm not sure how we should pass the objects array, I tried this Walking away so…
TheGrman
  • 13
  • 4
0
votes
0 answers

Pictureboxes fill with loop

Panel has 90 picturebox as a matrix on my panel.These ll be likely attendance list or you can think these are bus seats and bus has 90 seats. I have 3 png types images which are "green.png" for available seats."red.png" for unavailable…
arici
  • 77
  • 8
0
votes
2 answers

How do I fill an array with images?

This is my first time posting, so please be gracious if I'm doing something wrong, and thanks for your help! I feel like I've read all the tutorials and questions but still can't seem to get this array filling with images. I figured it out! Thanks…
KT_Al
  • 1
  • 1
0
votes
1 answer

Could not Append to select tag by javascript and jquery

I am doing an mvc 5 project and I have cart view and I have 2 deopdownlist named country and state in it and when it is run the country model fill country dropdownlist and now I want to fill state dropdownlist onchange of country dropdownlist so I…
atefeh
  • 31
  • 1
  • 4
0
votes
0 answers

Fill property in Web service .net

I'm quite new to Web Services. I have web service, here's link http://pastebin.com/hnNH84KG, and own XML data file (generated by XSD schema). I need to fill properties in web service, but i cant find any method. This web service contain only…
user3986663
1 2 3
99
100