The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
8 views

Best practise: using of Maven archetypes for developing the data services in ESB

Is it useful to make own Maven archetypes to quickstart new data services (Java) upon the WSDL/WADL contracts? Like auto-including the cxf-codegen-plugin into the project and so on. I'm talking about ...
0
votes
1answer
35 views

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 ...
0
votes
0answers
35 views

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'; ...
0
votes
0answers
19 views

Hibernate JDBC properties and query hints

I define globally Hibernate (v 4.2.0) JDBC property and then for some special query the hint Query.setHint("org.hibernate.fetchSize", 33). Will query hint be used? Or globally defined one?
3
votes
0answers
107 views

SQL Developer stripping inline hints

I'm using SQL Developer 3.1.07. I ran a query to Oracle with an inline hint --+ hint in it but SQL Developer seems to have stripped the hint before submitting it to the database. Multi-line hints ...
0
votes
1answer
74 views

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 ...
0
votes
0answers
22 views

Is it possible to mark a specific occurrence of a coding hint as safe in NetBeans?

I like the coding hints/warnings on NetBeans quite a lot, but sometimes there are individual cases in which one simply has to work against what NetBeans considers to be best practices. For example, ...
2
votes
1answer
94 views

Dreamweaver doesn't show all code hints

Example in Dreamweaver CS6: <script src="libs/Three.js"></script> <script> var scene = null, function init(){ scene = new THREE.Scene(); scene. ...
1
vote
0answers
50 views

Oracle query optimization generalquestion [closed]

What should be the criteria when the query is being optimized with hints. I take it that it is incorrect to use costs in 'explain plan', since Oracle automatically minimize this cost. I other words, ...
0
votes
3answers
698 views

Android AutoCompleteTextView shows object information instead of text in landscape mode

I am using a Custom Adapter with AutoCompleteTextView. It works fine on the emulator and my tablet. However, there is an issue on my phone in landscape mode. The auto complete hints being shown in ...
0
votes
2answers
211 views

Android hint dialogs

I would like to present series of pop-ups to the user when he uses the application for the first time. The pop-up will contain help messages (ex. click here to do something, swipe to view...). Once ...
0
votes
1answer
140 views

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? ...
0
votes
1answer
123 views

Losing input hints after clearing inout fields… any work around?

I have two scripts for clearing my form and using input hints. The input hints are not returning AFTER I execute the clear function. function clear_form_elements(ele) { ...
2
votes
1answer
253 views

How is it possible to parse the URL of the desired popup to the popup-form AND show hints/tooltips in the WebKit-Component?

I'm trying to use the WebKit-component (http://www.webkit.org/) in VB with the help of Visual Studio 2008. This is running without problems, except for two following two issues: 1. Hints/Tooltips are ...
1
vote
2answers
204 views

Prompt with hints in Javascript

I'd like to get some input from the user: keywords = prompt("Input keywords separated by commas", ""); I have many various strings stored in an SQLite database that could suggest the user what to ...
0
votes
0answers
31 views

contact? & stack secrets…? [closed]

How do I personally contact someone on stackoverflow.com (a user profile) to send a message? the f.a.q does not specify... @person? I notice 'we' all seem to have profiles so their must be a way to ...
0
votes
1answer
439 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 ...
2
votes
1answer
63 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
211 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 ...
0
votes
2answers
94 views

Register a click except on a certain element

I have a javasccript function 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
349 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). ...
15
votes
1answer
710 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: ...
3
votes
1answer
742 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 ...
4
votes
1answer
1k 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 ...
6
votes
1answer
5k 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 ...
10
votes
1answer
1k 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 ...
1
vote
2answers
411 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 ...
3
votes
2answers
4k 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 ...
0
votes
2answers
283 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 ...
1
vote
1answer
480 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 ...
0
votes
1answer
163 views

c# remove hint over datagridview

how can I remove the hint message when the mouse is over the row?
4
votes
1answer
1k 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 ...
0
votes
2answers
313 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 ...
1
vote
2answers
451 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
256 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 ...
18
votes
2answers
10k 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, ...
2
votes
2answers
1k 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?
9
votes
5answers
1k 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 ...
4
votes
4answers
2k 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 ...
7
votes
2answers
18k 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 ...
1
vote
5answers
580 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?