invisible

How to make a rectangle on screen invisible to screen capture ?

How can I create a rectangle on the screen that is invisible to any sort of screen capture(printscreen or aplications) ? By create a rectangle on screen I mean something like this: #include <Windows.h> #include <iostream> void drawRect(){ HDC screenDC = ::GetDC(0); ::Rectangle(screenDC, 200, 200, 300, 300); ::ReleaseDC(0, screenDC); }...

How can we hide (invisible) some CodeBehind lines (for example a class) from other developers in a common project?

How can we hide (invisible) some CodeBehind lines (for example a class) from other developers in a common project? I asked this question because today we were working on email codes and we wanted to send an email to all of programmers emails therewith sending an Email to our common web site email. How can we hide our passwords from eac...

EXE from Delphi 2006 : Buttons/Checkbox/Radios not visible until mouse is hovered (on Vista/Win7)

Under Windows Vista and Win7 there is a problem with applications created by Delphi (we use Delphi 2006, but it seems other versions have the same problem) which contain the XP manifest. All descendants of TButtonControl (TButton, TCheckBox, TRadioButton, but not TBitBtn) are not visible after a form is initially shown. The controls app...

How to recognize a blank/invisible image using java

I was wondering if it would be possible to recognize that a BufferedImage in java is a blank (invisible for a user in a browser) image. ...

How do I create the a web form which is always visible in the bottom of the page?

Please have a look at the following page: http://www.eddale.co/general/on-reception-the-iphone-4-hysteria-the-real-lifelab-test-conundrum I want to create a similar form like the one always sticking to the bottom of the page in the link above ... how do i do this? ...

Make element fade away then display:none;

I have an element that fades in, its the size of the page and goes over top of the whole page. when you click the close button it should fade out. I have this all working but my issue is when I close it, its opacity is set to 0, but you can still click what was in the element. (I have a couple a tags in it) So.. your clicking it even th...

viewing a form by clicking a button in java netbeans.

hello guys. i have made a program in netbeans.i have 2 different jframe forms. in form1 there is a button. i want that when i click that button, it makes form2 invisible or vice versa. how can i do that? thanks in advance. ...

Formatting Characters

I have an application (IM Client) that I wish to setup custom formatting symbols in similar to mIRC rather than relying on rich text. I will accomplish this by pairing a UniChar 003 with a number 0-15 to process colors and other characters for different things. The only problem that I have is that when these characters are inserted they ...

IMAPSize makes sketchy inaccessible files -- how can I access them?

I'm using this program IMAPSize to backup an IMAP inbox. It makes the backup in C:\Program Files\IMAPSize\backup, but somehow the "backup" folder is only visible to the program, and not to Windows Explorer or even Command Prompt! "Show hidden files" is on. I've already tried running as Administrator. When I go to the "select backup f...

Making my console application invisible

I am developing a console application for my public library as a school project. The console application will run as soon as the user logs on and do some background work. The thing is, I don't want the console application to actually appear. I need it invisible. The last thing I need is complaints because some people got freaked out tha...

Console window still popping up even after ProcessWindowStyle.Hidden;

I have to run a console application from my Windows Application. The console application I want to run is an Embedded Resource in my application, and I am calling it like this: // Run the updater and grab its output Process Updater = new Process(); Updater.StartInfo.FileName = "C:\\tmp\\tmp.exe"; Updater.StartInfo.WindowStyle = ProcessW...

Invisible comments in jsf 2.0?

Hi, is it possible to embed comments in my .xhtml-files that are only displayed in the source and not the rendered result? I want to include author, date,... in the files but they should not be visible to the enduser in the generated output. If I use the standard comment-tags <!-- --> the browser displays them. ...

Groupbox borders

I am using Ubuntu 10.04 64 bit and QT 4.6.3. QGroupBox borders in any Qt Application are not visible. I changed Ubuntu themes but borders are still not visible. I want them to be visible. How can I solve this? ...

How can I make a imageview visible, 5 sec pause, invisible, 5 sec pause and so on...

I have an imageView and want it to work like this: ImageViewer visible 5 second pause image view invisible 5 second pause ImageViewer visible and so on ... How do I do that? I have tried sleep but it freezes the whole program in 5 seconds. I just want to affect my imageView. ...

Invisible / transparent button that works like a regular in android?

How do I get one area in the middle of a image clickable (not the whole image)? Tried with a button set to invisible and clickable but the button does not work. What are the alternatives to an invisible / transparent button that works like a regular? I've also thought of a completely transparent and clickable PNG that should work but ma...

Flex : Detecting When Buttons are Invisible

Hi, I've got a few HBoxes with buttons in them. I programmatically make certain buttons invisible. At a certain point, all of the buttons should be invisible. How can I tell when all of the buttons are invisible? What's the easiest way of doing so? Each button's visibility is determined independently of the other buttons. <mx:HBox> ...