English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - August 2007

[Selected]: All categories Computers & Internet Programming & Design

how can i put a value from a JFrame to a textfield in another JFrame? For example, the value is in MainGUI JFrame and i want to put the value in MainGUI to the textfield in ComputeGUI JFrame...tnx...

2007-08-23 21:40:06 · 2 answers · asked by ♥♫HiKaRu_ShiDoU♫♥ 3

I try to use (Actel Libero)ViewDraw but I don't know how to use it.
Please, tell me how to it ,if you know.
Thank you.

2007-08-23 20:52:47 · 1 answers · asked by Daovalath P 1

I want to write a vba with date range as criteria.
Search a range of cells with given criteria and replace cell value with its corresponding value.
Example of Criteria :
1Jan 06 - 31 Jan 06 return value as Bazel
1Feb 06 - 28 Feb 06 return value as Cairns

2007-08-23 14:57:49 · 5 answers · asked by Antonia 2

If you are programming a .bat file, what command can you use to add a menu? for example, if i wanted a menu that performs a different task when a different number is pressed, such as if 1 is pressed, execute :1, if 2 is pressed execute :2, and so on...
What commands would work?

2007-08-23 12:11:54 · 5 answers · asked by Anonymous

The editor here is wreaking a little havoc with my code, but I'm going to hope you can decipher what I'm after here. I have simplified this code bit about as far as I can to isolate the problem, while still leaving it executable:

import java.text.*;

class dateTest {

public static void main (String[] args) throws Throwable {

SimpleDateFormat sdf = new SimpleDateFormat("MM/DD/yyyy");

String data = "07/12/2007";

System.out.println(sdf.parse(data));

}

}

The problem is, the output looks like this:

Fri Jan 12 00:00:00 CST 2007

Month parsing doesn't seem to be working at all. I've done this dozens of times and I'm starting to think maybe I'm losing it. :)

2007-08-23 11:51:39 · 2 answers · asked by David G 5

2007-08-23 11:26:56 · 7 answers · asked by Anonymous

site to get a FREE website? i really want an EASY TO USE webpage that i can DESIGN MYSELF (no set designs to choose from, or at least ones that have a lot of options). also, nothing that requires downloading a program or anything.

p.s. freewebs doesn't work on my computer...

2007-08-23 11:16:29 · 6 answers · asked by Anonymous

Hello, I'm learning about Java Server Pages and I need a place to play with some example code -- does anyone know of a *FREE* webhost thats supports JSP? Even a site with pathetically low bandwidth restrictions, small disk space, ads on the page, etc will suffice -- I just want to avoid installing the servers on my machine if it can be helped. Thanks.

2007-08-23 10:56:32 · 2 answers · asked by Tigian 1

I have hundreds of columns of data, each one 9 rows, and I would like to turn each column into a record set in a MySQL database. I have no idea how to do that without typing each one into PHPmyAdmin. Is there some way I could "copy and paste" it into the database?

2007-08-23 10:47:41 · 5 answers · asked by Anonymous

NOT in ASP.NET...in CLASSIC ASP.

2007-08-23 09:41:30 · 2 answers · asked by Scotty Doesnt Know 7

Im 17 and ive been trying to learn some kind of coding programing in about a year or two from now I'll be going to collage to get a bachelors in computer programing. I'd like to get a head start and learn as much as i can. I am a beginner i know the basics of HTML and thats about it. Any and all programing languages, that can be programed using Windows XP, I have a beter than average knowledge of computers and what things mean. In advance, thanks.

2007-08-23 09:28:21 · 8 answers · asked by Trevor J 1

Email & IM
Direct link
HTML Tag
IMG code

each of the have a different link but I need to know which one would be the URL....Thanks

2007-08-23 09:09:45 · 2 answers · asked by wingsfan1979 2

I am more familiar with C# where I would:

Console.Writeline("{0}, {1}", variableOne, variableTwo);

(Or something very similar) What is the equivalent in Java?

Thanks for your help!

2007-08-23 09:00:12 · 2 answers · asked by narsilshard 1

Can someone explain to me how to use
the is_opened method in fstream library? I have a bit of problem with the syntax. The method would return true if the file can be opened or false if it cannot be. Can you give me an example. Thank you.

2007-08-23 08:39:40 · 3 answers · asked by coolbun2003 1

