The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

looping through UltraGridRow UltraCombo to get both checked and unchecked rows in the same dataset

The code below return all UNCHECKED rows to a datatable. I need ot also get the rows that are CHECKED and add them to the "selected" column, "dt.Columns.Add("selected", ...
0
votes
2answers
48 views

Java unchecked warnings add arraylist

Here is the main program public class MainPerson { public MainPerson(){} public static void StartMainPerson() { int i = 1; ArrayList<SortedPair> PersonList; ...
0
votes
1answer
29 views

show if 1 checkbox checked, hide if SEVERAL UNCHECKED jquery

Hi I would like to figure out how to do some logic on a checkbox dilemma. I have a listing for a video with tags associated with it. It has a corresponding checkbox. When the checkbox is checked ...
2
votes
4answers
69 views

Why is SQLException a checked exception [closed]

Can anyone think of a rational reason why SQLException is a checked exception? Yes, there could be a syntax error in the query Yes, the connection might have died Yes, there might be a permission ...
2
votes
1answer
65 views

unchecked only all child node in treeview

I'm using treeview , and I use from this code form checked and unchecked all Child Node when select parent or child node private bool updatingTreeView; private void ...
1
vote
3answers
63 views

getElementByName returns Type Error?

My code: var isSomethingChecked = (document.getElementByName("koalaCheck").checked || document.getElementByName("kangarooCheck").checked); Why does this code throw an ...
1
vote
7answers
75 views

Java: Catching exception - unchecked vs.checked

I have some code code splits a string (user input) into an array and passes the elements of that array into a method as arguments. If the array does not have enough elements an ...
0
votes
0answers
88 views

CheckBox in dataGrid TemplateColumn unchecked when scrolling the datagrid

In my program i have a datagrid and it has a checkbox template column. When i scroll, my checked checkbox goes unchecked. I couldn't find the solution. My codes are here.I'm waiting for your ...
-1
votes
1answer
75 views

How to suppress overflow-checking in PowerShell?

PowerShell seems to perform bounds-checking after arithmetic operations and conversions. For instance, the following operations fail: [byte]$a = 255 $a++ $a = [byte]256 Is there any way to enforce ...
0
votes
1answer
48 views

Program uses unchecked or unsafe operations for 2d ArrayList[][]

I have a task at the university to make a play board made of play fields. Every field can contain numerous items on it. I made it with an array arrayList like that: List<String>[][] items = ...
-5
votes
4answers
93 views

Convert -1 to uint C#

Converting -1 to uint will not work "((uint)(-1))" solution? num10 = ((uint)(-1)) >> (0x20 - num9); Error: Constant value '-1' cannot be converted to a 'uint' (use 'unchecked' syntax to ...
5
votes
1answer
73 views

Overloading the + operator so it is sensitive to being called in a checked or unchecked context

UPDATE: I've found the answer, which I will post in a couple of days if nobody else does. I am creating a numeric struct, so I am overloading the arithmetical operators. Here is an example for a ...
0
votes
1answer
33 views

Modify this function to remove values if they're unchecked

I'm using this function with an unordered list (<ul>) in order to replicate the functionality of a Select dropdown element. The function correctly shows the user's selected values in the ...
0
votes
0answers
30 views

How to create multiselection in ios just like in facebook in ios?

i am new to ios development,i am doing an ios project.In my project i want to create a multiselection just like multiselection in facebook.When we select morethan two the labelsize increases ...
0
votes
2answers
235 views

Remove elements from List Box if checkbox gets unchecked in C#

I have an app in C# that needs two list boxes, but the contents of them are populated according to the state of some checkboxes. I have already figured out how to add content to the list box when the ...
7
votes
3answers
156 views

Why not simply disable unchecked warnings?

When developers interact with non-generic APIs, they usually run into "unchecked" warnings. Consider the following example: import java.util.AbstractList; import org.w3c.dom.Node; import ...
2
votes
1answer
105 views

Unchecked or Unsafe operations homework

In my most recent class assignment we've been working with generics and I have been receiving this warning: Note: Selector.java uses unchecked or unsafe operations. Note: Recompile with ...
0
votes
0answers
23 views

-Xlint unchecked in java [duplicate]

Possible Duplicate: What causes javac to issue the “uses unchecked or unsafe operations” warning Im getting following warning. What is -xlint:unchecked. If i include -xlint:unchecked in ...
1
vote
2answers
185 views

IntelliJ says “Warning: java: foo/bar/Baz.java uses unchecked or unsafe operations”, but it doesn't say in which line it is referring to

I am getting this warning: When I click on the image, it just opens the associated Editor, but it doesn't say the line number where the warning is raised. I don't want to add ...
0
votes
2answers
105 views

Implementing java application with unchecked exceptions [duplicate]

Possible Duplicate: Java unchecked/checked exception clarification I have been reading about debates on checked vs unchecked exceptions in java, i know the difference but i am not fully ...
0
votes
2answers
66 views

Wierd unchecked conversion warning

I have used a Strategy pattern in my code, here is a short fragment: public interface FindingStrategy<T> { Callable<T> setAction(); } class FindSomething implements ...
8
votes
4answers
314 views

Java generics SuppressWarnings(“unchecked”) mystery

Why does code alternative(1) compile without warnings, and code alternative(2) produce an "unchecked cast" warning? Common for both: class Foo<T> { Foo( T [] arg ) { } } Alternative ...
0
votes
3answers
111 views

Calling generic Java function with <?> parameter

Is the following possible somehow? interface Foo<T> { public void bar(T object); } ... public void callBar(Foo<?> foo) { foo.bar("Hello world!"); } Clearly, this is not ...
0
votes
2answers
143 views

Cannot select previously selected RadioButton after reset

I have a set of three RadioGroups each consisting of three RadioButtons. And a reset Button that sets all RadioButtons in all Groups to false (setChecked(false)). Reset works fine (all RadioButtons ...
1
vote
1answer
49 views

Generics and class conversion

I'm trying to generify old code, and there is some code where, given something like Integer.class, it returns Integer.TYPE (and vice-versa), and so on for the rest of the wrappers (if the input is not ...
0
votes
1answer
75 views

Unchecked checkboxes gets posted

I have a form with checkboxes: <input class="checkbox" type="checkbox" name="exc[57]" value="57" checked> <input class="checkbox" type="checkbox" name="exc[51]" value="51" checked> When ...
0
votes
4answers
141 views

TreeMap generic argument warning

Map<Date, Integer> m = new HashMap<Date, Integer>(); // line 1 Map<Date, Integer> sMap = new TreeMap(m); // line 2 Line 2 gives this error: Type safety: The ...
5
votes
1answer
186 views

Good practices for Java exceptions handling [closed]

I have some questions regarding handling exceptions in Java. I read a bit about it and got some contradicting guidelines. Best Practices for Exception Handling Let's go through the mentioned ...
4
votes
3answers
155 views

Exception Handling in a gui applicaton

I'm a little lost on how to handle unchecked exceptions in my GUI application. I e.g. have a function that saves a company newly created by the user in a (embedded) database. The function for saving ...
-1
votes
5answers
132 views

java force developer to handle unchecked exception

Is there a way to developer user to handle all unchecked exception in the code so that code would not compile until all unchecked exception are handled? I would like to force user to handle exceptions ...
2
votes
2answers
591 views

Intellij Warning - Generic Unchecked Assignment [duplicate]

Possible Duplicate: Java Generics, how to avoid unchecked assignment warning when using class hierarchy? Intellij is giving me the warning below. Not sure how to resolve it, or even if I ...
0
votes
1answer
181 views

Java generics: array creation, typecasting and unchecked warnings

I have following code, which is supposed to test different sorting algorithm implementations (& teach me generics) with arrays of different number types (Integer, Long, ...). Although I've gotten ...
0
votes
4answers
531 views

jquery check and uncheck all with action

I have more checkbox input that call function "boxclick" when the user click on this: <input id="1box" type="checkbox" name="selected[]" onclick="boxclick(this,'1')"> <input id="2box" ...
0
votes
1answer
132 views

Why is my code causing “unchecked or unsafe operations” warning being flagged by compiler?

My java compiler is complaining that my code uses "unchecked or unsafe operations". Any idea which lines are causing that in the two code snippets? @SuppressWarnings("unchecked") private final ...
2
votes
2answers
65 views

whether “throws UncheckedException” makes any sense

I was studying the Exception chapter in java and wondering if it does any good to put some throws UncheckedException after a method signature. I can see that with checked exceptions that kind of a ...
0
votes
1answer
302 views

Get unchecked items in Listview with MultipleChoice

Sorry for the silly question. I know how to get checked items from ListView (MultipleChoice) with a SparseBooleanArray. But how to get the unchecked items?
12
votes
1answer
240 views

Why does `Some(123).isInstanceOf[Option[List[String]]]` *not* give an unchecked warning?

When using .isInstanceOf[GenericType[SomeOtherType]], where GenericType and SomeOtherType are arbitrary types (of suitable kind), the Scala compiler gives an unchecked warning due to type erasure: ...
-1
votes
1answer
254 views

Android: My CheckBox “checkAll” don't update the checkbox item of my ListView

My situation: an activity with a button, a checkbox checkAll and a custom ListView with image,name,surname and checkbox Problem: when i click on checkAll, the listView doesn't update the vale of each ...
0
votes
2answers
129 views

All RuntimeException / Un-checked exception advocates, how would you handle this scenario?

Scenario: For a web-site which requires registration based on user id, the user id must be unique. Lets say a user has attempted to register with 'foo' user id, which already exists (with other ...
0
votes
1answer
82 views

what is Abstract Window Toolkit Error in java ,and what could cause that error? [closed]

what is Abstract Window Toolkit Error in java api doc ,and what could cause that error?
3
votes
3answers
290 views

Scala: where to put the @unchecked annotation in a foreach

I have the following: samples.sliding(2).foreach{case List(a, b)=> printf("%x %x\n", a.value, b.value)} I know that the single 'case' will match all the possible values but I get a 'match is not ...
2
votes
2answers
584 views

Fix “unchecked conversion found” warning in Java?

As a project for university, I am writing a Java program that takes classes derived from a Player class and stores them in a Club class. The Club is a cricket club (hence the variable/class names). ...
3
votes
4answers
107 views

Trying to Assign a Large Number at Compile Time

The following two operations are identical. However, MaxValues1 will not compile due to a "The operation overflows at compile time in checked mode." Can someone please explain what is going on with ...
0
votes
2answers
471 views

HtmlInputCheckBox in Repeater always not checked

i'm using a HtmlInputCheckBox in a repeater by adding <input id="CheckBox1" type="checkbox" runat="server" value='<%# Eval ("userid") %>' /> to repeater->ItemTemplate->table->tr->td ...
0
votes
1answer
782 views

Jquery - Removing class on CHECKED/UNCHECKED RADIO BUTTONS

It's been 5 hours since i'm struggling with this, i searched up and down overhere. I'm trying to change the TABLE CELL BACKGROUND that contains a CHECKED RADIO. I manage to add the background class ...
0
votes
3answers
847 views

How to avoid unchecked cast warnings with Java Generics

Somehow my old question was closed, so I open a new one: I am using Java Generics to implement a generic bidirectional Hash Map out of an SQL Query. It should be able to map any combination of ...
2
votes
3answers
1k views

CheckBox gets unchecked on scroll in a custom listview

I know that this question has been asked over and over again but still I've not been a able to find a suggestion that really helps me. The checkbox is unchecked whenever the list is scrolled down. Yes ...
-1
votes
3answers
3k views

How to select unchecked input type checkbox with jquery

I have some a table in which i have rows with same id and other rows with other same id. Every row has a checkbox and i want to change the backgroundcolor of all the unchecked checkbox inside all rows ...
0
votes
2answers
3k views

How to check if a checkbox is unchecked?

I know I can use :checkbox:checked to get a list or an array whichever you'd like to call it with all the checkboxes which are checked. But is there a function to get an unchecked list? (like ...
0
votes
1answer
6k views

Checkbox checked or unchecked boolean php mysql

I am trying to make this form with checkboxes get values 1 or 0, sort of a boolean, and UPDATE it on mysql, but I havent found a way yet. Maybe you can help. I'll post the form and the code that ...

1 2 3