Tagged Questions
The hints tag has no wiki summary.
14
votes
1answer
367 views
Native hints/tooltips under Vista/7 with Delphi7?
I'm trying to reproduce native hints/tooltips under Windows Vista/7 using Delphi7.
I've found a really nice component which could solve the issue:
...
8
votes
1answer
3k views
What effect does HOLDLOCK have on UPDLOCK?
I have seen many examples of the HOLDLOCK hint being used in combination with UPDLOCK (like this). However as I read the documentation for these hints, it seems that HOLDLOCK should be redundant, ...
7
votes
5answers
963 views
How to force Delphi compiler to display all hints and warnings
Is there a way to force the Delphi compiler to display all hints and warnings all the time?
Here is the behavior that I am currently seeing in Delphi 6:
Check out fresh copy of my application from ...
6
votes
0answers
711 views
Balloon hints on Delphi app tray icon keep popping up indefinitely
I have a Delphi 2006 app that can minimize to a tray icon, and displays various alert messages via a balloon hint over the tray icon.
Under some circumstances - I don't know when - a previously ...
5
votes
2answers
9k views
Will Oracle optimizer use multiple Hints in the same SELECT?
I'm trying to optimize query performance and have had to resort to using optimizer hints. But I've never learned if the optimizer will use more than one hint at a time.
e.g.
SELECT /*+ INDEX(i ...
4
votes
1answer
375 views
Use Hints for views?
I have a view and I want to query my view like that to hint some index from a base table,can I do that?
I mean:
--view
create or replace view temp_view
as select col1,col2,col3
from ...
4
votes
5answers
323 views
what's wrong in File.Exist() method? [closed]
Possible Duplicate:
show a message if the filename already exists
Reading some answers with code samples I notice that those where this method mentioned are subjected to criticism. I'm ...
4
votes
4answers
1k views
Can specific Delphi hints be disabled?
In Delphi, you can use compiler directives to disable specific warnings, such as
{$WARN USE_BEFORE_DEF OFF}
But when I tried to do that with a specific hint, whose underscore_style_name I got out ...
3
votes
1answer
495 views
Creating custom Hint window
I'm trying to find a way to use my 2nd form as a hint window for a component (for example a TLabel) in my 1st form.
At the moment, I'm exploring the use of THintWindow and HintWindowClass, but it is ...
2
votes
1answer
25 views
Is necessary to use xlib's “XAllocSizeHints()”?
Xlib has a funciton called XAllocSizeHints to allocate a XSizeHints structure on the heap and set it to zero.
XSizeHints *sizehints;
sizehints=XAllocSizeHints();
However, can is it necessary to ...
2
votes
3answers
22 views
jquery show tips function fails to work in webkit based browsers
I have a jquery function that shows/hides spans that look like "tips" when I click an input field on a form.
The function works great on FirfFox,Chrome,IE(!) :) , etc. But not at all on webkit based ...
2
votes
2answers
446 views
In the UPDATE statement, are NOLOCK hint honored in the FROM clause?
Given the following update statement:
UPDATE @TableVariable
SET city = T2.city
FROM @TableVariable TV
INNER JOIN dbo.TABLE_1 T1 WITH (NOLOCK)
ON (TV.customer_id = T1.customer_id)
INNER JOIN ...
1
vote
1answer
295 views
Using jQuery Validation and Field Hinting at the Same TIme
I am trying to use the jQuery Validation plugin (http://docs.jquery.com/Plugins/Validation/) in conjunction with field hinting.
The problem is that the field hinting puts text in the value ...
1
vote
1answer
319 views
Delphi : Prevent TPageControl Hint from showing on contained items
I have a form with the following components: A TPageControl containing a single TTabSheet, containing a TEdit.
I want a hint "Hello" displayed when I mouse over the pagecontrol tab, and no hint ...
1
vote
1answer
402 views
Vim: Show function hints or signature for PHP
I've got my nice PHP syntax highlighting all set up and it looks great. What I need now is the ability to show built-in function signatures or hints while typing.
This is so common in so many IDEs, I ...
1
vote
5answers
428 views
Hints in Sql Server
Are hints really necessary for every sql statement? We have a dba who is anal about it and asks us to put hints on every select and update statements in our stored procs. Is this really necessary?
0
votes
1answer
38 views
CSS identifier hints in NetBeans 7.1 IDE
I recently made the change from Dreamweaver to NetBeans and noticed this IDE doesn't have anything out-of-the-box to display identifier options for CSS. For example, if I type
list-style:
I would ...
0
votes
2answers
39 views
register a click except on a certain element
i have a javasccript dunction that shows or hides "spans" when i click an input to show hints when a user fills out forms:
function prepareInputsForHints() {
var inputs = ...
0
votes
1answer
122 views
How to prevent hints interrupting a timer
I asked this question before in a slightly different way. At that moment I had no idea what exactly the problem was until I started to experiment with the answers I got from the forum (thanks all). ...
0
votes
2answers
165 views
How to disable hints in Dev C++?
I have Bloodshed Dev C++ 4.9.9.2.
Every time I stop typing for a second this hint pops up and I can't see a thing what I'm typing! I have a feeling that it waits for a most unsuitable moment to pop ...
0
votes
2answers
79 views
how can I get wordpress to tell me which function rendered a specific piece of output
I've found the List Hooked Functions method to display all the elements that are contributing to the final render, but I want to see which of those functions is ultimately responsible for rendering a ...
0
votes
1answer
104 views
0
votes
2answers
223 views
Text Hints with JQuery and JavaScript for loop
I'm developing a small app where i ask users to put some info.
I want to show text hints in the input fields.
I do this in a for loop...
When the page is loaded, the hints are displayed correctly but ...
0
votes
2answers
371 views
Netbeans 6.8 Tree & editor hints not in sync with build
I'm having two nb-projects.
One nb-project(a) has the other nb-project(b) as a library dependancy.
Now both nb projects compile/build fine, but the hints for (a) are out of sync.
This interferes ...
0
votes
1answer
157 views
How to design an inheritance with changing parameter types in php?
The idea is to create a DOM-like tree. But there are some restrictions, that only certain types can actually contain the other.
I want to use an interface|abstract class|superclass to implement some ...
0
votes
2answers
616 views
How to fetch all hits in lucene.net
I want to fetch all hits from lucene. Is there any wild card character which fetches all records?
-2
votes
0answers
51 views
Oracle won't find my index (but works with hints)
I have a table where there is data. The table has an index.
My query is fast if I use a hint:
select /*+ Index (up AM_IX_TESTRES_RES) */ COUNT (DISTINCT FK_RESS)
from Test_results tr, Ross ro
where ...