Tagged Questions
The run-time tag has no wiki summary.
3
votes
3answers
47 views
How to restrict JButton to change it's dimensions as a result of revalidation
I have a panel (with GridLayout(0,1)) embedded on JFrame.
As per my requirement :-
I am adding (JButton,JTextArea) in pairs on above declared panel.
Now, on click of JButton of any pair, it's ...
3
votes
2answers
36 views
Method selection at compile time. What if the parameter can have several types?
I am led to believe that the java compiler does all the work of method selection at compile time (or am I wrong?). That is, it will decide exactly which method to use in which class at compile time by ...
3
votes
1answer
495 views
WPF Design-Time vs Run-Time Style Differences with Triggers
I am having a big issue with how XAML is rendered in Design-Time vs Run-Time. For the most part, things are consistent, but when I use any styles which have a Trigger, the trigger is not checked in ...
3
votes
3answers
279 views
with dynamic, awkward reflection no more?
C# 4.0 introduces dynamic keyword, which will look up at run-time.
Does this mean we'll need awkward reflection no more? If does, Can you show up an example of it?
2
votes
2answers
79 views
C# DLL run-time error - builds, runs, but throws unhandled exception upon trying to use DLL functions
I am trying to compile the example project shown here for C#. It had to be converted to VS2010, but that worked fine. It builds, runs, but then dies when it tries to access a DLL function.
I made a ...
2
votes
3answers
175 views
How to ensure correct 'requires' definition of a Delphi run-time package from within a design-time package when creating an installer
I am creating an installer for components that currently do not have one (for example the excellent SynEdit editor library), this has also allowed me to get to understand design and run-time packages ...
2
votes
5answers
243 views
How to catch and save compile time and run time errors of my solution project in Visual Studio 2008/2010
I am currently trying to figure out a way on how I can possibly save the compile time and runtime errors (in database tables) that the project/solution/website in my visual studio solution explorer ...
2
votes
4answers
284 views
Autogenerate value objects
Given an interface or interfaces, what is the best way to generate an class implementation?
interface Vehicle
{
Engine getEngine();
}
@Generated
class Car implements Vehicle
{
private final ...
1
vote
2answers
149 views
Does 'Exist' method in VBScript(QTP) declare the existence of
Browser("Online Exchange login").Page("Online Exchange login").Exist(10)
Following lines are not included in the source code:
My question is : Will Exist(10) method, in above line of code, verifies ...
1
vote
2answers
763 views
C# Override Method at Runtime
I have two questions.
1) I found a little gem of code for how to make a control scroll smoothly.
Great. But it overrides the WndProc method, so to use it, I had to tear out the FlowLayoutPanel I'd ...
1
vote
3answers
2k views
Run-Time Check Failure #0 vb.net callback from C dll
I'm writing Add-inn Application A in VB.Net and DLL B in C language.
Application A pass callback method to dll B.
When certain event occur the dll invoke the callback from A.
Whole works fine on my ...
0
votes
1answer
48 views
File System Watcher has a user determined path?
How do you get the File System watcher to watch a path selected at run time e.g. the user can enter C:\Users\User\Desktop\
I have tried using a text box and a button which on click sets the path
...
0
votes
1answer
39 views
customize run time error message
when there is a run time error in my application it shows error dialog box with message,
The application [app name] (process com.[package name] has stopped unexpectedly. Please try again.
This ...
0
votes
0answers
103 views
Run time error 1004: Unable to get the pivottable property of the Worksheet class
I am having been getting this error recently when trying to run this macro but not previously. Any help will be appreciated. Below is a small portion of the code. Error happens (<--ERROR ...
0
votes
2answers
101 views
Run-Time error in fortran
I'm at a beginner level in FORTRAN. Recently, I tried designing a simple program to calculate permutations and combinations. It will have a "menu" for the user to choose an option to proceed...
...
0
votes
2answers
40 views
is writing your own parser worth the extra runtime it causes?
I am doing work involving a lot of DOM manipulation. I wrote a function to more efficiently change common styles on objects using "hotkeys." It simply interprets this:
styles = ...
0
votes
1answer
35 views
Is compile-time info available at run-time?
In iOS, a nice-to-have would be an about page that has the 'release date' of the app... which I'd rather not have to update by hand. Is there some way to glean the date the app was compiled? ...
0
votes
1answer
128 views
Sampling Rate of Sensors
Iam devloping an application which changes sampling rates between UI,GAME..during run time.Can any one tell me how to change the rates in run-time(function) and do i need to re-register the sensors ...
0
votes
1answer
95 views
Including submodule's jar/classes into other submodule's jar using Maven
I have a multi-module maven project, with a parent/child structure given below:
| parent -> pom pack
| -- submoduleAppletUtils -> jar pack
| -- submoduleAppletA -> jar pack
| -- ...
0
votes
1answer
69 views
What The run-time stack is used to store [closed]
which of these program the run-time stack is used to store
program instruction
Function activation recorde and local variables
Dynamically allocated data structure
Library Function
0
votes
0answers
25 views
Questions about Adobe AIR
Is Adobe AIR a runtime environment
and also a virtual machine?
What is the name of its instruction
set?
What is name of the binary format
for an executable that runs on it?
What is the name of its ...
0
votes
1answer
883 views
What causes MS VB Run-time Error -2147417848 (80010108) in Excel Macro
I have a macro which runs fine on my machine but when I try to run it on another machine it gives the following error.
Microsoft Visual Basic
Run-time Error -2147417848 (80010108)
Automation Error
...
0
votes
2answers
277 views
Grails/Compass question - How can I change the compqass Connection to point to a different directory?
I use the Searchable plugin with Grails I have the need to change the directory to which Compass points to, depending upon a UI choice by the user.
Normally, this value is set in the ...
0
votes
7answers
14k views
Handle events for dynamic (run-time) controls - VB.NET
I have a WebBrowser control that is created and added to the form during run-time.
How do I connect this control to subroutine that can handle its events at run-time?