hii....I am developing a window application how is it possible to disable special keys like control+alt+del to perform while running the application, i used keyhook method to disable almost all keys like windows,alt+f4 etc....
I have a string which contains a contiguous chunk of digits and then a contiguous chunk of characters. I need to split them into two parts (one integer part, and one string).
I tried using String.split("\D", 1), but it is eating up first character.
I checked all the String API and didn't find a suitable method.
Is there any method for doing this…
I have to compress folders into ZIP packages. But the size is limited, only a ~10-15mb is allowed to used per package. Every major application comes with the "Split archive to..." option, which does what I want... except I can't uncompress them one-by-one. (You need them all, and then use the .7z, .rar, .zip file to uncompress.)
Here is an…
I'm rather new to VBA and I've been working with the code generously displayed and explained by Nixda:
Split Excel Worksheet...
My only challenge is I've been trying desperately to find a way to include the top 3 rows as a title bu it seems to only allow for one. Here's the code have:
Dim Titlesheet As Worksheet
iCol = 23 …
I am hoping one of you will be able to help get me started on this issue. I need to create some sort of macro or VBA code to split and manipulate rows of data in Excel.
For this example, we have 5 rows of data. The first 3 rows are item information for Order # 0000000000-00 and the last 2 rows are item information for order # 0000000000-01.…
I am planning a proxmox HA configuration with two Dell R710 machines (dual 6 core processors in each) with enterprise level drive raid arrays. I would be using DRBD with a quorum disk on a third machine. I would dedicate two 1GB nics on each server to the DRBD communications. We would have approximately 12 to 14 Virtual Machines running on…
I'm trying to convince a page that it is the window.top even though it is in an iframe.
In FF you can do
window.defineGetter('top', function() { return window});
in Webkit (Safari/Chrome) you can simply do
window.top = window
but in IE none of those methods work. Anyone done this before?
I create a global hot key to show a window by PInvoking RegisterHotKey(). But to do this I need that window's HWND, which doesn't exist until the window is loaded, that means shown for the first time. But I don't want to show the window before I can set the hot key. Is there a way to create a HWND for that window that is invisible to the…
Hi I am making a firefox extension which needs to open a link in anew tab in the same window of firefox. How should i do this?
This opens in a new window (replacing the old window):
window.location = url;
This opens in the same tab
window.content.document.location = url
Any idea on how to open the url in a new tab?
I'm want resize window using WinAPI. I use WinAPI function
SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint uFlags);
Window is resized, but window content is not redrawed. If I resize this window using mouse, content redraws. How to resize window using WinAPI with content redrawing?
The default width of taglist window is too narrow for me and sometimes I can't see the whole function name in the window so I'd like to adujct the width of the window. I know use ctr-w > or ctr-w < I can adjust the window manually , but really want to change the default value of the taglisst window. so how I can actually do it ?…
I'm creating a child window within the main window. I assigned these styles to the child window:
WS_CHILDWINDOW | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_SIZEBOX | WS_CAPTION
The child window I get has a caption and a resizable border.
However there's no close button in the caption, and the caption/border of the child window is…
I'm creating a child window within the main window. I assigned these styles to the child window:
WS_CHILDWINDOW | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_SIZEBOX | WS_CAPTION
The child window I get has a caption and a resizable border.
However there's no close button in the caption, and the caption/border of the child window is…
Hi Flex developers,
I'm trying to place a popup window (TitleWindow) in the middle of the main application window. how do i set the coordinates of my popup window to be of the main application window?
i tried the localToGlobal function but with no luck, I just can't get the main window x and y.
Thanks in advance,
Uzi.
i have a parent window and a child window. in javascript, i want a function in child window to be called whenever the parent window loads a new page. i'd like to use something similar to jQuery's $(document).ready() so that I don't have to worry about whether the parent is done loading yet - but ready() only appears to fire when the…
i have a parent window and a child window. in javascript, i want a function in child window to be called whenever the parent window loads a new page. i'd like to use something similar to jQuery's $(document).ready() so that I don't have to worry about whether the parent is done loading yet - but ready() only appears to fire when the…
After performing an upgrade from Natty to Oneiric, I had a problem similar to the one reported in here at every system boot:
Desktop forgets theme?
Everything, from the LigthDM greeter to the ubuntu desktop used the ugly raleigh theme, apart from firefox, thunderbird few other applications after logging in.
Unfortunately none of…
I am trying to make a simple Ubuntu Touch web application with Qt Creator. I have set up a new project according to the tutorial and committed the files to Bazaar. I have set a url instead of the default index.htm in the qml file of the project. Using build-run loads a QML Scene window with the desired webpage, but Qt Creator…
I usually design GUI with Glade, thus producing a series of Builder XML files (one such file for each application window).
Now my idea is to define a class, e.g. MainWindow, that inherits from gtk.Window and that implements all the signal handlers for the application main window. The problem is that when I retrieve the main…
I've been managing this site for a long time and update coupons on it approximately every 60 days. For some reason, I'm not having problems:
I opened DW CS5 today and made the changes necessary to update coupons. I was able to connect to the host server with no problem but most of my coupon images were not showing up. DW…
Ubuntu 11.10 Unity. If I launch LibreOffice Files (ODS, ODT, ODP) with a double click in their home folders they launch with the appropriate application (Calc, Writer, Impress) however the application windows do not display the usual Close, Minimize, Restore buttons in the left hand corner. There is just a blank space where…
Using an old mx200 128Mb AGP card.
Log in ok.
Sometimes the top and bottom bars do not appear, sometimes one sometimes both sometimes none.
The menus on firefox/thunderbird and others disappear when I move the pointer from the menu heading to the menu itself.
I can't play you tube videos, nor pacman, so the world has ended…
The code sample for file activation on MSDN is lacking some code so a simple way to pass the file clicked to your MainPage could be: protected override void OnFileActivated(FileActivatedEventArgs args) { var page = new Frame(); …
I am looking for a way to achieve this on my 12.04 ubuntu system:
Clicking with the middle mouse button on one of the unity launcher icons will close the related windows/programs.
At present a middle-button-click causes (when possible) another instance of the same programme to start. There…