dynamic

Android: dynamically setting links to text in strings.xml

I'm trying to make an app with localisation built in, but I want a way that I can create a web link within the text, the URL being defined elsewhere (for ease of maintenance). So, I have my links in res/values/strings.xml: <?xml version="1.0" encoding="utf-8"?> <resources> ... <string name="link1">http://some.link.com&lt;/string&gt...

Can you change the location/endpoint of a dynamic web reference at run-time in .NET?

In a fairly standard fashion, I created a Web Reference to a SOAP service in Jira for an extension that I'm building (Jira is an issue tracker for those unfamiliar with it). Visual Studio auto-generates a .Settings file and an app.config that contains the web service URL. Since I'm developing an extension/plugin to an ALM product we're ...

Dynamic forms in zend??

hey, i'm stuck at a problem which is kind of similar to one that Erik asked about. I'm trying to create a dynamic form in zend and what i wanna do is that there should be a button which when clicked adds a new text box or any form element dynamically. now the problem is that i'm new to zend framework. i'm using 1.9.7 right now. i've don...

Displaying search results dynamically as use interacts with controls

Hi - I have a website and want to display search results dynamically meaning that as the user interacts with controls and selects options, the search results are populated in realtime - i.e. the user doesnt need to click the search button. The data is stored in a MySQL relational data base. Now I know this is likely to lead to a large ...

Defining XSLT Variables dynamically using xsl:choose

Within my XSLT spreadsheet, I need to define an xsl:variable with one value or another depending on the value of an xml node. The code just below shows what I'm trying to do. I would like to define multiple variables this way. A major issue is that in order to choose a variable value based on the node value of each item, the choosing mu...

how to get the arrow keys on the keyboard to trigger navigation (previous/next page) links within a blog

the script i've pieced together so far looks like this: <script type="text/javascript"> /* KEYNAV */ document.onkeydown = function(e) { if (! e) var e = window.event; var code = e.charCode ? e.charCode : e.keyCode; if (! e.shiftKey && ! e.ctrlKey && ! e.altKey && ! e.metaKey) { if (code == Event.KEY_LEFT) { if ($('previous_page_link')) ...

Django: Dynamic URL alias in templates

I am trying to use a template that contains a link such as this: <a href="{% url search query,page.previous_page_number %}">previous</a> I am trying to use it in multiple contexts; in other words, the URL alias "search" needs to point to a different target, depending on the view that renders the template. Is there a way to pass such ...

Dynamic allocation of memory

Lets consider following two codes First: for (int i=0;i<10000000;i++) { char* tab = new char[500]; delete[] tab; } Second: for (int i=0;i<10000000;i++) { char tab[500]; } The peak memory usage is almost the same, but the second code runs about 20 times faster than the first one. Question Is it because in first code ar...

C# 4: Determining parameter passing semantics in dynamic calls

In C# 4, when deriving from DynamicObject and overridding TryInvokeMember, how can one determine whether any parameters supplied at the call site have been passed with out or ref semantics? I can see some private fields in the supplied binder that contain this information (namely the Microsoft.CSharp.RuntimeBinder.ICSharpInvokeOrInvokeMe...

WordPress: Create a Dynamic Filter Showing Posts of Numeric Value

Working in WordPress here. As you may know, all of the typical solutions for displaying upcoming events in WordPress are awful, so I'm accomplishing it with simple custom fields. Each event the user will enter they will enter a Numeric date "YYYYMMDD". What I need to find out is how to code in PHP for the script to first get php:the...

dylib for iPhone 3.1.2 is too short, wrong cputype/cpusubtype.

I've been trying to compile a dylib to use in a little prototyping experiment however dlopen() says that my dylib is Mach-O but that the file is too short. Should it be padded with something? I have the latest everything so that shouldn't be a problem. lipo spits this out when I try to merge the i386 and armv6 arch's together: lipo: s...

Flash Catalyst dynamic object creation

With flash catalyst is it possible to specify a general object form and get it to place as many objects on the stage as there are in the library? or does one has to use flash builder for that? ...

Dynamic parameters for where clause in a typed dataset possible?

The normal ASP.NET TableAdapters are good for simple where clauses, for example - "where city = @city and state = @state and zip = @zip" But how do I design a DAL that allows me to use any combination of the parameters - "search only by city" or "search by zip and state" or "search by city and state".....or even more complex "search by ...

ASP.NET Custom user control to add dynamically

I have hard time to modify a page that had a Custom User Control directly to the ASPX page and now require to have it dynamically loaded when needed only. The User Control does have html and other controls via the ASCX file and has code in the code-behind. I have read multiple page and have found that I cannot instantiate directly the U...

Selecting and Setting Style to DataGridColumn after passing the DataProvider

I have a Datagrid thats being populated by different Arrays... (headers/columns change for the same DataGrid)... I would like to Select a Column of the Datagrid after it was generated by the Dataprovider and Bold it, and place it as the 'last column" This is what I have.... and throwing an error: private function populateGrid(evt:Obje...

JavaScript DOM dynamc Form from PHP

Hi! My MySQL Database Provides A List of Items (and integer IDs with them) in a <select> and a qty field for usage on my web form (with style display: none so it is hidden). But: I want the user to be able to select how many choices of this type he wants to enter in the form - how can I dynamically make multiple selects? Example: The p...

how to grow a dynamic array of char pointers (in C++)?

I am trying to work with an array of char pointers. Let's say I dynamically declare such an array like so: int numrows=100; char** array = new char*[numrows]; And then I populate it by using getline to get strings from a file, converting the strings to char arrays, then setting a pointer in my array to point to said char array l...

Dynamic lib(rary) in Eclipse for NON-Dynamic Web Projects

Is there a way to add a dynamic library folder to a plain Java project similar to WEB-INF/lib in a Dynamic Web Project? I mean, can I specify a simple folder, let's just call it lib, and have Eclipse monitor it for any library jars I might want to add or remove. Currently I only know this behaviour from the Web App Libraries where any ...

RUby on Rails nested dynamic fields

Hi guys! I have a problem to find the right way to program dynamic fields. For example: I have two radio buttons and depending on how the user selects one radio button, it extends the form with different fields. Start form: - Radio button: car - Radio button: ship - Text field: name If the user clicks on the radio button "car" the for...

Adding extra input fields when I need them

I trying to create an HTML/CSS/JavaScript based list manager. I'm using text input fields as my individual list items, with the first text input field being: <input type="text" id="input1" value="Enter your first item" /> I'm using jQuery to create a new text input field if I've used the previous text input field: <input type="text"...