hidden

How to prevent the mouse cursor from being hidden after calling CComboBox::ShowDropDown?

In my MFC application, when I call CComboBox::ShowDropDown(), the mouse cursor is hidden until interaction with the combo box completes (when the combo box loses focus.) It doesn't reappear when the mouse is moved, like it does with edit boxes. How can I keep the mouse cursor from being hidden? ...

How can I get Eclipse to show .* files?

By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences. ...

Visual Studio Freezing/TFS Window Might be off screen

I am using Visual Studio 2005 with Team Foundation Server. When I right click a file under the source control and choose "compare" VS appears to freeze until I hit escape. My guess is that the window that is supposed to be popping up is somewhere I can't get to. I tried minimizing all the windows that I can and it is nowhere to be fou...

Hidden FreeTextBox bug on Firefox

I have a problem with the FreeTextBox rich Text Editor in my ASP.NET site. The problem occurs when I access the site with firefox, and I have a freetextbox instance in a hidden div. The hidden div might also be an AJAX Tab Panel. The actual problem is that when the page loads it throws an uncaught exception (firebug shows the StoreHtml()...

Java File.canWrite() on Vista and super hidden files

I have some code that effectively does this : File file = new File("C:\\Program Files (x86)\\Something\\fred.txt"); System.out.println("file.canWrite() = " + file.canWrite()); It prints true. Now the odd thing is, I can create the file without any exceptions. Furthermore, another program can read the file I've created. The thing is, i...

HTML / CSS - DIV Element hidden when it shouldn't be?

(clickable) Mainad has a valid height and width, however it isn't shown like subad1/subad2. Which are in essence exactly the same! (just a different background image). Firebug shows my div as greyed out for some weird reason. Replacing the contents of mainad with just some text doesn't solve the problem (problem isn't related to inner...

Why is my hidden process still visible?

I'm printing a document by creating a System.Diagnostics.Process object and then setting the StartInfo verb to "print", then calling the process Start() method. I want this print process to be hidden, so I'm setting CreateNoWindow = true and WindowStyle = ProcessWindowStyle.Hidden. But the application (Word or Acrobat) still appears dur...

Retrieve a complete processes list using C#

I am trying to write a C# program to retrieve a complete process list. However I find that an application open a window but I don't see it in the process tab of WinXP task manager, I see it in task tab. In addition, I also cannot get its information using my C# code. static void showProcesses() { Process[] procs = Process.GetProces...

How do you resolve a hidden javascript link with php?

Hi, I'm trying to parse a bunch of webpages one after the next with PHP, but I noticed that when I fopen the first page, the links to the following pages are hidden in javascript. Is there anyway I can continue on to parse the next webpages? If the url had a variable like "page=2" encrypted into it I would go through them that way, bu...

asp.net hidden field not setting new value, need disabled alternative

I have a hidden field on my page <input runat="server" type="hidden" id="selectedIndex" /> and it is being set by this bunch of code, an onclick event to a gridview's row: var gridViewCtlId = '<%=GridView.ClientID%>'; var selectedIndex = '#<%=selectedIndex.ClientID%>'; var itemVisible = '<%=ItemVisible.ClientID%>'; var gridViewCtl =...

Jquery: How do I set a hidden element to display when another element is in focus?

Hi! I'm trying to display contextual help alongside form fields, that is only visible when those fields are in focus or hovered over. I've tried using mere CSS, but the results seem very fragile and inconsistent. Here is my CSS: form .instruct { position: absolute; right: -220px; top: 10px; visibility: hidden; width: 200px; z-ind...

Javascript: Can I access source of the file that is loaded in the hidden iframe

I have found this code for putting hidden iframe into my html and loading url into it: var i = document.createElement('iframe'); i.style.display = 'none'; i.onload = function() { i.parentNode.removeChild(i); }; i.src = 'http://www.google.com'; document.body.appendChild(i); And I would like to ask, can I access in javascript the source...

Hiding Text in Word (particularly tables)

Hi I've been working on a document that has a number of hidden sections that can be made visible using check boxes (and VBA). Most of this works fine including hiding Tables, Pictures, Formatting and Text using Range.Font.Hidden = True. My problem lies with leaving a table hidden, saving the document and then re-opening the document. ...

Fixed footer obscure firefox search match

I have a site with a fixed footer at the bottom of every page. The content area above the footer has a appropriate margin to ensure that content does not hide behind the footer when scrolling down. However, when a simple text search if performed in the browser (firefox) the search term is usually hidden behind the footer as the page nor...

Why doesn't my application show when started by my service

[DllImport("user32.dll")] static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); const int SW_SHOW =5; string Tartgetfile = @"C:\BringLog.exe"; p.StartInfo.WindowStyle = ProcessWindowStyle.Normal; p.StartInfo.CreateNoWindow = false; p.StartInfo.FileName = Tartgetfile; try { if (p.Start() == true) { ShowWindow(p.Handle, SW...

Showing a hidden process on Windows?

I got a bit of a problem. Related to my earlier questions about Slipstreamed SP3 vs. patched SP3, we've come to the conclusion that there is an Internet Explorer process being started, instructed to load a simple .html file from the local disk, which contains javascript, which opens up the rest of a larger chat/meeting system. Internet ...

How to store data on a page and retrieve it through JQuery?

Hi all, I have an array of data that I'll echo to a page using PHP, and I want JQuery to be able to parse it. However, I don't want the data necessarily visible to the user. I have, for example: <div id="data-1"> <span id="width">5</span> <span id="height">10</span> <span id="depth">15</span> </div> <div id="data-2"> <s...

Passing a variable value from javascript to ASP

Hello all, With the help of this community, I've been able to pass a static chunk of text from javascript (clientside) to ASP 3.5 (server side)! This piece of code works beautifully: $('.drop').droppable({ tolerance: "touch", // Here should be a string drop: function() { $('[id$="myHidden"]').val('Testy test test'); __...

Remove Values from Hidden Div Forms

Is there a way to remove Form input/select values when you hide a div? Example: Let say i have a form that i fill out. I have a couple different choices, each one will show a different div with a different form and hide the rest. But when i submit, it still submits those form values, even when the div is hidden. Is it possible to remov...

set overflow hidden in some cases

Hello, my question is How can I set overflow hidden in cases where the html go's outside the screen Right now I have set html {overflow: hidden;} in the head tag off the page. So, it's hidden all the time In my particular case the errors that I show in the registration process cannot be seen on my 13inch laptop, but I don't want to sh...