Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
290 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
2answers
133 views

(C++) Why is there no unsized Integer type? [closed]

So i've always wondered, Why does the STL not contain an unbounded Integer Data type? I feel like it's a data type whose purpose is similar to that of a string. Programmers would not have to worry ...
3
votes
2answers
127 views

ocaml null keyword: once but no more?

At the ocaml toplevel (version 3.11.2), this simple expression is giving me an error: # let a = [] in if null a then 0 else 1;; Error: Unbound value null I have just started learning ocaml from the ...
3
votes
4answers
4k views

unbound method f() must be called with fibo_ instance as first argument (got classobj instance instead)

i've just started leaning python, i'm trying to create a class and use a method i wrote in it. I already know PHP and i've studied a bit of C and C++ some time ago, so i know the basics. I wrote ...
3
votes
2answers
913 views

Python - TypeError: unbound method

So this Python problem has been giving me problems since I've tried refactoring the code into different files. I have a file called object.py and in it, the related code is: class Object: #this is a ...
2
votes
2answers
84 views

Is it possible to use an unbound type as a generic type parameter in C#?

I have a C# generic: public class Generic<TParameter> { ... } It does not appear that I can use unbound types as type parameters. I get error CS1031: Type expected when I try the following: ...
2
votes
1answer
139 views

Haskell: how can I use math functions like “logBase” to work with unbounded integers?

I'm trying to generate a list of Fibonacci numbers to compare with a list of primes (e.g.). Both lists begin at the first known fibo/prime number and end at the 10000th. The problem is: a graphical ...
2
votes
1answer
78 views

Cannot install Yorgey et al's “unbound” library with latest GHC/Haskell Platform

Has anybody managed to get Yorgey et al's "unbound" library, for working with syntax with binding, to install with the latest GHC (7.0.3) and Haskell platform? Trying a cabal install unbound, I get ...
2
votes
3answers
316 views

Unbound Variable on Function Name

I'm writing a program in Lisp(common lisp dialect).. I want the program to count the number of sublists in a list.. This is what I have written till now: (defun llength (L) (cond ...
2
votes
2answers
74 views

Python scope problems only when _assigning_ to a variable

So I'm having a very strange error right now. I found where it happens, and here's the simplest code that can reproduce it. def cause_an_error(): some_var = False def some_nested_func(): ...
1
vote
1answer
45 views

I Get an Error When I Leave VB.NET Datagrid Cell Value as Null

I get a 'Conversion from type DBNull to String is not valid' error when I proceed to insert the row with a null cell value from my program to MS Sql Server even if the column is already set to accept ...
1
vote
1answer
196 views

Add a column with fixed values to a ListView's GridView

I bound a ListView to a List(Of List(Of Integer)). I can specify the columns thus: <ListView ItemsSource="{Binding ResultsByDenomination}"> <ListView.View> <GridView> ...
1
vote
2answers
268 views

Getting data from an Unbound Service in Android

I currently I have an unbound service that is running continually grabbing my gps position that I start on boot. I then have an app that is suppose to plot where I've been by pulling data from the ...
1
vote
2answers
423 views

.net Can't edit values in Datagridview on Runtime

I created an unbound DatagridView which rows are input manually during runtime and are supposed to be editable. Using the command DataGridView->Rows->Add(string,..) it creates the row properly but it ...
1
vote
3answers
455 views

One (probably unbound) Access 2003 form to create multiple records

I've been recruited to work on a form for tracking specimens. Each specimen is associated with a subject; each specimen also has a particular slot in a 9 x 9 storage box. For ease of data entry, I ...
1
vote
7answers
3k views

python unbound method again

This gets me into difficult time (sorry, i am still very new to python) Thank you for any kind of help. The error print Student.MostFrequent() TypeError: unbound method MostFrequent() must be ...
1
vote
1answer
72 views

Unbound DataGridView issue

I am able to write to my unbound datagridview (VC++), but am unable to read back that same exact value. So I can do this: myDataGridView[0,0]->Value = 1 ; And this updates my display correctly. ...
0
votes
1answer
9 views

Runtime Exception while creating EJB Object

I have developed an application with Java 1.6, EJB-2.1. The application is deployed on JBossAS-5.1.0. The application has been running very smooth for long a time. But for last two days, I found ...
0
votes
1answer
53 views

How to make python function always unbound even assigned to a class attribute

