13
votes
5answers
4k views
Creating a custom button in Java
Is there a way to make a JButton with your own button graphic not just with an image inside the button? If not is another way to create a custom button in java?
5
votes
2answers
225 views
Custom primitives in C#?
Apart from the questionable usefulness of this, I'd like to ask if it is possible to do something along these lines.
class MyPrimitive {
String value;
public String Value {
…
4
votes
8answers
234 views
Custom malloc() implementation header design
I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the First Fit Algorithm. …
4
votes
3answers
143 views
Custom event in jQuery that isn’t bound to a DOM element?
I'm curious if its possible to create a custom event in jQuery that isn't bound to a DOM element.
I greatly prefer jQuery to YUI but there is one thing in YUI that I like, which is creating custom …
4
votes
4answers
2k views
How to Stretch WPF Tab Item Headers to Parent Control Width
Is there a way, in XAML, to cause the tab item headers to stretch across the width of the tab control.
For example, I have three tabs, red, blue and green. I have a tab control with it's width set to …
4
votes
1answer
723 views
COTS vs. Custom / Build vs. Buy: Decision Tree and Best Practices
Background:
I work at a company with a large SAP investment, and we also have dozens of large .NET systems (mostly internally for engineering systems), and Java platforms (mostly for external web …
4
votes
5answers
486 views
What’s the best way to develop a custom logon/authentication system in ASP.NET
The website I'm developing will allow users to login at 3 levels.
Level 1 - Not logged in
Level 2 - They register their email address and receive a confirmation email, and login that way.
Level 2 - …
4
votes
7answers
558 views
Custom robotics for building an auto CD-loading arm
Where would you recommend that I find a company to develop or buy a CD/DVD loading arm similar to: http://www.dextimus.com/
Preferably programmable via USB but if I only can get one with a serial …
3
votes
2answers
74 views
Integrating a simple web server into a custom main loop in python?
I have an application in python with a custom main loop (I don't believe the details are important). I'd like to integrate a simple non-blocking web server into the application which can introspect …
3
votes
3answers
100 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.
Example
Take 1
class …
3
votes
4answers
161 views
Custom User CSS in PHP?
I would like to add a feature onto my site that would allow a user to choose between multiple styles. I am quite new to PHP but I'm guessing it would be able to be done. I've seen this feature on …
3
votes
3answers
229 views
WPF TextBox Custom Dictionary Support
Has anyone found a workaround yet for getting custom dictionary support working for the built in spellchecking on WPF TextBoxes/RichTextBoxes? We've been probing the spelling stuff with reflector …
3
votes
4answers
769 views
Java Swing custom text JEditorPane
I have a list of Objects (the model) that are constantly appended to (similar to a log file) and I'd like to display as rich text in a JEditorPane (the view). How can I glue them together?
…
3
votes
7answers
1k views
How do I call Initialize on a custom MembershipProvider?
Hi There,
I have read through all the related questions, but I still unable to get the right solution for some reason, something is not right on my side, but not sure what's causing it.
I have …
3
votes
4answers
278 views
Javascript - Trying to wrap my head around custom events
I'm trying to get my head around custom events. I understand how to register and trigger custom events. However, it seems like its not possible to register truly custom events. Everything has to trace …