If you mkae a website (like a domain one) meaning www.something.com instead of using a place like freewebs, how much does it generally cost?

2007-08-23 06:57:01 · 4 answers · asked by sun 2

I have several wav files that I need to combine into one single wav file in UNIX. Are there any command line applications out there that would merge these files together, doesn't have to be wav, can be mp3 or au.

2007-08-23 04:10:54 · 2 answers · asked by Brian_Jacobs 2

Hey guys! I really need help on this question! I've been stuck on this problem for a week >.< Here it goes:

Write a program that reads integers until end-of-file and then prints YES if the numbers do not decrease at all and NO otherwise. (eg: 1, 2, 3 gives YES | 1, 0, 3 gives NO)

I havent even made it to the compiler yet coz I can't even get the code to make sense to myself >.
#include
main()
{
int a, b;
FILE *fin;
fin=fopen("filein.dat", "r");

fscanf(fin, "%d", &a);
fscanf(fin, "%d", &b);

while( fscanf(fin, "%d", &a) !=EOF) {
while(a fscanf(fin, "%d", &a);
fscanf(fin, "%d", &b);
}
printf("NO\n");
}

which is obviously horribly horribly wrong. I'm only in my 2nd week in this programming module so I'm completely noobish =X Can someone please teach me? Thanks!

Oh, and please don't use any complicated codings coz my tutor won't believe I know all that =x

2007-08-23 04:08:20 · 2 answers · asked by axeile 2

I want one for firefox/other browsers, and one for Internet Explorer (What an annoying program)

2007-08-23 03:52:35 · 5 answers · asked by Kizzeith 1

2007-08-23 03:50:28 · 2 answers · asked by Vikas Kumar 1

2007-08-23 03:13:37 · 2 answers · asked by Anonymous

Hi..
I am trying to divide one page in two frames. I am trying to use a div instead of frames...
The page is a navigation on the left hand side. i need to see everytime the navigation on the

left, in other frame.. there wil be the content..

how can i do that?

2007-08-23 00:52:35 · 5 answers · asked by Ankush S 1

I am trying to direct people to various places, such as my website, and rather than post the URL, I would like to say, e.g. 'for further info, go to my WEBSITE, and the word website is the link. Simple answers please - I am really rubbish at this!

2007-08-22 23:51:58 · 8 answers · asked by RJ 1

Using Open Office having difficulty in formating an 'IF'. formula.
require to provide a simple bank style statement - ie in D3
"IF C3andD3 <1 'ISBLANK' otherwise SUM= D2-C3+D3
D2 being opening balance, C3 a debit or D3 credit - and so on
down the sheet BrianUK

2007-08-22 22:29:12 · 4 answers · asked by brian c 2

I know that you can just start typing, but you can put a Text Box in virtually all other WYSIWYG web site builders. On Frontpage, the help tells you how to work with the text but never tells you how to INSERT A TEXT BOX!!!! AHHHHH!!!!!!!!!!

2007-08-22 20:23:19 · 1 answers · asked by Brad H 2

2007-08-22 19:04:07 · 5 answers · asked by jeanne g 4

I've built my own login system for a local small business who offers internet for free for the 1st half hour. It works perfectly, and it's okay the way it is, but I want to take it 1 step more. I want to place an algorithm that is date dependent in it. For the password, here's what I was thinking:
set value=
set /p value=
if '%choice%'=='%date% + 100 / 2' GOTO successful login

Now, I know that ^ will probably give me something other than what I want. What I want to do is remove the /s (8/22/07 would then be 82207) and add an equation to it.

The reason that I want to do this is so that it would be fairly hard to crack (they only charge $6/hour, so nobody's going to bring out the big guns) and there wouldd be a new password each day without making manual changes.

I have no idea if this is possible with a batch file. After the login is verified as correct, I want it to start another specified batch file. Please, if you can help, I'd greatly appreciate it. I'm a volunteer programmer

2007-08-22 17:08:55 · 2 answers · asked by T8r 1

2007-08-22 16:39:15 · 2 answers · asked by Anonymous

please help me for my assigment....

2007-08-22 16:28:04 · 2 answers · asked by Letua_BoyZ@KL4 1

assap!! i need it urgent..

2007-08-22 15:08:10 · 1 answers · asked by mhel 1

fedest.com, questions and answers