Questions tagged [on-the-fly]

activities that happens or occur dynamically on the program runtime.

186 questions
0
votes
2 answers

Use unset result without defining a new array in php

I am trying to create a dynamic link, in this way: Take an array Search for the key of one element Delete this element Implode the array elements to a string Show the string as a parameter in the link I am doing it like it follows: …
Mark Tower
  • 549
  • 1
  • 5
  • 15
0
votes
2 answers

How do you create apps on the fly?

There are hundreds of sites now which allow you to create apps for iOS & Android on the fly. Am completely lost on how they are able to achieve this online. Are there any services which help compile the code? Can anyone help in giving an outline of…
Alec Smart
  • 85,672
  • 35
  • 115
  • 178
0
votes
1 answer

Is on-the-fly compiling in WinRt possible?

For a project I need to compile code on-the-fly in a WinRt-application. Almost nothing I can find on that subject. I've seen the CodeDom-namespace has sadly enough only one class, which I fear means a no to the question. So, is it still possible?
Lowie Huyghe
  • 265
  • 3
  • 16
0
votes
1 answer

JQuery datetimepicker change min/maxDate results in infinite loop

I'm using the datetimepicker from http://trentrichardson.com/examples/timepicker/ The problem is that I've got an start and end input field. I don't want that an user can pick an end datetime that is later then the start date field. The input fields…
Mathlight
  • 5,847
  • 15
  • 58
  • 103
0
votes
1 answer

How to create cross-module, on-thy-fly variable name in python?

What I am trying to do, is creating a module, with a class; and a function, which is an interface of that class; and a variable name on-the-fly in this function, which is pointing to an instance of that class. This function and the class itself…
Peter Varo
  • 10,078
  • 6
  • 42
  • 63
0
votes
1 answer

Creating links, and creating content for the links, on the fly, php

I have a index.php, it calls a function post_themes_front(), the function gets all the "posts" from the SQL database and creates all the content, including the links. Example: picture A links to www.index.com/picture_a_name code sample: while($row…
user2133593
0
votes
0 answers

How to: create executable from inside the c# program with variable content?

Here's the example of problem: I make an addition to SQL DB, and want my program at the moment, when I got positive response - to create an executable, which deletes entry based on it's GUID. Is it possible to create an executable from inside the C#…
Hikiko
  • 199
  • 1
  • 1
  • 12
0
votes
1 answer

How to recompile python code on the fly during pydev debug in eclipse

I am assuming that this question can be generic to pydev, but I have only used pydev in eclipse so I am not sure... In the past, I have accidentally done this and I would like to learn how to do it regularly: I was running the breakpoint debugger…
Pswiss87
  • 615
  • 1
  • 5
  • 15
0
votes
0 answers

cURL in PHP uploading a file created on-the-fly

I've a function that post a file: function post_file($url, $file_path){ $data['Filedata'] = "@".$file_path; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch,…
Geltrude
  • 1,063
  • 3
  • 16
  • 34
0
votes
0 answers

why does not eclipse PDT syntax checker underline undefined function? Missing on-the-fly code analysis in PDT?

I am using Juno - created a PHP project and having PHP perspective. when I run this code i got this: Call to undefined function: undefined_function() However, the eclipse PDT syntax checker did not underline the…
laplasz
  • 2,979
  • 1
  • 24
  • 35
0
votes
1 answer

Creating multiple select list options on the fly and reducing is subsequent select lists

I have been trying to solve the following problem for the last week or so, and after many searches around the internet, and on here, haven't found an exact solution for what I am trying to achieve. This is my first post on here, and decided to post…
Chris
  • 387
  • 6
  • 20
0
votes
2 answers

Download img created on the fly

I create img element with a jquery plugin. I would like to be able to click a button element and dowload the img element. Is it possible without HTML5? I do not store the image, cause it is created on the fly by jquery. i'm using this plugin to…
itsme
  • 45,343
  • 90
  • 210
  • 334
0
votes
2 answers

Create a Zip file on the fly and make it available for download in ASP.NET

I have an ASP.NET Web Forms application. Once the user clicks on a download link, I need to create several XMLs file on the fly, zip them and prompt the user with a download dialog. I already made the function to download a single XML file and it…
CiccioMiami
  • 7,439
  • 28
  • 82
  • 145
0
votes
2 answers

Programmatically setting a field inside a model in CakePHP

I'm trying to set a field on the fly inside a model, so it will get returned in my with any read action. I looked into virtual fields, but they're not quite right, since they basically execute SQL queries. In this example, I'm trying to return a…
Benjamin Allison
  • 2,076
  • 3
  • 29
  • 52
-1
votes
5 answers

How to create a method out of the text file?

I have a text (.txt) file that contains Java code! I want to create a method that includes this Java code and then call that method through the program. Can anybody suggest a way to do this?
Khashayar
  • 1,893
  • 3
  • 20
  • 28
1 2 3
12
13