While I like programming in C++, I hate the idea of:
std::basic_string vs QString vs wxString vs .............
Doesn't the standard string class satisfy the needs for these frameworks? I mean what is wrong with the standard string class?!
Just to emphasize, that below is the important question:
Do you learn "the" string class of the fra...
I'm in the process of implementing an ultra-light MVC framework in PHP. It seems to be a common opinion that the loading of data from a database, file etc. should be independent of the Model, and I agree. What I'm unsure of is the best way to link this "data layer" into MVC.
Datastore interacts with Model
//controller
public function...
I am an XCode novice. I am trying to follow these instructions:
http://wiki.remobjects.com/wiki/Linking%5FCustom%5FFrameworks%5Ffrom%5Fyour%5FXcode%5FProjects
Clearly I am missing something because while I can see that the framework I want has been copied into the app bundle, I can't reference it.
When I start the application from...
If my site has several user roles say Admin, User, Manager and there are several modules of functionality that may be used by one particular user or by all users how should I go about naming my controllers?
Is it OK to have role based controllers such as an Admin, User and Manager controller as well as controllers for shared functionali...
I have come across the following mobile development frameworks, that are either open source, commercial or both. Are there any other tools similar tools available other than the ones listed below?
J2ME Polish
MoSync
SAP NetWeaver
...
Hi,
My colleagues and I have some misunderstandings about the .NET runtime. I've written a WPF application (targeted for 3.5) that randomly crashes, and in the event log, we see .NET Runtime 2.0 Error Reporting as the source.
Just to confirm:
3.5 still runs on the .NET 2.0 Runtime (i.e., it's an extension of it), so an application...
Ok, I am creating a document-based application in Cocoa and the document's file type is actually a package. Within that package is an XML settings file, a SQLite database and a zip file which is downloaded at runtime. Now the only thing that changes, really, is the XML settings file as the other ones can be recreated at run-time.
Each...
I'm now with a idea to start the development of a bare bones Qt/GTK+-like framework, but I want to know some things before I start the creation of this project:
What is the structure of GTK+ and Qt?
Do I need to develop a window manager to build my own framework?
Some resources to start?
...
For example, if I created a framework that put together Ogre3D with RakNet and OIS, and I only wanted to have to distribute my framework for recompilation, is that possible?
I tried doing something like that, but I was getting linker errors. That would seem to suggest that you can't do that (and that's fine), but I want to make sure I'm...
Searching the site didn't help, so if anybody has good tips for getting up to speed with Cairngorm?!
I have to make an ultra quickstart on this framework, since I have to dive into an existing project ASAP.
Any help is much appreciated!
...
Let me clear with my Question, I have say 100 classes all these 100 classes implements 1 interface say IDependency, say suppose my classname is Customer it implements IDependency
public class Customer : IDependency
public class Order:IDependency
it goes on till 100 classes
And I am registering this class in web.config like
<type typ...
So, Generic views are pretty cool, but what I'm interested in is something that's a generic template.
so for example, I can give it an object and it'll just tostring it for me.
or if I give it a list, it'll just iterate over the objects and tostring them as a ul (or tr, or whatever else it deems necessary).
for most uses you wouldn't ...
Hi,
I`m starting a new website project, and I would like to hear your experience and recommendations for the correct tools to be used. I have no limitations, aka open source, commercial, languages, etc.
Website features:
User generated content
Administrator content managment
Custom API for frontal and 3rd party usage of the website c...
Can u please let me know the procedure as how create a Framework for iPhone?
Is there any seperate prodcedure to create a Framework in Xcode?
Thanks in Advance.
...
Is there a Java web framework that allows
the user to create custom fields, like in Mantis bugtracker?
http://www.mantisbt.org/wiki/doku.php/mantisbt%3Afeatures
Here's what I actually want to do:
Allow the user to create a template / form that has several custom fields
(textboxes, checkboxes, comboboxes, etc.)
Once a template has be...
I've heard a lot lately that SQL is a terrible language, and it seems that every framework under the sun comes pre-packaged with a database abstraction layer.
In my experience though, SQL is often the much easier, more versatile, and more programmer-friendly way to manage data input and output. Every abstraction layer I've used seems...
Would using a central "page handler" affect SEO negatively?
eg A page request comes in for www.mysite.com/index.php, which mod_rewrite passes on as www.mysite.com/handler.php?page=index. Handler.php gathers the page-specific includes, language files and templates, and outputs the resultant html.
My understanding is that the page handle...
I need to develop a Java mobile framework.
Where can I find some information about mobile framework design code?
...
Hi,
I'm making a small tool application that user can minimize in the taskbar. I'm sure I've seen a toolkit for it in some blog a few years ago. I'm basically just looking for a project template that perhaps has ready-made functionality for:
minimizing to taskbar
right-click menus
animated small notification pop-up windows (like MS Me...
Currently I am working with a custom business object layer (adopting the facade pattern) in which the object's properties are loaded from stored procedures as well as provide a place for business logic. This has been working well in the attempt to move our code base to a more tiered and standardized application model but feel that this ...