The handles tag has no wiki summary.
0
votes
0answers
21 views
Different jquery ui resizable handles for different divs
I have different divs with resizable handles and i need to make different classes for them.
Let's say, i have a div and i want to make it resizable
$("#div1").resizable({
handles: "n, e, ...
0
votes
2answers
27 views
Move jquery resizable handles out of the divs
I have 3 divs. One inside the other.
jQuery
$(function() {
$("#div1").resizable({
handles: "n, e, s, w, nw, ne, sw,se"
});
$("#div1").draggable();
});
...
0
votes
1answer
45 views
Memory management when not storing handles returned by functions
Apologies if this has been answered before, I haven't been able to find an answer.
I'm doing some painting in my Win32 application, and have quite a few scenarios where I need to paint an object ...
0
votes
1answer
50 views
Matlab Update Image Handles
I'm creating an Image Editing Program using Matlab. The user uploads the image in one pushbutton callback function. The user can then use other pushbutton callbacks to edit the image (rotate, change ...
0
votes
2answers
49 views
get selection handles programmatically in android
In my app I have EditText element but I use it like TextView (it is not editable).
I want to select all text in this field by click on some button.
I do it with the next code
...
1
vote
1answer
150 views
Resizable handles with jQueryUI
I need to make resizable handles like in this image.
To be more specific, I need those blue dots to be around my <div> to allow resizing from different sides.
Currently I'm using the ...
0
votes
1answer
166 views
Matlab GUI Attempt to reference field of non-structure array
I have a GUI menu on Matlab with 4 buttons (menu.fig). Then I have 4 .fig file that I want to open when I click on the buttons. Here it's all ok, when I open a .fig from menu and insert value to do a ...
0
votes
0answers
19 views
jQuery UI slider modifying handles
I have a design for a slider with two handles. Each has a tooltip like design with the handles value in it. The tooltip should be inside the handles (so the tooltip slides with the handles), but ...
5
votes
1answer
65 views
Does WithEvents in Visual Basic keep its EventHandlers when changing the reference to the object?
Does WithEvents in Visual Basic keep its EventHandlers when changing the reference to the object?
Say I have declared a button, firing events:
Private WithEvents _MyButton
Now I am subscribing to ...
0
votes
0answers
107 views
How do I update a MATLAB GUI without overwriting the handles file?
I am writing a GUI for our final year project that controls the sails of a computer animated boat and shows a chartplotter (only a picture of the race area overwritten by a code plotting a little ...
0
votes
1answer
53 views
Migrating Handles (HttpApplication) methods from VB.NET to C#?
I'm migrating some code from VB.NET to C# (4.0).
I find structurs like:
Private Sub WhitePointHttpApplicationBase_BeginRequest(sender As Object, e As System.EventArgs) Handles Me.BeginRequest
End ...
0
votes
1answer
108 views
System.NullReferenceException when using gcroot
Turns out this error had nothing to do with gcroot - I connected some constructors shoddily and lost the instantiated object on the way.
For the record, all versions of the code below worked after ...
3
votes
2answers
56 views
Open a closure as a handle in Perl
So I had this crazy idea. Right now, I'm generating a table in Word using Text::CSV_XS like so:
use Win32::OLE;
use Win32::OLE::Const 'Microsoft Word';
use Text::CSV_XS;
# instantiation of word and ...
1
vote
1answer
156 views
Correct use of SafeHandles in this P/Invoke use case
Working in C# with a native Dll, that uses opaque handles and internal reference counting, I have the following P/Invoke signatures (all decorated with DllImport attribute)
[DllImport("somedll.dll"]
...
0
votes
0answers
61 views
Disable impoly while waiting
How can impoly be disabled after calling wait for its handle like the following
Calling impoly function :
axes(hAxes);
h = impoly;
position = wait(h);
then How can I disable this to get normal ...
2
votes
2answers
58 views
Alternative to “set value” in a function/script that calls itself
I have a script that calls itself over when the condition of the if-statement is false. The maximum number of iterations as defined by the user can be up to 20 times.
The problem is that there is a ...
0
votes
1answer
60 views
How can I reclaim thread handles allocated by the RPC runtime?
A little background:
I'm working on a Windows program that uses RPC to communicate over a network. Network connections are made and disconnected continuously. The RPC calls are synchronous, but there ...
0
votes
2answers
84 views
matlab gui callback not setting values for another callback?
I want one buttonPress to set the value and another buttonPress to output the value.
But value is not present?
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, ...
2
votes
2answers
171 views
Connecting two handles in Matlab
I would like to connect my two axes.handles so that when the mouse button is clicked on one, the other one would also do what the first one do. I have an external function that executes out what I ...
4
votes
1answer
115 views
Java handles (mutex ?) are leaked and not released (not file handles)
I have a complex Java application that runs for a long time. the application does the same operation, with little nuances, over and over again.
My problem is that Windows task manager shows a lot of ...
1
vote
0answers
155 views
Control Main Menu in another application
I'm creating a component that will make access to other applications and fill informations to them. Usually call up forms of other applications and will automate the filling informations in fields. ...
0
votes
0answers
35 views
Problems in saving GUI's handles structure
I made a GUI using nested functions (without GUIDE). It has some Edit, pushbuttons and a chart. The GUI works well as I run it, but I would like to save it as figure and than be able to modify it in ...
1
vote
2answers
528 views
matlab: gui and global variables
I'm having several functions (defined in separate files) within a Callback in my GUI, like that:
function myFunction_Callback(hObject, eventdata, handles)
[output] = function1(input);
[output] = ...
2
votes
2answers
219 views
Matlab - Edit text
What I am trying to do is that when I put into "Edit text" (called: funkcia_edit) some function it will draw me graf to that function. Here is picture what I am trying to do, as you can see I have ...
1
vote
1answer
105 views
How can I append to a text file?
I have a program written in C++ which accepts text from a user and saves it to a text file using file handles. Here are snippets of the program:
The program works fine. The only problem with it is ...
0
votes
1answer
158 views
assigning object to button.tag
I created a Sub I want to run everytime one of two buttons is clicked. I added the handles of both buttons to the sub so that clicking either one will fire the subroutine.
I placed listview object A ...
0
votes
2answers
169 views
How to get the value in Ember Select by Below code
Handle Bars Is below :-
{{#each category in controller}}
{{view Ember.Select
contentBinding="App.testsController.content"
optionLabelPath="content.category"
...
0
votes
2answers
549 views
Handles variable in GUIDE is not updating
I have a GUI created using MATLAB GUIDE. I am trying to return a value from the GUI. Here are the relevant parts of the code (complete code can be found here):
function varargout = test(varargin)
% ...
1
vote
2answers
308 views
Monitor process resources on Windows CE 5.0
I'm developing a WinCE 5.0 application that uses two commercial libraries. When the application starts calling the second library it gets slowlier and then after some use, it hangs and the whole OS ...
1
vote
3answers
137 views
Is auto_handle still the suggested method for determanistic disposal of handles?
A colleague of mine came across an article on codeproject over the weekend which describes the use of the auto_handle method. Given that the article was written in 2006, is that still the right way to ...
1
vote
1answer
135 views
GUI handles in classes
I'm writing an OO gui program and I'm having issues trying to use the set() function to change GUI element properties. I'm simply trying to change a buttons enable property from off to on. I have ...
0
votes
1answer
294 views
pass handle from one m file to other m file
From my "Main" window I have a button that opens another window "List". In the List window I have two listboxes the one on the left has names on it and on the one on the right i add names to it. ...
0
votes
1answer
379 views
Invalid handle exception on CloseHandle call?
In my application I open a handle to shared memory that I read/write to/from. I open the handle like so:
//Map the shared memory
d_to_mbx_mem_arr[idx] = ...
1
vote
2answers
822 views
In Matlab, own function which dynamically load/display images into Axes from a Gui in a loop?
With Guide I made a Matlab Gui that have 10 Axes in which i want to display images, in all of them at once, after i press a Button.
I made a separate .m file with function ...
1
vote
1answer
195 views
Scriptaculous slider price range handles
I'm using Scriptaculous to create a price range slider with two handles.
Problem at the moment is the two handles can slide past each other. How can I make them stop if they reach the other handle
...
0
votes
1answer
128 views
Stubborn resize handle controls on BODY element inside radEditor rich text editor
I have a radEditor which consists of an IFrame that contains an editable 'content area' composed of a BODY element - this is just the standard default implementation of the radEditor control. In ...
1
vote
1answer
535 views
Matlab TabPanel usage
I am trying to use the application TabPanel Constructor v2.8. I have followed the instructions given with it. In the openingfcn of my gui I need to select one of the tabs. For it, I should use the ...
2
votes
1answer
574 views
JQuery resize handles not working after rotation using jQueryRotate
I have a problem with the resizing handles in jquery.
Basically, I have a div dragging, resizing and rotating (using jqueryRotate) as expected. However when the div rotates the handles rotate with it ...
1
vote
1answer
1k views
Get name of all handles in current process
I need to list all open handles in current process.
Since i could not find any function like "EnumHandles", I was thinking of making a loop from 0 to 1000. The question is how i can retrieve the name ...
0
votes
1answer
205 views
how to get the control of the UI Element Clicked in a external application
How can i get the control (and possibly its text value) of a control which was clicked in another third party application (its not a .net or wpf application for which there are answers which did not ...
3
votes
2answers
523 views
Why is SafeHandle.DangerousGetHandle() “Dangerous”?
This is the first time ever that I'll be using SafeHandle.
I need to call this P/Invoke method that needs an UIntPtr.
[DllImport("advapi32.dll", CharSet = CharSet.Auto)]
public static ...
0
votes
1answer
164 views
Detect Refresh action under windows xp
My question is simple. How I can detect if user refreshed explorer under windows xp? Or if it would be easier how to detect if user refreshed desktop?
I heard that I can listen desktop handle. If ...
1
vote
2answers
86 views
Check Value of .NET Handle ^
Here's my situation:
I have .NET wrapper-objects in a C++/CLI layer that hold pointers to unmanaged C++ objects. I've implemented the finalizer so that it deletes the unmanaged memory pointed to by ...
0
votes
1answer
134 views
handles a control in a formview in asp.net
How can I do a handles from a control contened in a formview, in code only i can see formview but not the controls in the inserttemplate.
thank for any help
0
votes
1answer
77 views
How do have two constraints on a UNION?
I have this code below. It works if i use only ONE WHERE variable but the moment i add another one, the query doesn't work.
It works if i just use this one all unions:
where ...
0
votes
0answers
114 views
How to Link Two External Application Together via data in their respective TextBoxes fields in C#?
I need to be able to link two External Applications together through their text boxes.
For the example, consider:
Internet Explorer & Mozilla Firefox (these are arbitrary - not looking for their ...
1
vote
2answers
131 views
Handle declarations
Can anyone tell me what the difference is between these 2 lines of code, which one is better to use?
System::String ^MyStr = gcnew System::String(MyStr);
System::String ^MyStr;
3
votes
5answers
623 views
Does C# have a Handles keyword?
Protected Sub Menu1_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemClick
End Sub
In VB.net, we have the Handles keyword, I'm ...
0
votes
1answer
69 views
As a .NET developer, what do I need to know about GDI (objects, handles, etc.) and where can I learn about it?
Sometimes I run into errors or problems involving handles, GDI objects, etc. For instance right now I have a recurring error in one of my clients' applications that is an error creating a handle.
I ...
0
votes
2answers
986 views
How do I add my own variables to the handles structure from within a custom function of mine?
I have a question to ask the MATLAB gurus here ..
So here is my code (only showing lines of code which are relevant to the problem here):
mainProcess(hObject, handles)
handles.Checkpoint2 =1;
...
