The entry tag has no wiki summary.
0
votes
1answer
8 views
Double Entry in Database when inserting from form using PHP & MySQL
I am trying to create a web application. I am new to PHP & MySQL. When I insert data into my table using PHP, double records of the entry are made into the table. I am using XAMPP. Please help me ...
0
votes
2answers
27 views
Radiobuttons are modifying wrong values tkinter
I am working on a script with tkinter, but something weird is happening...
I have two radioButtons:
way=False
RadioButton0=Radiobutton(root,text="From",variable=way,value=False)
...
1
vote
0answers
7 views
expressionengine search {auto_path} wrong entry
I'm having trouble configuring the search results, linking to that specific result.
I've set the channel search preferences so that {auto_path} links to the relevant template group and template and I ...
0
votes
1answer
36 views
set the text of an entry using a button tkinter
Thanks for reply.
I am getting my feet wet with Tkinter.
I am trying to set the text of an entry using a button in a GUI using Tkinter.
This GUI is to help me classify thousands of words. into five ...
1
vote
1answer
55 views
Get the same input multiple times in python tkinter?
I am making a program to get multiple user names and store them in a XML file. The XML part works fine, but I am having trouble with the GUI. I want to be able to ask the user how many users he wants ...
0
votes
0answers
17 views
Calling WSASocket from DllMain lead to hand-up
I need to destroy some object when some my dll is unloaded.
This object contains thread, that sometimes call WSASocket function (for reconnect connection).
So I call destructor from DllMain in ...
0
votes
1answer
34 views
Getting XML String value of SyndEntry with ROME
I'm currently working on a project which implies XML feed parsing (Atom 2005) and I'm using Rome to do this.
I have some SyndEntry objects, and I need to convert them to XML as standalone Entries ...
0
votes
2answers
33 views
Ignoring invalid entries
My title isn't exactly the best but I'm not sure how to name what I am trying to do. Either way, I have a case-switch...
switch (input) {
case "A":
Item item = new Item();
...
4
votes
1answer
54 views
What is the significance of the number 4 when one feeds a callback to the show argument of a Tkinter Entry Box?
Question
Why is my random ascii character selector function outputting fours, and what is the significance of the number four in this context? Why am I not recieving an error message?
Remember, the ...
0
votes
1answer
56 views
Converting SyndFeed to SyndEntry with Rome
I'm currently working on a project which implies XML feed parsing (Atom 2005) and I'm using Rome to do this.
I have currently two kind of XML structure to parse.
The first type :
<?xml ...
1
vote
1answer
44 views
Python Tkinter entry widget validation
This is my code
from Tkinter import*
root=Tk()
def mytest():
var=entry.get()
print var
return True
entry=Entry(root,validate="key",validatecommand=mytest)
entry.pack()
root.mainloop()
...
0
votes
1answer
37 views
Taking values from dialog box
I am making a GUI for a download manager.
When the OK button is clicked, I would like the command execute to be launched. I would like it to take the values from my dl_dialog function i.e. url, path, ...
-5
votes
1answer
51 views
c# windows form that will share the a single database [closed]
I have a data entry windows form application using c#. I want this application to run on another pc but will share the same database. What possible solutions that I'll do?
0
votes
0answers
40 views
GUI interfaces for mysql [closed]
I'm looking for a GUI tool for mysql database. It has to have the following features:
Provide a way for administrating mysql database (create tables, create new fields, etc.)
Provide a way to ...
1
vote
1answer
62 views
mouseenter rollover effect only works after second entry
I've tried to find similar posts on this specific matter with little success so hopefully someone a little more experienced with JQuery could shed light on my problem.
I'm currently working on a ...
0
votes
1answer
45 views
tkinter entry assistance Python3
I am a GUI that uses an entry field, I want the delete button to delete the end character held in the index within the entry field. I have managed to get my clear button working, by doing the ...
2
votes
1answer
41 views
Set maximum length of data in ttk.entry and limit to interger only
I am wondering how you can set the maximum amount of characters allowed into a TTK entry field. I also want to limit the entry to type integer only, seem to not be finding much online. Anyways here is ...
0
votes
1answer
60 views
Tkinter check if entry box is empty
Could someone tell me how to check if an Tkinter entry box is empty?
In other words if it doesn't have a value assigned to it.
Language has to be Python.
Thank you for your help!
0
votes
1answer
30 views
Why Entry.insert executed without event?
I'm writing a simple calculator by using python 3.2 and Tkinter libery.
When I'm run my programm, it print in text field numbers which need to be printed only after event. What i did wrong?
from ...
0
votes
1answer
93 views
Tkinter Disable several Entry with checkbutton
With Python 2.7, I would like to turn the state of an "Entry" widget to normal/disable thank to a checkbutton.
With the help of this question Disable widget with checkbutton?, I can do it with 1 ...
0
votes
1answer
33 views
Binding Return to each element in an array of ttk Entrys
I'm using tkinter to create a "grid" like structure that displays the contents of an eeprom in entry fields.
for byteRow in range (0, 16, 1):
for byteColumn in range (0, 16, 1):
...
1
vote
1answer
88 views
Python: change entry colour dynamically with Tkinter
I am getting problems with Tkinter after() method.
Actually, what I want to do is to change the background colour of some entry boxes as soon as times passes. Let's take this piece of code (which is ...
0
votes
1answer
74 views
Move The New Record Entry Row In Access Table To The Beginning Row
Is it possible to move the "New Record Row" in an Access table to the beginning of the table?
For example, say you have 200 items entered into your table, you would have to scroll the whole way down ...
0
votes
1answer
44 views
Expressionengine PHP calling
I wrote the following PHP function to return the current category based on segment 3 URL.
<?php
$this->EE =& get_instance();
$seg3 = $this->EE->uri->segment(3);
$categoriess = ...
0
votes
1answer
31 views
Tkinter Error when using Entry Delete Method
In my game, I have an __init__ function which creates a set of seven entry boxes, like so:
self.string1 = StringVal()
self.entry1 = Entry(frame, textvariable = self.string1).grid(row = 4, column = 1, ...
0
votes
1answer
48 views
getting the contents of each entry in a loop
I'm using tkinter with Python to get a query from the user and print the contents of each entry in a loop. However, only the text of the the last entry gets printed. What should I do to fix the ...
-3
votes
1answer
120 views
Action Script 3 mouse over questions
My father want me to create a button, with 3 different entry points. One from the bottom which gives me a sudden "N" sound, one from the right side that it determine the speed I'm moving my mouse and ...
0
votes
3answers
126 views
How to create unique ids?
How can I create unique ids?
Simple question but it must be possible with following restrictions:
20+ laptops don't have access to a network connection for some days and will produce 10k+ entries ...
0
votes
1answer
132 views
Getting the textvariable out of a python Tkinter entry widget?
I'm trying to bind a function to my Tkinter root that reacts when the user presses return. Here's the code:
from Tkinter import *
def returnPressed(event):
print repr(event.widget)
master = ...
0
votes
3answers
221 views
Symfony2, Doctrine, update db entry without queryBuilder
To save entry to db we can use:
$em->persist($entity);
$em->flush();
But how can we update existing entry without using $this->getEntityManager()->createQuery() ?
Can we?
I'm ...
0
votes
1answer
102 views
Fix Query On Duplicate entry in mysql
Hello Guys i Have This Query
(select 1
from (
select count(*),
concat(
(select
(select distinct(
concat(table_name)
))
from ...
0
votes
3answers
109 views
Custom map entry set - Is it possible?
I am making a class that maps Strings to Integers. I want to be able to get the Integer associated with a particular String and iterate through the entries, which are defined as another class that ...
2
votes
1answer
215 views
python: Taking an Tkinter entry value
I've been trying to get an entry value (the S1 in the code) to set itself as a value (STR in the _attributes dictionary), and I just can't get it to work. I want to make this an eventual toploop, but ...
1
vote
1answer
255 views
Python - Tkinter - i want get() value from Entry to use in function
I can not retrieve a variable from "Entry" and then enter the variable to a function. For example, I want to retrieve "NbF" which is a variable "entry". I did in "set" and I can retrieve it with "get" ...
1
vote
3answers
316 views
Tkinter - setting string variables and getting entry values when looping
My goal is to be able to pass string variables to two different entries for user validation and return the user modified values. The code works fine if it is executed a single time; however, when ...
0
votes
1answer
31 views
Django entry creating. Method in views/other file or as a method of model class
Django creating entry.
1) As seen in Django docs:
class Article(models.Model):
user = models.ForeignField(User)
title = models.CharField(#some_params)
content = ...
1
vote
2answers
241 views
SQL Prevent Duplicate Entry [closed]
Users send sql queries and sometimes (usually server busy) sql lines duplicated. I want prevent it. Example if user send same query at the same time, sql accept only one query. I dont want delete it ...
0
votes
2answers
68 views
My program To_do Liste doesn't work, because of the SQLite
Can somebody help me I wrote this app, but it doesn't work and i don't find the solution.
1st error: java.lang.illegalstateexception could not read row 0 col 1 from cursor window. Make sure the ...
1
vote
1answer
174 views
Deleting rows in linked MySQL tables and decrementing count in another table
I am trying to create (java-based) messaging webapp. The messages are stored using MySQL using three tables:
'messages': has two columns, an id primary key ('idmessage') and the message ('message'). ...
3
votes
3answers
195 views
Java HashMap implementation has 'next' member in Entry class. What's the use of it
Java HashMap implementation has 'next' member in Entry private class. Since, a new value for a key will override the old value, what's the use of 'next' member in the Entry class.
static class ...
0
votes
5answers
134 views
How do I count the most common entry in a table using sql?
I've got a race entry table with loads of different members in it. I want to find out the member that has been in the most races so far. How do I go about doing this please? I am using Oracle through ...
1
vote
1answer
83 views
storing a string via. Entry - Tkinter/Python
I'm creating a program that helps solve quadratic equations - this is only an outcast to the layout, but essencially when i input the parameters (A, B and C) it should store it and then i can use it ...
0
votes
1answer
53 views
Product shouldnt store MySQL if there no value.
I have entry table Like following format in php.. The 'product' row is fetch from MySQL table. Hence it will display all list in entry page.
Date. Product. New stock sale
1-1-12. Xyzzy. 6 ...
1
vote
1answer
53 views
Blackberry closing UiApplication Alternative Entry Point
I have a requirement to have a background process using Application, while also having a UiApplication through an alternative entry point.
Now, everything works great and I'm able to communicate ...
0
votes
1answer
171 views
ExpressionEngine missing channel entries
I am working on a new web app which is based in ExpressionEngine and for the most part I am basing the content on channel entries. However I am experiencing some very weird issues with the exp channel ...
1
vote
1answer
124 views
tkinter ttk Entry widget -disabledforeground
I was trying to change the color of the words in my ttk.Entr widget when I set the state to disabled, I looked up the manual, there's an option called disabledforeground, so I wrote a test snippet as ...
2
votes
2answers
182 views
How do I add images plus caption and credits to a expressionengine blog posting
A blog posting (single entry page) consists of text and images.
The channel “blog” has the field group “blog_entries”. The interesting fields in the fieldgroup are "blog_body" and the three ...
0
votes
1answer
253 views
Map Entry conversion with Map Tree
So what I have been trying to do is use a TreeMap I previously had and apply it to this method in which I convert it into a set and have it go through a Map Entry Loop. What I wish to do is invert my ...
-4
votes
1answer
92 views
MYSQL How to hide row if colum2 is the same as column1 in next row [closed]
username | versus
name1 | name2
name2 | name1
name3 | name4
name4 | name3
When I query it I get this on php
name1 vs name2
name2 vs name1
name3 vs name4
name4 vs name3
But I want to ...
0
votes
0answers
23 views
Track web page entry point
I have an eshop and created a paper promo poster with a unique url that leads directly to the promoted product.
webpage.eu/book -> leads to the book that was promoted on the poster.
I need to know ...


