Tagged Questions
The entry tag has no wiki summary.
7
votes
3answers
1k views
Python/Tkinter: Interactively validating Entry widget content
What is the recommended technique for interactively validating content in a Tkinter Entry widget?
I've read the posts about using validate=True and validatecommand=command and it appears that these ...
6
votes
3answers
2k views
ELF binary entry point
why is the entry point in each ELF binary something starting with 0x80xxxxx?
Why doesn't the program start at (virtual) address 0x0?
When executed, program will start running from virtual address ...
4
votes
1answer
714 views
Text Entry on an Android Custom View
I'm dealing with a phone that has no physical keyboard and I'm using my own custom view for rendering. The device I'm working with, by default, seems to be in a T9 type entry mode where it suggests ...
3
votes
1answer
132 views
GWT 2.x $entry function
Cannot find any developer information about this function. I just know that it's suggested to wrap jsni javascript calls to java methods with this $entry function. I found that it catches exceptions ...
3
votes
3answers
2k views
How to create multi-column data entry form using CSS in Asp.Net?
While converting a desktop application to a web app, I've run across my ignorance when attempting to implement a multi-column data entry form using CSS. I'm resolved to avoid using tables for this ...
3
votes
2answers
1k views
Creating an entry point in a C# DLL to call from WIX
Good Afternoon,
I am trying to find a way to create an entry point for my C# dll. I am aware of how to call other dlls in c# but cannot find create one. I need this in order to call it in my WiX ...
2
votes
2answers
34 views
Python tkinter get() from another function
def CreateGUI():
WinCreate=Toplevel(master)
WinCreate.attributes("-toolwindow",1)
WinCreate.resizable(0,0)
WinCreate.transient(master)
WinCreate.grab_set()
...
2
votes
2answers
89 views
What's the fastest way to check that entry exists in database?
I'm looking for the fastest way to check that entry exists...
All my life, I did with something like this...
SELECT COUNT(`id`) FROM `table_name`
Some people don't use COUNT(id), but COUNT(*). Is ...
2
votes
2answers
107 views
Clear Tkinter Entry text - so new text looks new?
I want to modify the code below to clear the Entry text prior to new text being written. Basically I want to delete text, wait one second, then write new text. This should give the appearance of ...
2
votes
2answers
1k views
Python TKinter connect variable to entry widget
I'm trying to associate a variable with a Tkinter entry widget, in a way that:
Whenever I change the value (the "content") of the entry, mainly by typing something into it, the variable ...
2
votes
3answers
969 views
DLL entry point
The standard DLL entry point is called DllMain. The second param is DWORD ul_reason_for_call.
I have looked up on the MSDN to find all the values this can have, the following are obvious:
...
2
votes
4answers
1k views
Format Combobox Items
is it possible to format a combobox item in C#?
Make an item bold, change color....
1
vote
1answer
53 views
How to make a window return value when closed in Tcl/Tk
I have a proc that creates a new window, asking the user to give a database name.. And I want the function, after it's closed to return a value.
How do I make a window to return a value to it's ...
1
vote
1answer
25 views
Specify relative width of two embedded “entries” within “text” widget
I have a problem in specifying Entry widget size on Linux and Windows. These entries were created on Linux:
On Linux, they look fine within the Text widget. There are 2 Entry cells one by one, ...
1
vote
0answers
27 views
iFrame Hosted Payments
I'm attempting to "consolidate" all payment entries for all our various web applications under a single "hosted" payment entry web application. To be as "flexible" as possible with our various ...
1
vote
1answer
65 views
Tkinter Entry Widget Highlighting
When a user selects a portion of text in a Tkinter Entry widget it becomes highlighted. However, when the user clicks away from the widget the highlighting disapears. Is there any way to keep the ...
1
vote
1answer
281 views
Can i get the routing table entry in android?
Is there any method for getting the routing table entry in android??
Please share the information..
Thanks
1
vote
2answers
110 views
Tkinter Entry widget width
I noticed that the width argument for the Tkinter entry widget is in characters, not pixels. Is it possible to adjust the width in pixels?
1
vote
1answer
103 views
Gateway Service in Service-Oriented Architecture
I'm enamoured with the idea of implementing my own single-entry-point "gateway" that does two things.
First, it records how many requests have been handled by SOA servers and cycles the next request ...
1
vote
2answers
572 views
No access to Bundle Resource/File (OSGi)
at the moment i'm developing an OSGi based WebApp with Jetty and Equinox (see: http://wiki.eclipse.org/Jetty/Tutorial/EclipseRT-Jetty-Starter-Kit).
Everything ist fine so far but i can't get access to ...
1
vote
1answer
148 views
JAVA ZipFile entries() method doesn't see directories
I'm working on digital documents and digital signatures and I've stumbled upon a problem.
Input: documentX.adoc - zip file with files and folders inside.
I need to get all the content in the input ...
1
vote
1answer
267 views
Python/Tkinter: Undo/redo in an Entry widget (or use Text widget instead)?
Is there a way to support undo/redo capabilities in Tkinter Entry widgets or must I use single line Text widgets for this type of functionality? If the latter, are there any tips I should follow when ...
1
vote
2answers
285 views
Tkinter grid() Manager
I am having a bit of trouble with the Tkinter grid() manager. It is spacing the rows too far apart. I have two entry widgets to place, and I need one almost directly under the other. When I place them ...
1
vote
2answers
354 views
Differentiate gtk.Entry icons
I'm adding two icons to a gtk.Entry in PyGTK. The icons signals are handled by the following method
def entry_icon_event(self, widget, position, event)
I'm trying to differentiate between the two ...
1
vote
1answer
980 views
How do you check if a widget has focus in Tkinter?
from Tkinter import *
app = Tk()
text_field = Entry(app)
text_field.pack()
I want to be able to check if text_field is currently selected or focused so that I know whether or not to do something ...
1
vote
1answer
536 views
Redirect Entry form in SharePoint back to itself once entry submitted?
The issue I have is that people in my group are using a link to an Entry Form to post new itmes to a SharePoint list. Everytime they click 'submit' to post new item, SharPoint redirects them to the ...
0
votes
1answer
20 views
Subnet entries in the routing table
I am looking into a routing table issue that is a bit perplexing. Consider the routing table below. I am curious how the subnet entries get added to this table. Primarily the destinations ...
0
votes
4answers
75 views
php - duplicate entry
what should do if the entry are doubled?
<?php
require_once('auth.php');
session_start();
$exam = $_SESSION['exam'];
$subject_id = $_SESSION['exam'];
$_SESSION['sub'] = $subject_id;
...
0
votes
1answer
29 views
python entry widget tuple combo
I've been playing with combining entry widgets with tuples in python 2.7 tkinter. With this code, I should be able to enter the name of a fruit, search for it in the fruit bowl tuple, and if it's in ...
0
votes
2answers
32 views
Multiple entry points to a storyboard
I need to make a set of decisions in the AppDelegate on launch - depending on the outcome of those decisions I need to go to specific parts of the storyboard.
So my question is - WITHOUT using any ...
0
votes
1answer
30 views
Django create if doesn't exist
I have a Django application that reads data from a web API and puts it in a database.
Is there a way to create a new object from a mode but prevent the duplicate exception if the object already ...
0
votes
2answers
22 views
Freebase Kabatas Erkek Lisesi Map location is incorrect [closed]
Map location shown in Kabatas Erkek Lisesi entry in Freebase is incorrect. I was unable to edit the map location to correct it. You may find the correct location via Google maps with "Kabatas Erkek ...
0
votes
2answers
30 views
Counting duplicate entries and sorting them based on category
Just need some help on how to go about using a SQL statement that checks for duplicate entries in a column called interest_desc and then sorts them by what categoryID they are assigned to.
The ...
0
votes
2answers
50 views
C++ Map and Java Entry
map<string, pair<int, int> > common;
map<string, pair<int, int> >::iterator cIter = common.find(code);
if(cIter == common.end())
{
...
0
votes
0answers
52 views
mysql duplicate entry
I am having problems to setup my wordpress site with famous 5 minute installation.
With a clean installation I've got the following errors during the installation:
WordPress database error: ...
0
votes
1answer
45 views
Will Microsoft make exceptions on ther BizSpark entry requirements
The company I work for is about three and a half years old but we haven't started developing software until recently. Is the less than three years old rule absolute or will they make exceptions?
...
0
votes
2answers
91 views
Python 3.2.1: Converting Entry to Number
I am, on my own, trying to create somewhat of a Python "The Price is Right". My problem is, I'm trying to convert the Entry to a number. See the code below:
...
Podium1Bid = Entry(Point(42.5, 35), ...
0
votes
1answer
44 views
advanced format of dictionary entry in open-source dictionary program like GoldenDict
I want to find some format for advanced entry in Icelandic-Czech dictionary for any open-source dictionary program like GoldenDict.
I have looked at DSL format from Abby Lingvo but Icelandic is not ...
0
votes
1answer
76 views
Tcl/Tk: entry + listbox : how to convert it to a widget?
I adapted code from Brent Welch's book so that my entry box can be filled using listbox. Can the code listed below be improved upon? Also, I want to convert this code into a widget so that any one ...
0
votes
1answer
72 views
Using a generic Pair class and a Splaytree to count and store words and their frequencies in Java
I'm implementing a splaytree to hold words and their frequencies and chose to create a Pair class that would hold each word-frequency (key-value) pair. That is, each node of the splaytree holds a pair ...
0
votes
0answers
36 views
How to inherit another module in a gxt?
I am new to gxt. I have a gxt project named "myApp" and I want to use another gxt project "sampleProject" with inherit tag. In Maven.xml, for the goal gwtCompile, I have given the jar file, source dir ...
0
votes
2answers
105 views
Entry selection list with tkinter
How can I generate a normal selection list (like the "State" field in any HTML form for postal addresses) using Python tkinter? As illustrated below, the Listbox widget displays all the selections in ...
0
votes
0answers
56 views
hibernate validator: validate a map entry
In Hibernate Validator is it possible to validate a java.util.Map entry? The documentation says to use the @Valid annotation, but I am not sure what effect this has. I have the following fragment, and ...
0
votes
0answers
184 views
400 Bad Request on Update Google Calendar Entry
Problem with update Google Calendar Entry in Android
I'm using for update Calendar Entry lib:google-api-java-client v1.5 and this example from API.
I have good results for Creating and Deleting ...
0
votes
0answers
47 views
select most recent date for each id - SQL Server query
Hello I have a sql server table having following form
id | date
1 | 2/3/2011
1 | 4/1/2011
2 | 3/8/2011
4 | 1/9/2011
2 | 3/3/2011
.
.
.
into witch I ...
0
votes
2answers
137 views
ASP.NET 2.0 InterlockedIncrement Error
I am tasked with troubleshooting an ASP.NET 2.0 application that was moved from a 32-bit server to a 64-bit server. The application wasn't written in Visual Studio but in something like FrontPages. ...
0
votes
1answer
95 views
Haskell: List comprehension of Glade entries
I want to make an entries :: Map(String -> Entry) so I can easily access each entry by name. To this end, I have the code
Just xml ← xmlNew "blah.glade"
...
entries ← fromList $ ...
0
votes
1answer
166 views
Tcl/Tk: entry button - getting values into entry without passing entry
I am implementing an entry and button with the following functionality. On clicking the button I will get a list of check buttons. After selecting check buttons they should get reflected in the entry. ...
0
votes
1answer
61 views
Cannot enter long lines of text for horizontal html scroll box
I want to have a scroll box on my blog so that I can show code for my readers. However, when actually pasting the code between the opening and ending "divs" the text wrapping of the entry area where ...
0
votes
1answer
67 views
Pass Movable Type variable from one page to another
I have an events page for the site in question, where the date, time, location, etc. of each event are listed in a table row. See here.
Each event is actually an "entry" in Movable Type, and the ...