4,919 Topics

Member Avatar for
Member Avatar for EdTheUniqueGeek

I'm still learning Linux, and have been for the past 7 years, but am still rusty on scripting. Can someone tell me if it is possible to create a script that will change the DNS IP address of your interface from dynamic (from DHCP) to a specific static IP address? …

Member Avatar for eggi
0
195
Member Avatar for cproud21

I have a GUI app which in which I need to pass a value from an array to a List... here is what I have... The problem occurs when I try to pass the array element to the ActionListener... im not sure exactly how to do it... [ICODE] import java.awt.*; …

Member Avatar for LDeArm
0
159
Member Avatar for ceyesuma

Is it possible to set a cb on the GUI and load some XML into it from an external class?

0
54
Member Avatar for Acidburn

Hey guys, my main thread seems to stop when i start 2 new threads and start them off. It sits and waits for the 2 threads to finish. The two threads are created off a factory class. Is this why? Its not created in the GUI class? Cheers.

Member Avatar for dickersonka
0
65
Member Avatar for sma.arch

Hi, I have set up a basic HTTP server, using code similar to that on [url]http://fragments.turtlemeat.com/pythonwebserver.php[/url]. I have created a BaseHTTPRequestHandler, and modified the do_GET function. This server is linked to a FLEX GUI, which requires a crossdomain.xml file in order to get data from another domain. If the server …

Member Avatar for jlm699
0
142
Member Avatar for f.ben.isaac

I got some newbies questions, i hope to hear from you... Feel free to answer any! I will appreciate it so much if you answer them all :-) 1. Do AV's generally (windows security specifically) trust application written under .NET more than the ones written written under MFC & Win32 …

Member Avatar for ArkM
0
126
Member Avatar for IrishMoon

Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 11:26:41, on 11/15/2008 Platform: Windows XP SP3 (WinNT 5.01.2600) MSIE: Internet Explorer v7.00 (7.00.6000.16735) Boot mode: Normal Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\Program Files\Lavasoft\Ad-Aware\aawservice.exe C:\WINDOWS\system32\spoolsv.exe C:\Program Files\Common Files\LightScribe\LSSrvc.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\WINDOWS\system32\nvsvc32.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\RTHDCPL.EXE C:\Program Files\HP\HP Software …

Member Avatar for jholland1964
0
154
Member Avatar for Falkoner1

I'm trying to find a good, easy to use GUI for an inventory in my game, all I really want them to be able to do is select items, maybe move them around into different slots, and be able to modify variables based on where things are moved. I plan …

Member Avatar for Freaky_Chris
0
103
Member Avatar for peter_budo

I working on assignment to create bank management GUI with swing. Right now I'm messing with login. Instead of using JDialog as many may suggest to use I used JFrame. [attach]8150[/attach] In case of any error messages on login attempt I wanted to display error above all previously displayed content, …

Member Avatar for peter_budo
0
143
Member Avatar for java-clueless

I have failed my java programming class but I am retaking it in February. I have untill then to figure out how the heck to do all this. I have uploaded my program, it is an inventory program for dvds. I was supposed to create a GUI that I thought …

Member Avatar for javaAddict
0
99
Member Avatar for amerninja2

Can someone either give me a couple links, or some code with explanations on how to create gui (graphical user interface) buttons that are like boxes with text and color in them, that are equal to a command when you click them. Also, how do you create a gui slider …

Member Avatar for amerninja2
0
179
Member Avatar for jackieblock

I am just learning Java. I am trying to do a GUI to calculate road trip data. My program compiles, and a window opens, but only the top title line shows. Nothing shows in the center or south areas. What do I need to change? Here is my file. [code=syntax] …

Member Avatar for quuba
0
148
Member Avatar for localp

