Tagged Questions
The customclasses tag has no wiki summary.
2
votes
5answers
95 views
Java - How to create a println/print method for a custom class
I'm working in Java on a project that requires me to make a few 'container' classes, if you will. Here is a simple version of one:
public class Pair{
Object KEY;
Object VALUE;
public ...
2
votes
1answer
48 views
Use Non WCF Custom Class in WCF
I have a WCF service hosted in IIS. The intention is for clients to make a call and receive a custom class, which is not defined as WCF class and is defined in another project/dll. How could I do ...
2
votes
3answers
131 views
Difference between C# and VB.Net custom classes
I have been out of VB.Net way too long, I have a custom class in C# that needs to be converted to VB.Net and would like to know the main differences between them. Certain things in C# I cannot seem to ...
2
votes
4answers
138 views
Can't understand why I'm not being allowed to subscript this vector
The code I'm trying to run:
std::string genBlankName(std::vector<Post> &posts)
{
std::string baseName = "New Post ";
int postNum = 1;
for (std::vector<Post>::iterator ...
1
vote
2answers
149 views
Codeigniter libraries - Error loading custom classes
I am unable to load my custom class which doesnot extend from any core class.
I have placed my custom class in a subfolder inside application/libraries.
So here is my folder structure
application
...
1
vote
1answer
326 views
hashmap custom class key && object saving/loading
Been working on a project for a while now and I've come across a few different complications and solutions that don't seem to pan out together.
final public class place implements Serializable {
...
1
vote
2answers
170 views
How can one implement a custom string class using the STL?
In C++ - The Complete Reference, the author gives us a challenge after showing how he implements a custom C++ string class. Excerpt from the book:
A Challenge:
Try implementing StrType (the ...
1
vote
1answer
146 views
NSColorWell: Embed? & Detect Change?
I have been looking at how to use the NSColorWell in my app, but there doesn't seem to be much documentation on it.
Two questions concerning it:
Is there anyway to embed a colour picker (such as ...
1
vote
2answers
109 views
performance comparison in custom c++ render system. calling render function for different classes
I have this library in which there is a general display list for elements of different types, for each loop of the system, this display list is rendered by calling a render() method on every object ...
1
vote
2answers
422 views
Trouble creating a map with vector as key and custom class as value
I have created the abstract class below to evaluate a board position of simple games. The abstract class is overridden by each derived class so that only the evaluate function is defined in game.h
I ...
1
vote
1answer
99 views
as3 - how to add multi custom class into one asset?
I'm a new mem of as3. Today i make a work but i was stacked. pls help me:
My example:
• I have a Symbol in Library with linkage name: box_mc
import flash.display.MovieClip;
import ...
1
vote
3answers
183 views
Why I cannot get correct class of a custom class through isKindOfClass?
I've created a custom class AnimalView which is a subclass of UIView containing a UILabel and a UIImageView.
@interface AnimalView : UIView {
UILabel *nameLabel;
UIImageView *picture;
}
...
1
vote
2answers
627 views
override a class/add properties to a ListviewItem (vb.net)
I have a listview but I would like to add 3 properties (for example one of them is "image") to the listviewitems in it.
I was fine with making a custom class with the 3 properties and just inheriting ...
1
vote
3answers
303 views
getting the name of a class through an instance of that class
I have a function that takes as parameters 2 instances of a (custom) class. But they can each be one of several classes, and I need to then call another function based on what type they are. I'd like ...
1
vote
4answers
2k views
AS3: Accessing custom class public functions from a MovieClip on a timeline
I've got a AS3 program with a Main.as custom class.
In this class I load an instance of a 'menu' movieclip which has simpleButton instances inside... How do I access the Main class public functions ...
0
votes
6answers
49 views
AS3 Cannot access stage from custom class
How can I access the stage and especially the width and mouse position of the flash Movie from a custom class?
package classes
{
import flash.events.*;
import flash.display.*;
public class ...
0
votes
0answers
46 views
Introspection of custom classes [closed]
I was wondering about how to use introspection for custom class in Objective-c.
I have my custom class (Let's say "MyClass") and I want to write something like this :
id element;
..
if ([element ...
0
votes
1answer
34 views
Flex 4 standard practice for Custom Class creation and Skinning?
I have a basic app I'm creating with a Top Nav button Bar a bottom button Bar and a Viewstack for content in the middle. The catch is the content, and skins are completely dynamic based on XML I'm ...
0
votes
2answers
216 views
AS3 / Flash - Add event listener in custom class of a button - Error 1061
as3 Newby here :)
Im getting an error whilst trying to add an event listener to a class of a Button on my stage.
1061: Call to a possibly undefined method addEventListener through a reference ...
0
votes
1answer
97 views
Winforms Data Binding to Custom Class
I am trying to bind some Winform objects to a custom class, more specifically an instance of my custom class which I have added to the Form in the code. C#, .NET 2010 Express.
For example, here is a ...
0
votes
0answers
88 views
Create and use a custom Xcode Utility class
I have this code in a method that plays a sound file called Mysound.wav:
-(void)Playsound{
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = ...
0
votes
1answer
750 views
Custom UIButton(CheckBox) add responder to action iOS SDK
Hello forum !) Question is - I have custom UIButton class
CheckBox.h
@interface CheckBox : UIButton {
BOOL isChecked;
IBOutlet UIWebView *webview;
IBOutlet UIImageView *img;
...
0
votes
0answers
41 views
NSButton Color Fill Lag
I have mocked up part of my application (mac), where the user can paint into a grid, this is made up of NSButtons. On my iMac (27" i7) it runs a dream, with my custom class the user can drag the mouse ...
0
votes
4answers
204 views
ArrayList custom class as HashMap key
I want to store my data in HashMap<Point[], Double>. I used iteration to assign the data, but when I checked at the end, the number of elements is only 1. I have implemented hashCode() and ...
0
votes
1answer
107 views
Custom Classes in XAML give me unresolved tag errors!
I've created the following XAML, approximately (shortened for brevity):
<Window ...
xmlns:Models="clr-namespace:Project.Presentation.Models;assembly=Project"
...>
...
0
votes
1answer
588 views
How to make an iOS subview add itself to a view
I've created a "toast" style activity window class that I can add very simply by creating an instance of the class, then initiating it with the nib "toastView.xib" and adding it as a subview to the ...
0
votes
4answers
101 views
iphone - setting a property on another class
I have a property declared on a class:
.h
@interface myClass : UIView {
BOOL doStuff;
}
@property BOOL doStuff;
.m
@synthesize doStuff;
this class is a delegate of another one. On the other ...
0
votes
1answer
160 views
Rails 3 Custom Class Question
I am trying to create a separate model class for image uploading, which was previously in the object's controller. I also want to make it agnostic, so I can upload images using one class from multiple ...
0
votes
2answers
462 views
How to add the MPVolumeView via Xcode Designer?
I originally added an MPVolumeView dynamically on to a page...
#import "MediaPlayer/MPVolumeView.h"
.
.
-(IBAction) handleVolumeButtonClicked:(id) sender {
if (volumeView == nil) {
...
0
votes
2answers
156 views
PHP Array of Custom Class
I am trying to create a custom class and have an array of those objects and I can't seem to get it to work. Here is my code:
class NavigationItem
{
private $_filename;
private $_linkname;
public ...
0
votes
2answers
57 views
Custom Class - have to use new rather than overwriting. Why?
I have a custom Vector2 class and a variable named tempVect.
I reuse this throughout a game thread but originally I was just overwriting the new variables
tempVect.x = blahhere;
tempVect.y = ...
0
votes
1answer
276 views
Adding several datasource on same column in DataGridView
I'm working on VB .NET 2008.
Target: Bind dynamic datasource in a cell of a Windows.Forms.DataGridView depending on the selection in previous column. The grid must have 7 columns. If the selection on ...
0
votes
2answers
159 views
Best practices when accessing the attributes and methods of other classes
this is a best practices type of question. I want to access the attributes and methods of one class from another(maybe this is a bad practice in itself) and what i'm doing to achieve this is
class ...
0
votes
1answer
84 views
Help With C++ CLASS Definition
I have this bit of code:
int main()
{
String s1; // s1 == ""
assert(s1.length() == 0);
String s2("hi"); // s2 == "hi"
assert(s2.length() == 2);
cout << "SUCCESS" << ...
0
votes
4answers
165 views
Sorting a custom type array by a string attribute?
I have an array of a custom type that I want to sort by one of its String attributes. For some reason, the following code is producing wrong results. Could you point out where I might have made a ...
0
votes
2answers
90 views
Using local class in web service
I have a web service that accepts and returns a custom class. The problem is that the Form that calls the web service method requires instantiation of the webservice.myClass instead of the local copy ...
0
votes
1answer
151 views
Unable to access a primitive array inside a custom class from a UIViewController instance
I have made a subclass of NSObject that is meant to be the model of my application. The class has a few methods and on instance primitive array as such:
@interface Cube : NSObject {
int ...
0
votes
1answer
96 views
How to work with buttons in an extended movieclip class
Say I make a class that extends the movieclip class and this class has a number of buttons in it. This movie clip exists in an .fla and is linked to the class definition. How can I control the ...
0
votes
1answer
2k views
ObservableCollection<T> in Winforms and possible alternatives
Winforms .net 3.5 app. In my app I have a generic class that looks like so:
public class FilterItem {
public FilterItem() { }
public string FilterProperty { get; set; }
public bool ...
0
votes
1answer
633 views
Returning Custom Classes as IQueryable so doesn't have 'has no supported translation to SQL' error
I have the below call in my repository where I return IQueryable of Node (my business object class) then I have a filter function in my service layer which adds to the IQueryable call and filters the ...
0
votes
2answers
1k views
ASP.NET Listbox databound to List of custom objects. Does it keep the actual objects?
in ASP.NET,
I've bound a listbox control to a List of custom class (consisting of a TimeSpan and Int members).
the ToString() function just displays them both as a long string.
Now I want to save ...
0
votes
2answers
1k views
iPhone Custom Class / Object in Responder Chain
Ola Folks,
I am looking for strategies, best practices and solutions to adding a custom class to the responder chain. This came about because I realized I was handling touch events the same way in ...
0
votes
6answers
365 views
Data Binding on Custom Class
I'm trying to create a custom class that is based off of an XML file (using xsd.exe). The end goal of this class is to bind it to a UI element (probably a gridview or something like that - I haven't ...