Showing results 1 to 27 of 27
Search took 0.01 seconds; generated 1 minute(s) ago.
Posts Made By: claudiu_is
Forum: Java Mar 6th, 2008
Replies: 0
Views: 354
Posted By claudiu_is
Help eclipse breakpoints problem

I have several breakpoints and the debug goes in the first one, skips the next 2, then jumps directly on the last one, as if the 2 in between don't even exist. And this happened recently, with no big...
Forum: Java Dec 31st, 2007
Replies: 0
Views: 466
Posted By claudiu_is
jbpm error: Not a multipart request

I've deployed a process archive and it's error free but when I open the IE with the http://host:port/jbpm-console/upload and gives me the message: Not a multipart request.
Now when I load the address...
Forum: C# Dec 17th, 2007
Replies: 2
Views: 2,241
Posted By claudiu_is
Re: datagrid cell edit event

I`m using .NET 2k3 so, I can`t use DataGridView
Forum: C# Dec 16th, 2007
Replies: 2
Views: 2,241
Posted By claudiu_is
Question datagrid cell edit event

anyone knows what event can I fire when I edit the contents of a datagrid cell ?
Forum: Java Dec 13th, 2007
Replies: 0
Views: 382
Posted By claudiu_is
Help session problem

This is more of a JSF problem, but the solution I want is in Java (beans).
I want to build a session based application and I'm having trouble finding a good tutorial which states all the steps, from...
Forum: JSP Dec 12th, 2007
Replies: 2
Views: 616
Posted By claudiu_is
Re: another session problem

I did say fwd, not redirect :P
I can't seem to find a complete example of a session based application which states all the steps in order, from the beginning to the end, which part goes where and...
Forum: JSP Dec 12th, 2007
Replies: 2
Views: 616
Posted By claudiu_is
Question another session problem

I'm having a session problem with jsf. I've googled abut sessions and none of the results answer this question: what happens when a user logs in, copies the link, logs out and pastes the link in the...
Forum: Java Dec 4th, 2007
Replies: 8
Views: 914
Posted By claudiu_is
Re: database or csv

I`m sorry because i haven`t tried those links yet but, does Hibernate works like those 2 examples given by Ezzaral, McKoi and H2, and embedded database seems to be a very good idea , cause I`m not...
Forum: Java Dec 4th, 2007
Replies: 8
Views: 914
Posted By claudiu_is
Re: database or csv

The data will contain strings, numbers, dates, images!!!(I don`t have a clue where and how to store this ones(.jpg)). Practically, I`ll be using the data when: I execute the program and my saved data...
Forum: Java Dec 4th, 2007
Replies: 8
Views: 914
Posted By claudiu_is
Question database or csv

I`m creating a desktop application which need s to store some data. I would probably store no more than 100rows with 10-15cells. Question is, should I use csv or an sql database; which one is...
Forum: C# Nov 10th, 2007
Replies: 3
Views: 921
Posted By claudiu_is
circles erased ??

Hello, first you need to know that this is my first Win Application made in C#!!

I`m trying to draw some circles based on mouse left click coordinates but the circles disappear when I minimize the...
Forum: RSS, Web Services and SOAP Nov 8th, 2007
Replies: 0
Views: 1,102
Posted By claudiu_is
XML with PHP?

"Model oriented graphs using XML. Then represent with the help of stylesheets, in an intuitive graphic format, the BF and DF Searches of the graph. Also, offer a SVG representation of the search."
Do...
Forum: Java Oct 24th, 2007
Replies: 2
Views: 582
Posted By claudiu_is
Re: having some trouble with my project

please use [cod.e=language][/cod.e] (remove the ".")tags for your code sequence, it`s really necesary because your code is badly organized
Forum: Java Oct 24th, 2007
Replies: 1
Views: 1,503
Posted By claudiu_is
Question URLConnection problem

I`m trying to compile a small program for authentication on a torrent site but when it reaches the setRequestProperty() line throws an exception:
Exception in thread "main"...
Forum: Java Oct 10th, 2007
Replies: 7
Views: 1,190
Posted By claudiu_is
Re: write in FORMs with Java

i`ve just found out that i need session authentication(this is the tupe of authentication for trackers), does that mean that i have to work with cookies ? uhhh, cookies are new for me :(
Forum: Java Oct 7th, 2007
Replies: 7
Views: 1,190
Posted By claudiu_is
Re: write in FORMs with Java

You are talking about JavacURL right ? the cURL library for Java, well, I tried to use that but the documentation from there http://curl.haxx.se/libcurl/ is made for C. In the downloaded packets of...
Forum: Java Oct 7th, 2007
Replies: 7
Views: 1,190
Posted By claudiu_is
write in FORMs with Java

I`m trying to write a web crawler but i `don`t know how to handle the situation when i have to login to acces a site. How to type in that login form from my java program? I`ve searched on the net but...
Forum: Java Oct 4th, 2007
Replies: 3
Views: 379
Posted By claudiu_is
Re: counter on a button

thanks for the help Ezzaral
Forum: Java Oct 2nd, 2007
Replies: 3
Views: 379
Posted By claudiu_is
counter on a button

I have a Dialog window with a Button ko and a JLabel l. The button`s label refreshes at 1000ms from 5 to 1. There are 2 problems: the JLabel l it`s not displayed before the counter starts, it`s...
Forum: Java Sep 27th, 2007
Replies: 7
Views: 1,605
Posted By claudiu_is
Re: Dynamic JLabel Text

in the actionPerformed method you declare some objects that you have already declared above, that`s your mistake; just use the function to scan the text

and next time, use the CODE tags for your code
Forum: Java Sep 26th, 2007
Replies: 9
Views: 1,030
Posted By claudiu_is
Re: how to center a dialog window?

I`m using Windows XP and JDK 1.6.0_02

it almost worked with setLocationRelativeTo(parinte) except that it isn`t exactly in the center, the top bottom corner of the dialog window is exactly on the...
Forum: Java Sep 26th, 2007
Replies: 9
Views: 1,030
Posted By claudiu_is
Re: how to center a dialog window?

in the top left corner
http://img146.imageshack.us/img146/1899/screensme4.th.jpg (http://img146.imageshack.us/my.php?image=screensme4.jpg)
Forum: Java Sep 26th, 2007
Replies: 9
Views: 1,030
Posted By claudiu_is
Re: how to center a dialog window?

The Dialog class - 231(see the 1st constructor)
the dialog window is created at line 210




import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
Forum: Java Sep 26th, 2007
Replies: 9
Views: 1,030
Posted By claudiu_is
Re: how to center a dialog window?

my Dialog class is used inside the main window class, so i`m using "this" in Dialog`s object constructor, but the Dialog window is not centered;
please let me know if you want to post the code
Forum: Java Sep 26th, 2007
Replies: 9
Views: 1,030
Posted By claudiu_is
how to center a dialog window?

Hy,
I have a JFrame main window and a Dialog window, how can i use the method setPositionRelativeTo() so that my Dialog window positions centered on the main window ?
Thanks
Forum: Java Sep 14th, 2007
Replies: 4
Views: 750
Posted By claudiu_is
Re: find available drives

thx! I`ve been google`ing and going over the File functions (except this one) for over an hour..


File []drives = new File("").listRoots();
for(int...
Forum: Java Sep 14th, 2007
Replies: 4
Views: 750
Posted By claudiu_is
find available drives

is it possible to find the available logical drives? if so...how?
Showing results 1 to 27 of 27

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 7:05 am.
Newsletter Archive - Sitemap - Privacy Statement - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC