Tagged Questions
The bound tag has no wiki summary.
13
votes
1answer
286 views
C# Language: generics, open/closed, bound/unbound, constructed
I'm reading book "the C# programming Language", 4th Edition, by Anders Hejlsberg etc.
There are several definitions that are a bit twisting:
unbound generic type: A generic type declaration, by ...
4
votes
3answers
86 views
bound check for iterator in Release mode (c++)
I intentionally made iterator to exceed the size of std::vector like,
for (std::vector <Face>::iterator f = face.begin();
f!=face.end()+5;
++f)
{
// here I try to ...
3
votes
4answers
212 views
How to find instance of a bound method in Python?
>>> class A(object):
... def some(self):
... pass
...
>>> a=A()
>>> a.some
<bound method A.some of <__main__.A object at ...
3
votes
1answer
3k views
WPF Treeview HierarchicalDataTemplate Drag and drop
I have a treeview in wpf that is built using the xaml below. It is a well structured data source, and I am having a lot of trouble dragging and dropping. I have tried several methods, all to no avail. ...
2
votes
3answers
47 views
Behavior of increment operator at bounds for char type
I wonder how C++ behaves in this case:
char variable = 127;
variable++;
In this case, variable now equals to -128. However did the increment operator wrapped the value to its lower bound or did an ...
2
votes
0answers
94 views
Scala by Example - trait type parameter with context bounds mistake?
Reading the Scala by Example book and there is this example when Martin explains type bounds on page 54:
trait Set[A <: Ordered[A]] {
def incl(x: A): Set[A]
def contains(x: A): Boolean
}
and
...
2
votes
3answers
155 views
In Java, Type Variables' bounds can only be present in the Type Variable declaration, right?
Type Variables' bounds can only appear in the declaration of classes, interface, methods and constructors?
Or can I bound a type variable when they are used as type arguments?
Edit:
Example:
class ...
2
votes
1answer
94 views
Setting Upper Bound for a Number in JFormatterTextfield in Java
I want to set upper bound for a number in formatter textfield. Let's say that there is a string which has following format:
036 12' 23.67"
The first number must be less than 180, so when the user ...
1
vote
1answer
252 views
(iphone) set subview's frame outside of superview's bound?
I noticed that I can place subview outside of superview's bound (either partly or fully).
I wonder if that's acceptable, since it seems to be abnormal in usual iphone view programming.
Thank you.
1
vote
2answers
226 views
Dynamically bind mysqli_stmt parameters and then bind result (PHP)
I'm trying to dynamically bind mysql_stmt parameters and get the result in an associative array. I've found this post here on stackoverflow where Amber posted an answer with the following code:
...
1
vote
2answers
219 views
Branch and bound implementation
I've been working on this problem, and I can get some results, but I'm having trouble implementing the branch and bound method here.
Can you guys help me?
Building Warehouses
Description
...
1
vote
3answers
873 views
About error using Java generics: “type parameter S is not within its bound”
I am writing some classes using Generics but I can't find a solution
for the class SolutionsSubset and so I a getting the error
"type parameter S is not within its bound". I have read previous
...
1
vote
2answers
165 views
What is a bound variable?
There is a cffunction (in a cfc document) which authenticates a user. It references a stored procedure and has a cfprocparam which is of type "out". On the Adobe CFML reference it says that means that ...
0
votes
1answer
34 views
Compare (lg lg n)^5 with n^(1/3) [closed]
This question asks if (lg lg n)^5 is ϴ, o, or Ω of n^(1/3) and provide an explanation. I don't know how to tackle this problem. Any suggestions?
Thanks.
0
votes
1answer
62 views
Android: How bound Service can be noticed about killed client?
I have an Activity and Service bound to it.
If Service is killed by system, Activity is noticed about it because of ServiceConnection.onServiceDisconnected(ComponentName) will be called.
But when ...
0
votes
2answers
63 views
How to late bound WPF ComboBox using ObjectDataProvider
Suppose we have a WPF ComboBox and want to populate it using ObjectDataProvider.
<ObjectDataProvider ObjectType="{x:Type provider:DataProviderProxy}" x:Key="BLDataProvider">
...
0
votes
0answers
40 views
Displaying Negative Coordinates in Objectice C. setClipsToBounds:False doesnt work?
If I want to draw shape with negative coordinate in Objective-C. How can I stop the frame from clipping the view? I tried to setClipsToBound to FALSE already and it doesn't work.
- ...
0
votes
0answers
13 views
comparative merits: SwingWorker/“bound” properties
I'm quite a fan of SwingWorker (for non-trivial processing, with a GUI)... publish/process chunks.
But equally, if you want to make an object in a non-EDT thread come to the attention of the EDT you ...
0
votes
0answers
139 views
Pre-select items on data-bound cascading dropdown lists in ASP.NET page
I have the following problem:
On a ASP.NET page, say books.aspx, I have three dropdown lists: ddlBook, ddlChapter, ddlPage, one listview lvPageContents and four sql datasources dsBooks, dsChapters, ...
0
votes
1answer
44 views
Reference and Bound Object
I read in Lippman et al that there is no way to rebind a reference to a different object (p59)
It sees to me that the code below does just that and doesnt produce any error in VC Express 2010
Can ...
0
votes
3answers
605 views
Delete currently selected bound combobox item and then have it select nothing?
How can I make a combobox select nothing (ie. SelectedIndex = -1) after deleting the bound item that was currently selected. I don't like how the next item gets selected after the currently selected ...
0
votes
1answer
163 views
Unable to apply dataformat string to Bound columns of datagrid generated dynamically
following is sample code i am trying to make work.
i want to apply formatting to datagrid column "price" i want price to be shown in currency format
Dim bColumn As BoundColumn
bColumn = New ...
0
votes
1answer
74 views
jquery in bound cfm
I have implemented this filter in a table
http://www.coldfusionjedi.com/index.cfm/2007/8/3/Simple-FIlter-as-you-type-ColdFusion-8-Demo
There is also a button in the outputted table that calls a ...
0
votes
2answers
446 views
WPF: ContextMenu item bound to a Command is enabled only after invoking the command from another source. Why does this be?
I have a ContextMenu whose items are all bound to commands and enable\disable correctly after ANY Command is invoked from another source but prior to, they are all disabled. So if I run the app, all ...
-1
votes
0answers
36 views
Android - sending data back to a service?
I have created a service for my bluetooth connection. This service reads the incoming DataInputStream and then sends the messages back to the UI. The Data received is sensor data from a robot I have ...