i am new to java, i am writing this program so where when the user inputs RGB values the resultant colour should be displayed on a frame. (note that you cann't use the [B]color class in java[/B]) 1.) i have successfully completed coding for where the user inputs the RGB …

Member Avatar for peter_budo
0
161
Member Avatar for king_khan

Please solve mysome Queries. In java, Why we use enable Events() method[B]?[/B] Which technique/concept can be use to implement multiple inheritances in java[B]?[/B] How can a GUI component handle its own events[B]? [/B] My email: [email]ahsan.mit@gmail.com[/email]

Member Avatar for stultuske
-1
74
Member Avatar for BestJewSinceJC

This is supposed to draw a line through the JButtons when square9 is clicked. It doesn't work but there are no errors and I don't see what the problem is. Ezzaral gave me the code to draw the line earlier. Obviously, the winning squares aren't always diagonal, so I will …

Member Avatar for BestJewSinceJC
0
81
Member Avatar for ihatehippies

Currently running python 2.6, wxpython 2.8 unicode win32 on the vista platform... When I try to run a sample app in the wx tutorial section the program stops responding as soon as I mouse over it. Heres the code. [CODE=python]import wx """Example with a 2D grid of sizers of sorts …

Member Avatar for Stefano Mtangoo
0
155
Member Avatar for Stefano Mtangoo

Hello all, greetings! I have been playing with DB, seom time ago and want to resume soon where i got stuck. I want to make MySQLdb to get working with wxpython GUI. I got stuck on how to attach the tuple I got from select command to series to the …

Member Avatar for Stefano Mtangoo
0
80
Member Avatar for squiddog

Hi all - I need some advice on how to handle multithreading in a GUI. I wrote an application in C# using only the GUI thread (see screenshot) and at times there are "long operations" where the database is being accessed and the right hand pane is being filled with …

Member Avatar for Jugortha
0
136
Member Avatar for dnmoore

I have the following GUI code but my JLabel for results doesn't work when either of the buttons are pushed [code] import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TempConverterPanel extends JPanel { private JLabel input, results; private JButton output_f, output_c; private JTextField temp, fahrenheit, celsius; public TempConverterPanel() { setLayout …

Member Avatar for dnmoore
0
97
Member Avatar for ihatehippies

I'm fairly new to making GUI's in tk so I downloaded activestates GUI builder from sourceforge. It has a very straightforward drag and drop interface and is easy to pick up. However I ran into a problem trying to edit the widgets it creates. It makes 2 files, the first …

Member Avatar for ihatehippies
0
110
Member Avatar for dnmoore

I need a little help converting my GUI panel into JButtons instead of text for some parts [code] //Davina Moore //TempConverterPanel //November 6, 2008 import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TempConverterPanel extends JPanel { private JLabel input, results_f, results_c; private JButton output; private JTextField fahrenheit, celsius; public TempConverterPanel() …

Member Avatar for dnmoore
0
118
Member Avatar for faisaly

Dear All, I've three questions. Kindly answer these. 1. Why we use enableEvents() method? 2. Can a GUI component handle its own events? If yes; then how? 3. Which technique/concept can be use to implement multiple inheritances in java?

Member Avatar for stultuske
0
114
Member Avatar for julseypart

Hi, i am trying to find a good final year project to do which is relevant to the modules im studying and course (bsc software development). I've thought of making an Online Backup Application / Manager which would facilitate the storing of files online with various other functions such as: …

Member Avatar for peter_budo
0
134
Member Avatar for Rocket452

Hello, I am trying to display SQL query results in a GUI. Right now I am displaying the information in a standard TextBox, but I would like to be able to sort by the different columns and stuff like that, much like if I had a excel spreadsheet open with …

Member Avatar for rapture
0
459
Member Avatar for java-clueless

Fig.2.7: Inventory.java [code=java] // Inventory program import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; import javax.swing.JOptionPane; public class Inventory { private static double totInventoryValue = 0; public static void main( String arg[] ){ product invProd[] = new product[3]; Scanner input = new Scanner( System.in ); for (int iter = 0; iter < …

Member Avatar for Ezzaral
0
90
Member Avatar for schmidty169

This is for a school project: write a GUI application that will generate multiple 3 digit numbers and count how many times each 3 digit number appears. To make the program more useful, provide the following: A label that displays the 10 most common 3 digit numbers and the number …

Member Avatar for LizR
0
109
Member Avatar for adetya

[code=java] public class GameOfLife implements GameInterface { private boolean[][] originalMap, // The initial cell configuration map, // The current cell configuration newMap; // The next generation configuration private GameGUI gui; private int generation = 0; private FileIO fileIO; // GameOfLife constructor public GameOfLife() { originalMap = new boolean[MAX_ROWS][MAX_COLS]; map = …

Member Avatar for masijade
0
178
Member Avatar for luke77

Hi everyone, I'm new to programming and am building a very basic rss reader for my first major project with python and GUI. As it is, I have it set up so that if I input an exact rss feed address (ex [url]http://news.google.com/?output=rss[/url]) I can retrieve stories. Id like to …

0
62
Member Avatar for onlinesynch

The [B][URL="http://www.onlinesynchronization.com/mysql_synchronization.html"]Synchronization [/URL][/B]Manager enables one to set up data synchronization scenarios from one MaxDB to one or several MaxDB servers. The Synchronization Manager uses the standardized XML-RPC to enable asynchronous data transfer. An easy-to-use GUI is also included to simplify the definition of the synchronization scenarios. The new tool also …

0
98
Member Avatar for yonghan

Hi all,i need help about JTable.I'm using netbeans..I got a table contains PLU,nama,harga,qty,total..I use TableModelListener to listen to valueschanged in column..What i need help is how to create a new row if the user press enter key,and set focus to the first column of the next row..Thanks a lot..Here are …

Member Avatar for yonghan
0
101
Member Avatar for JavaNewbieEK

I am kind of new to JAVA and I am trying to hide a user's input (such as when the user types a password). I am not using any type of GUI just running my small programs directly in the UNIX Terminal. Is this possible to do simply, unfortunately I …

Member Avatar for stultuske
0
477
Member Avatar for Panarchy

Hello I [B]have[/B] to learn C++ and how to code GUIs (for a new programming language). I need to be able to learn all this within a month. I have a little bit of experience (tiny bit of PERL, and tiny bit of Python... also a tiny bit of CSS …

Member Avatar for Panarchy
0
101
Member Avatar for Taker

Hi i am tryin to write a recording class in java which i have done but i have to convert the recording class into a GUI i have done the coding for it but i want buttons that allows you to cyle to the nex and previous record detail if …

Member Avatar for Ezzaral
0
151
Member Avatar for mathijs

hey i'm currently working on a simple rpg in python. First i was gonna make it text-based but now i've read the wxpython tutorial and i want to try an create a GUI for it. My sister is gonna make some artwork for me (i'm not good at that kind …

Member Avatar for mathijs
0
602
Member Avatar for vmars

Greetings: I am having trouble with reading the code in thread "Tutorial: GUI programming with wxPython" ([url]http://www.daniweb.com/forums/post623598-3.html[/url]) Where tut shows code: [code] import wx """Example with sizers for dynamic resizing.""" app = wx.App(redirect=False) window = wx.Frame(None, title = 'Sample GUI App', pos = (100,100), size = (400,500)) background = wx.Panel(window) …

Member Avatar for vegaseat
0
194
Member Avatar for guilhermegrg

Tabula is a Java Web Framework, comprised of several subprojects, such as a server and GUI tools. Right now there is an early alpha version of the server and REST editor available. The framework is based on SOFEA, removing the UI responsibilities from the server to other applications. The server …

0
50
Member Avatar for xyster

Hello, I have what is probably an obvious question. I have a basic GUI, one is bsaically no more than a menu in its own class along with a bunch of support classes to do what i want. Another GUI which is for editing the information whcih the main GUI …

Member Avatar for xyster
-1
86
Member Avatar for Stefano Mtangoo

Hello All, Greetings I need freeware that can help me do with drwing Ideas into blocks. I mean design may be codes and GUI visually. I don't know how to put it well but just need that one Appreciations Steve

Member Avatar for Stefano Mtangoo
0
90
Member Avatar for three6mtaw3a

Dudes Wuudup?? I don't know if i'm posting this in the right place, but i jus need some help and fast. I'm trying to write the code for Tic Tac Toe in which A player plays against the computer. the only problem is that im supposed to make it work …

Member Avatar for Ancient Dragon
0
66
Member Avatar for thillai

[B] Hi [/B] can u explain j2ee components....once i built , how can i join with existing apps... component having no gui,then how component can be used...

Member Avatar for stultuske
0
86
Member Avatar for rione

i really need help on this, i need code for this project, please help me, thanks in advance.. (Power Set) Given an input set with entries separated by commas, output all the possible sets that can be generated from this set. Sets are described in the file power.txt The lines …

Member Avatar for Chaster
0
104
Member Avatar for gr8yt74

I recently got a virus on my computer. Where the time was, I had noticed that it was in 24 hr format & there was "virus alert" right next to it. I tried gettint to my control panel, however it was not there. I checked for virus numerous times & …

Member Avatar for jholland1964
0
116
Member Avatar for vmars

WinXP Home, sp2: I am going thru the tutorial @ [url]http://zetcode.com/wxpython/firststeps/[/url] The exercises are great. BUT I am still running with 1) dle.exe, 2) python shell, and 3) an idle text input screen (Centre.py). [ C:\Program Files\Python26\Lib\idlelib\vm ] When I click on PythonW.exe it does nothing. I tried the directions …

Member Avatar for jlm699
0
291
Member Avatar for Rocket452

Hello I am using C# forms to create a GUI, and I was wondering how to make the window nonResizable. I know how to do it in Java but not C#. any help would be appreciated.

Member Avatar for Rocket452
0
59
Member Avatar for BestJewSinceJC

All I can think is that there's something fundamentally wrong with how I programmed my GUIs. I have a program that initially displays a GUI which has 6 buttons. Each of these buttons, when clicked, displays a GUI. One of these GUIs in particular is a JTable of "Teams". Each …

Member Avatar for BestJewSinceJC
0
774
Member Avatar for 3Dees

Hey, Can someone explain to me how this function works in relation to a GUI output. Public Overrides Function ToString() As String My program do some calculation and conversions and displays the resluts in a list box. I need use this function but i am not sure how it affects …

Member Avatar for Teme64
0
190
Member Avatar for BestJewSinceJC

Ok so lets say I have any GUI that needs its contents changed while it is running, so that it will re-display the new contents. An example would be a JTable that just lists things from an ArrayList. So if I had an ArrayList<GroceryList> my JTable might have Cheese Crackers …

Member Avatar for sanaulla123
0
7K
Member Avatar for programmingme

I'm in beginners Java and I have a question... I've written about 16 programs in my class so far and in all my programs this is what we would do: Create a Folder (let's call the folder Project1) Make a .java file (project1.java) then we would go to our practice …

Member Avatar for stultuske
0
104
Member Avatar for bil228

HI , I want to develop a new site whcih should store videos, images and docs.. What is the best method ? store this in database or as external file in disc ? Could you please point out pros and cons of both As performance is my main concern for …

Member Avatar for debasisdas
0
43
Member Avatar for LottaBajan2

Hi, I am very new to visual basic 6.0 and I am trying to create a guessing game in visual basic where the computer generates three numbers and the player tries to guess what they are. I am now starting the basics and I have the GUI sorted out but …

Member Avatar for selvaganapathy
0
636

The End.