0
votes
2answers
43 views
C# Custom Events with Overloads
So I have a custom event like this:
Work w = new worker()
w.newStatus += new worker.status(addStatus);
w.doWork();
void addStatus(string status)
{
Messag …
1
vote
3answers
31 views
hibernate post initialization
I would like to initialize class members of a persisted object as soon as Hibernate loads the object from the database.
How can I do this ?
More specifically: In the following pe …
0
votes
1answer
26 views
Custom Collection extends List<T> Add method
I want to create a custom collection and add my own custom Add method.
Scenario:
Teacher.Students.Add(Student s)
I want to put LINQ methods to save the teacher/student relations …
0
votes
2answers
22 views
MySQL custom engine: already existing data.
I'm currently exploring if a custom MySQL engine could fulfill my needs. I've been looking at http://forge.mysql.com/wiki/MySQL_Internals_Custom_Engine. One thing I wonder is: can …
0
votes
0answers
42 views
ASP.NET Server Control based on RadComboBox - Postback issue
I am trying to create a custom control that extends the RadComboBox from Telerik to create a Dropdown Checkbox List with default templates. The plan is to use the control in sever …
0
votes
1answer
38 views
iPhone app - some custom UITableViewCell questions
Hi,
At the moment, I have a settings view in my iPhone app built with Interface builder, it consists of a background image, some text fields, labels and buttons. Because this look …
-1
votes
1answer
16 views
How to Show Custom options on Homepage
Hi
i want to display product and its custom options like size, colour on home page. how should i do that?
i want to allow my customer to add product directly from home page by p …
0
votes
1answer
15 views
Sharepoint Document Upload Page - Passing URL Variables?
Throughout my SharePoint site, I have several document repositories that are tied to primary keys from an external database. I have added custom columns in the document library me …
0
votes
0answers
12 views
ActiveRecord custom insert/update query
I'm using PostGis to store some spatial data. I used ActiveRecord to retrive data from db, and I used [Property (Formula = "asbinary(shape)")] on property where geometry was stored …
1
vote
3answers
55 views
iPhone UITableView PlainStyle with custom background image - done “entirely” in code.
Hi
I have been all over the place, seems the UITableView with a static background issue is well documented, but no one with a straight forward solution?
Im building my TableViews …
0
votes
2answers
30 views
Newbie question on Flash video players, products/SDKs, and API.
Hello,
I'm a C programmer and a total newbie to Flash/video/web world. Don't know where/how to start, and so would greatly appreciate your initial help.
Question
If I need to ho …
1
vote
2answers
18 views
Best Method for Connecting to Custom XML Web Service in ASP.NET?
What is the best way to work with/consume custom XML web services in ASP.NET? The web service in question was developed quite a few years ago. It works by POST'ing the XML to a s …
1
vote
2answers
181 views
customize callout bubble for annotationview?
I'm currently working with the mapkit and am stuck.
I have a custom annotation view I am using, and I want to use the image property to display the point on the map with my own ic …
3
votes
3answers
75 views
C# iteration requesting scenario based example
I am dropping this line after having visited different websites to try understand real time
example of using custom enumeration.I got examples.But they lead me to confusion.
Exam …
0
votes
4answers
87 views
Point of need of custom Enumerations
When reading a post some points were given without example :
To implement IEnumerable / IEnumerable, you must provide an enumerator :
•If the class is "wrapping" another collec …
