A general solution for providing modular setting system [closed] - dynamic

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
We are planing to provide a general setting(configuration) system for a single page web application base on asp.net and SqlServer , we need a dynamic modular setting(configuration) which it can apply settings in a hierarchical way for any part of any module for example consider we have a difaultCityCode for each user and if the user didn't provide the value for that it should be retrieved from the user's portal and if the portal either didn't have the value it should be retrieved from the highest level in the hierarchy called SystemSetting.
we need to know if there is a clean and reliable solution for such a system?
Best regards Matthew

I found my answer after saw lot of systems.
All of them use dynamic system module but none of them didn't have a hierarchical method to save data.
Sometimes setting is not a value it's a list or etc, so I build o module to save and load value setting for any entity of my project and for some setting that i can't use this module I have to use any method.
And also for hierarchical problem I save setting hierarchical and then use them hierarchically.

Related

how to get this interface using vb.net? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
i need to find this interface in visual studio using vb.net to use it as a booking tool for an hotel booking project.it's used select a square and show the booking form
and to show select the number of square according to the number of booking days
it's the green part in this picture
That's not one of the standard .Net controls, so you'd either need write it yourself, or buy it (if you can identify the vendor).
It looks like a 3rd party (Telerik or similar) who has controls built for this type of thing. It might be the quickest to get you up and running, but it comes with it's own issues - like not finding the support you need.
You can however put in some effort and use a default grid (recommended). This can be manually styled and adjusted to get the behaviors to the point where you need it to be (WPF exposes all you need).
Hope this helps.

Looking for API (or solution) for generating PDF from online designer? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Working on building out a Web2Print product I need some kind of editor that will allow a user to manipulate graphics and ultimately generate a PDF. There are plenty of HTML 2 PDF APIs available but I was hoping someone might have experience with something a little more integrated and suited for dealing with graphics/fonts/text?
In PHP the best opensource option is TCPDF http://www.tcpdf.org/
I wanted to answer this and update everyone on the solutions that I found. Through the Magento extension store I was able to find several commercial (although still very reasonably priced) solutions:
http://www.zetaprints.com/ and http://layoutbuddy.com/ look like the most full featured and supported (as well as no up-front licensing.)
Thanks for all of the responses!

Is there a GUI tool for MacOS that allows to print labels from SQL databases [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for a GUI tool on Mac which allows users to browse contents of a relatively simple SQL database (only 2-3 tables) and which allows them to print selected records in a specific layout on labels.
This database ran previously on MsAccess and we would like to have it as SQL. However, non IT-professionals should easily be able to print those labels.
If anybody knows a tool for this (except filemaker), please let me know.
Thanks a lot,
Philipp
I would suggest OpenOffice for a "mailmerge" like label printing.
If You need a more robust "report" oriented solution You can take a look at jasper reports and ireport both have release for OSx.
http://community.jaspersoft.com/
http://community.jaspersoft.com/project/ireport-designer

How to tell if an app is using Okuma API [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a simple way to tell if an app is using the Okuma API. There are several applications running on a control and I don't see any indication. I've tried renaming the Okuma API dll's and I can make some of them crash by not being able to find them but that can't be the best way.
I'm writing my own app too, I want to follow the standard. Is there any built in splash screen or standard way to show an app is using the API? (Something like Intel-Inside but Okuma THINC Inside, etc) I've tried searching for the Okuma logos and I see several different versions being used but none that signify anything about API and none that really look standard for indicating API usage.
At this time there is no official logo for the purpose your describing.

Lua COM Programming [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Anyone know of any examples that shows COM programming via Lua? Could require a library.
I need to write some external scripts for Photoshop, so wondering if it's possible with Lua.
Have a look at Lua for Windows. It contains LuaCOM. I haven't tried it myself, though.
As gimpf said, take a look at LuaCOM. You can either get it from its official site, which is the latest version (1.4). Unzip it somewhere and take a look at the folder "Demo", which includes examples for:
ADO
Powerpoint
SAPI (Speech API)
WMI
They are more like test cases than examples but you can get the idea.
You can roll your own system using CInvoke and some custom C/C++ code combined with Lua meta-tables.
http://www.nongnu.org/cinvoke/
From experience though I can't recommend this, it is pretty complicated and requires a lot of effort to get it right and make it bulletproof.