It didn't always do this, but ever since I split my database and made the front-end an ACCDE file, any time I try to compact and repair either file, a new file called "Database 1" is generated and my original file size doesn't change.
Is this normal?
My ACCDB is roughly 20MB, and my ACCDE is just over 1M after being used the first time. Before opening, the ACCDE was only 600k (I have lots of forms and queries, and regularly store PDF attachments.
I use lot of open source programs in my noncommercial applications. If I want to use them in commercial applications what care must be taken.
I know that if we do some modifications in source code we must submit it.
Do we need to submit all of our source code ?
Do we need to provide a link of the source publisher on application front end?
I created a few custom templates while modifying a theme (Acquia Prosper), and my usual practice is to put all my templates in this fashion:
theme-name/templates/page/page-front.tpl.php
But it didn't quite work this time. So I'm wondering why. I looked through the templates.php for a clue, but there is nothing there. My base theme where I used this organization was genesis, and in that theme it seems to work, but not in Acquia Prosper.
Can anyone shed some light on this?
I already have pdf links set up. I am just looking to prepend Google's syntax in front of my current href using jQuery. i know the following doesn't work, but I feel I am close…?
jQuery(document).ready(function() {
jQuery("a[href$=.pdf]").attr("href", "http://docs.google.com/viewer?url=" + current.href);
});
Can anyway help, please?
How can I programmatically force a mac window to be the front window? I have the window handle, and want to ensure that my window is displayed above all other windows. I can use both Carbon & Cocoa for this.
i wonder if large web applications like twitter and facebook have admin panels to handle CRUD for users, posts, images, themes and so on just like in CMS like drupal?
so programmers have to code the front for the regular users AND back for the administrators?
if i develop an web application is it recommended that i also code the admin part? or is it unnecessary since i can handle all directly in mysql and by editing php scripts directly?
share your thoughts!
thanks
I'm writing a shell for a project of mine, which by design parses commands that looks like this:
COMMAND_NAME ARG1="Long Value" ARG2=123 [email protected]
My problem is that Python's command line parsing libraries (getopt and optparse) forces me to use '-' or '--' in front of the arguments. This behavior doesn't match my requirements.
Any ideas how can this be solved? Any existing library for this?
Hi
Its been on the cards for a while, but now that Amazon have released Elastic Load balancing what are your thoughts on deploying this solution for a high-traffic web app.
Should we replace HAProxy or consider ELB as a complimentary service in front of HAProxy
Appreciate any comments or suggestions
Thanks
Dom
I have a form that is submitted via Ajax to a PHP script. Inside the PHP script I do a few checks for swear words.
How would I pass a 'yes' or a 'no' back to jquery from the PHP script so I can display some feedback to the user on the front end? In other words, a 'Thank you', or a 'Don't Swear!'
Thanks
Is this a realistic solution to the problems associated with larger .mdb files:
split the large .mdb file into
smaller .mdb files
have one 'central' .mdb containing
links to the tables in the smaller
.mdb files
How easy would it be to make this change to an .mdb backed VB application?
Could the changes to the database be done so that there are no changes required to the front-end application?
I know there's a way to capture a bitmap of a window in Windows without anything that may be obscuring it (e.g. you have a window with a dialog in front, but the dialog is not captured as it would be if you did a simple pixel grab), but I can't remember how to do so.
Also I believe this is only possible in Windows Vista and above, with the introduction of the compositing window manager?
Hi
I can't figure out how to add a space (say 3em) after the Exercise environment
. I don't want to do it manually for every exercise, but automatically, by using \addtolength
or redefining the environment or something.
For leaving some space in front of it I managed to come up with this:
\renewcommand{\ExerciseHeader}{\vskip 3em\centerline{\textbf{\large\smallpencil
\ExerciseHeaderNB\ExerciseHeaderTitle%
\ExerciseHeaderDifficulty\ExerciseHeaderOrigin\medskip}}}
Thanks.
I am totally confused with this openlayers map. Even there are many examples and wiki, i could not find how to reuse it. I mean i want to show my city map with managable by admin, admin can add points and locations and it should displayed in front end. Please please help me how to do it?
Our company decided to designate a contractor by adding an "X" in front of the employee number. But they aren't doing this in all systems.
Is this a dangerous thing to do and why?
I was asked by a client to create a bookflip (Page Turn) effect that did not require Flash. The imBookFlip plugin can load a book in an iframe or directly on the page. The book's pages can be set to turn when manually clicked only, begin auto flip (turn automatically) as soon as the html page loads, or begin auto flip when first page (front cover is clicked).
Why a popup created like this is shown in front of all windows applications with JRE 1.6.0_18 but it doesn't using 1.6.0_03 ?
PopupFactory popupFactory = new PopupFactory();
Popup popup= popupFactory.getPopup(null,new JPanel(),200,200);
popup.show();
I am using below code where , i want to show dialog in front and loading content in background but not able to do the same . Please advise.
dialog = ProgressDialog.show(this, "", "Loading. Please wait...", true);
runOnUiThread(new Runnable(){
public void run() {
setContentView(R.layout.main_layout);
dialog.dismiss();
}
});
Hi,
I want to detect if a window form is open and if it is then I would like to bring it in front rather than opening it again.
I know I need a form collection for this but I want to know if there is a built in form collection that holds all the forms in VB.NET or I need to implement my own.
Thank you.
i want to know how to store this è (this type of symbols) in xml file
if i store this symbol in xml file..
the file shows this symbol like ?
i was inserted in front of xml file is <?xml version="1.0" encoding="UTF-8"?>
but that doest not shows correct
thanks and advance
I need a nginx rewrite rule to rewrite from:
http://some-keyword.example.com to www. example.com/keyword.php?keyword=$some-keyword
while domain without www in front still rewrites to www.example.com and 'www' isn't taken as a keyword.
Please could you help me to solve this problem, how to write these two rules?
Silverlight has been available since quite some time, and Silverlight 2 allows .Net programming on the front-end. I've been thinking about the apps that I can make using Silverlight, but I can't decide if I should go for development in Silverlight because i am still concerned about accessibility and acceptance.
What potential do you see in Silverlight judging from the current trends, and what do you think Silverlight will be used for in the coming years?
I'm using the net.sf.json.JSONObject to create some data to be sent to a front end application, and I don't like the ways ts adding quotation marks to every field name.
For example:
myString = new JSONObject().put("JSON", "Hello, World!").toString();
produces the string {"JSON": "Hello, World"}.
What I want it to return is {JSON: "Hello, World"} - without quotes around "JSON". What do I have to do to make that happen?
Hi,
from front end application i am sending the value as 0.15 to data base (stored procedure) but it storing as 0 value . why ? please guide. I am usingf c# + asp.Net sqlserver 2008