Questions tagged [hints]
93 questions
0
votes
3 answers
How to create interactive hints like this (example inside)
Hi, i need to create interactive hints.I tried to create relative block and position hints inside it (absolute) using '%'. But i could not do it.
Are there any plugins for this or is it simpler to write it myself?
Thanks!

daniil sidorov
- 61
- 5
0
votes
3 answers
C++ in Netbeans: many senseless "unexpected token" hints
I am very new to coding C++ and to using the Netbeans IDE. Worse yet, I'm on a Mac (but I can't imagine that's the source of the issue this time).
The IDE is giving me countless nonsense "hints" as in red exclamation mark symbols, most of which say…

Tyler P
- 21
- 1
0
votes
2 answers
How to display TBalloonHint always downwards independently from the screen position?
Create a VCL Forms Application, put a TBalloonHint (Name: balloonhintTest) and a TButton (Name: btnTest) on the form and write this code:
procedure TForm2.FormCreate(Sender: TObject);
begin
balloonhintTest.HideHint;
balloonhintTest.Style :=…

user1580348
- 5,721
- 4
- 43
- 105
0
votes
2 answers
Oracle. Preventing merge subquery and main query conditions
I have a large entity-attribute-value like a table. I try to select some rows from this table with a subquery and then filtrate with rows. How can I prevent merging subquery and main query in this situation?
For example:
EMP:
EMPNO | ENAME |…

potapuff
- 1,839
- 4
- 18
- 36
0
votes
2 answers
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 specific piece of output. Ideally, it would work…

Jonathan Day
- 18,519
- 10
- 84
- 137
0
votes
1 answer
c# remove hint over datagridview
how can I remove the hint message when the mouse is over the row?

ghiboz
- 7,863
- 21
- 85
- 131
0
votes
0 answers
use tablockx for insert non duplicable data outside a primary key
In SQL Server I have a table with the following data: first name, last name, birthplace, etc, etc.
The table has an identity ID column (the primary key of the table). In the interface of my application, the user can modify this data until they hit…

thx0125
- 129
- 1
- 9
0
votes
2 answers
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 nothing happens on 'focus' and 'blur'…

lpdahito
- 556
- 2
- 10
- 16
0
votes
1 answer
Apache Cassandra : Hints are getting created continuosly even if all the nodes are up
I have a 5 node apache cassandra 2.0.6 cluster with 48 GB ram and 2 TB data directory and commit log directory with 93 GB capacity. The JVM heap space for cassandra is 8 GB. I use JVisualVM Mbeans plugin for monitoring the cassandra metrics. The…

venkat sam
- 158
- 1
- 12
0
votes
1 answer
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 well known js-functions as appendChild,…

PvB
- 508
- 1
- 4
- 16
0
votes
1 answer
jquery autosuggestion navigate through hints list
I'd like to create searchtoolbar with autosugestion. I don't want to use jquery autocomplete plugin. I have already create script for sending and receiving information from jquery to php and from php to jquery. I have got everything but I want to…

Maciej Skoczek
- 35
- 1
- 4
0
votes
1 answer
List all group folders
Hard to describe with words, I'll rather show you the code and explain along. Right now I can tell you that I'm writing app with UNIX-like rights system and I've ran into one problem, I don't know how to solve yet. Below are my models with…

Oleg Kiviljov
- 113
- 9
0
votes
0 answers
Shouldn't the query optimizer still choose a hash join when I add a new index?
I had this query
SELECT Equipment.EquipmentId, ServiceStartDate FROM Service, Equipment
WHERE Service.EquipmentId = Equipment.EquipmentId
AND Vendor LIKE 'VEND: 1' AND ServiceType = 'failure';
Feature this plan:
Notice, it uses a hash join for…

Irwin
- 12,551
- 11
- 67
- 97
0
votes
1 answer
Hints in IntelliSense from ReSharper
If IntelliSense from Visual Studio (Menu RESHARPER-> Options ... -> IntelliSense and select Visual Studio), then the drop-down menu has hints.
If IntelliSense from ReSharper (Menu RESHARPER-> Options ... -> IntelliSense and select ReSharper), the…

Ivan
- 173
- 1
- 4
- 18
0
votes
1 answer
Conflict with counting filled fields with input hints. Any work around?
I have a script to count the number of fields that are filled. Works great. But I discovered the script only counts the fields that DO NOT have input hints. Is there any work around?
http://jsbin.com/oguzaj/4
SCRIPT TO COUNT…

Erik
- 5,701
- 27
- 70
- 119