Having the following code, what can I do with the 'foo' function to make it unbound in any case even if it is assigned to class attribute? Overriding __get__ doesn't help - as far as I understand ...
0
votes
1answer
33 views

Singleton method error from bind when called with the same metaclass

I'm writing aspect-ish code more or less lifted from the chosen solution for this question that looks like the following: class Module def add_logging klass, *method_names method_names.each do ...
0
votes
2answers
27 views

got “error: Error parsing XML: unbound prefix” in xml file

I understand others have asked this but I have followed their instructions but still get the same error message. Here is the xml file for tweened animation: <?xml version="1.0" ...
0
votes
1answer
24 views

I have an unbound datagrid and it should not permit the user to leave the cell being edited if the value is null

How do I do this? Or at least how do I validate the cell's value during edit? I've been using the CellEndEdit Event and using this code as its condition if dgvwCalibRef.Item("ReferenceValue", ...
0
votes
0answers
43 views

Unbound, editable, two-column grid for VB.Net?

I need to prompt the user for a few items, where key=value. I know I can configure the DataGridView control to display two columns, but unless I missed it, the DGV control is unable to compute the ...
0
votes
2answers
139 views

How to tell if my unbound service is running?

I have read the other threads about checking if a service is running but this is not working for me. My situation is that am creating a background web server service but not binding to it because I ...
0
votes
2answers
182 views

Unbound DetailsView Not Displaying in ASP.NET/VB.NET

In this project that I'm creating, I'm creating a mock-up of a page that uses a DetailView (something I saw in a blog) that seems to fit my needs. However, I don't want the data to be bound to ...
0
votes
1answer
767 views

DevExpress GridControl Unbound Columns

I would like to know how to properly add a unbound column into a gridview. I've added a unbound column in the designer (set the unbound type, display format and all) but whenever I run the ...
0
votes
2answers
57 views

Unbound DNS Default Response

Using the current SVN of the Unbound DNS resolver. I would like to have a configuration where it will hand back a default IP? IE opendns if you attempt to resolve nonexistentdomain.com it will return ...
0
votes
4answers
98 views

Unbound Local error in Python I can't shake!

http://pastie.org/1966237 I keep getting an unbound local error. I don't understand why it occurs, if the program is running right, it should go straight into the second assignment of the ...
0
votes
3answers
272 views

Python unbound method

I have two classes, the relevant code is shown below. The method get_pos is supposed to grab what the user inputs in the entry. When run get_pos in app, it returns with: TypeError: unbound method ...
0
votes
1answer
42 views

UnboundLocalError from imported class

I have some code that is structured as follows from my.modules import MyClass Class AnotherClass(object): def __init__(a): #line 5 if a: setup_a() else: setup_b() def ...
0
votes
1answer
292 views

Modify content of DataTemplate in code for a Grid control

I have the following Xaml for a grid and I want to be able to modify the value of the Content in code. I want to depending on the condition, not display the "[+]". How do I do that. Also how do i ...
0
votes
2answers
6k views

Android Menu XML : Error Parsing XML:unbound prefix (not xmlns:android ???)

<?xml version="1.0" encoding="UTF-8"?> <menu xmlns:android="https://schemas.android.com/apk/res/android"> <item android:id="@+id/options" andoid:icon="@drawable/icon" ...
0
votes
1answer
145 views

Python: How to call unbound method with other type parameter?

Python 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> class A(object): ... def f(self): ... ...
0
votes
1answer
778 views

Continuous Form, how to add/update records with external connection

EDIT After some more research I found that I cannot use a continuous form with an unbound form since it can only reference a single record at a time. Given that I've altered my question... I have a ...
0
votes
1answer
1k views

Python __init__ issue: unbound method __init__() must be called with Bank instance as first argument (got int instance instead)

class Teller(object): def __init__(self): self.occupied = False self.timeLeft = 0 self.totTime def occupy(self, timeOcc): self.occupied = True ...
0
votes
1answer
76 views

unbound grid for .net

can i have your opinion ? I want to develop .net winform application and i want to use fully unbound grid. Anybody ever use 10Tec iGrid.net and Xceed grid for .net ? which one is better ? Thank you.
0
votes
1answer
85 views

How to work unbound in VS2008 when the solution is

Scenario: Solution is bound The team prefers to work bound I want to work unbound. To that end, in Tools/Options/Source Control I set the current source control plug-in to None. However, when I ...