Search Results

Showing results 1 to 40 of 82
Search took 0.01 seconds.
Search: Posts Made By: Clawsy
Forum: Java 4 Days Ago
Replies: 6
Views: 202
Posted By Clawsy
I know. As a matter of fact... my project must be made for a "Software Engineering" Course (at University) and I'm leading a team so I was told we must also visually design our application coded (by...
Forum: Java 4 Days Ago
Replies: 6
Views: 202
Posted By Clawsy
Thanks Ezzaral. Useful post.
After some hours of searching I think I found how to change the look as I wanted and it's useful for all (who did not find it yet).
The "Synth" Look and Feel:...
Forum: Java 5 Days Ago
Replies: 6
Views: 202
Posted By Clawsy
Thanks for the link... however I look for a less complicated way to do this... I found this link: http://pforfun.blogspot.com/2008/11/java-transparency-tutorial.html but I don't know if is a good...
Forum: Java 5 Days Ago
Replies: 6
Views: 202
Posted By Clawsy
Hello,
I am trying to design an java desktop application. My question is: Is there a way to change the whole look? From example different titlebar, different jFrame, buttons... (designed with PNG...
Forum: PHP 5 Days Ago
Replies: 8
Views: 338
Posted By Clawsy
No, I mean if I have files like *.js and css in a folder like "/var/CMS/script.js" and the www is in the same folder as CMS, how can I make a link from html (which is in 'www' folder) to 'script.js'...
Forum: PHP 10 Days Ago
Replies: 1
Views: 237
Posted By Clawsy
I FOUND IT!

function getEmail(){
return $this->email=$mail;//incorrect. must be "return $this->email;"
}

Sorry I am very tired, I couldn't see it for hours. Anyone can do a mistake like...
Forum: PHP 10 Days Ago
Replies: 1
Views: 237
Posted By Clawsy
Hi I'm making a login panel which sends data to the same page and I use a class made by me and called 'user' that stored user information and autentification. When I refresh the page I check if any...
Forum: PHP 11 Days Ago
Replies: 8
Views: 338
Posted By Clawsy
Unfortunately I don't use any MVC yet cause I don't know :(. But I have 2 questions for *samarudge*:
1. I would have this link echo(ed) in the template header:

<script type="text/javascript"...
Forum: PHP 11 Days Ago
Replies: 8
Views: 338
Posted By Clawsy
Unfortunately I don't use any MVC yet cause I don't know :(. But I have 2 questions for *samarudge*:
1. I would have this link echo(ed) in the template header:

<script type="text/javascript"...
Forum: PHP 11 Days Ago
Replies: 8
Views: 338
Posted By Clawsy
I'm building a Content Management System on my own in PHP & MySql. I thought it's a good idea that all CMS files to be stored secure on the server "before" www folder so that it can't be accesed from...
Forum: Java 14 Days Ago
Replies: 2
Views: 180
Posted By Clawsy
No I cannot because that means I interrupt all users and when they join again.... the same thing, that exception. Users must stay connected. I use a refresh function for connection which works nice...
Forum: Java 15 Days Ago
Replies: 2
Views: 180
Posted By Clawsy
I'm developing a bluetooth messaging application which sends text messages between devices.
My problem is when I connect more than 2 devices. After sending some data between them (let us say 3...
Forum: Java 16 Days Ago
Replies: 5
Views: 279
Posted By Clawsy
Can someone please tell me why I have been down-voted for previous post? I really wanted to solution this problem. I am used to explaint a lot of students facts like this so that's why I gave ki72...
Forum: Java 17 Days Ago
Replies: 2
Views: 290
Posted By Clawsy
Nice book, I read something.... it's just it uses other type of connection and things that doesn't match my case (L2CAPConnection is more flexible than StreamConnection).
However thanks for...
Forum: Java 17 Days Ago
Replies: 5
Views: 279
Posted By Clawsy
int a=0,b=0,c=0,d=0;
int n=4875;
int rest=0,i=1;


while(n!=0)
{
rest = n%10;//ghet the last digit of the number
n=(n-rest)/10; //the...
Forum: Java 17 Days Ago
Replies: 10
Views: 431
Posted By Clawsy
Hmm... try defining that 'ActionListener' outside the constructor.
Forum: Java 17 Days Ago
Replies: 2
Views: 290
Posted By Clawsy
Hello,
I'm working on a bluetooth chat application project called 'BlueChat'. I coded the server (BServer.java) and client (BClient.java) parts (2 separate threads). The visual part is called...
Forum: Java 23 Days Ago
Replies: 11
Views: 279
Posted By Clawsy
Did you try my idea bellow?

import java.io.File then use this code:

File f = new File("./");
System.out.println(f.getAbsolutePath());

This will tell you the absolute path of...
Forum: Java 23 Days Ago
Replies: 11
Views: 279
Posted By Clawsy
Add "import java.io.File;" then use this code:

File f = new File("./");
System.out.println(f.getAbsolutePath());

This will tell you the absolute path of the folder in which...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
Yes. Thank you :). These are really good hints and valuable advices. (but I put " new usbThread(lbl_status).start();" in formWindowOpened event cause... again: Builder said 'non-static variable...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
THANK YOU SO MUCH FOR SOLVING MY PROBLEM. I guess not only me was searching for this. :)
One note for the master :) : when said to add "new usbThread(lbl_status).start();" to the main function. You...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
I designed the application in NetBeans visually (drag-drop). I tried also with the thread. Nothing freezes but the JLabel doesn't update even if the threads works fine in the background. Below it's...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
@masijade,

Sorry, it's freezing the app and the status doesn't change. I'm new to threading in java, I might have not understood well.

ACTUALLY i try to check over and over if a the...
Forum: Java 23 Days Ago
Replies: 11
Views: 331
Posted By Clawsy
I need more details. I don't understand what you are actualy doing. The best method would be to make a JTable in which you can see your database table records. Then you can go further. I mean how can...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
I have a background operation which runs infinitely. I want to set JLabel's text from that thread as it would be the status of the operations in that thread or the progress? Did I miss something in...
Forum: Java 23 Days Ago
Replies: 14
Views: 595
Posted By Clawsy
All these days I've been trying to access a Swing component (e.g.: JLabel) from a separate thread. I tried using "Thread", "Timer", "SwingWorker" but I couldn't find the solution.
- Using a thread...
Forum: Java 25 Days Ago
Replies: 4
Views: 377
Posted By Clawsy
Yes you're right :).
... I use this for applications like: populating from a database and inserting values for some 'Statistics and probabilistic' calculations. ->Every event has a probability...
Forum: Java 25 Days Ago
Replies: 4
Views: 377
Posted By Clawsy
Oh... I must admit I tried like this:

//doesn't work
table.addColumn(new TableColumn(table.getColumnCount()-i).setHeaderValue(Integer.toString(i)));

//this works and I tried it after your post...
Forum: Java 25 Days Ago
Replies: 4
Views: 377
Posted By Clawsy
Hello,
I would like to be able to add 'n' columns programmatically and SET THEIR TITLE as I add them. I have 2 questions:
1. How can I change the title? (not by seting a model to my table but just...
Forum: JavaScript / DHTML / AJAX Aug 14th, 2009
Replies: 0
Views: 817
Posted By Clawsy
Hello,

I manipulate XML with jQuery with no problem in all browseres but not in Internet Explorer. I serched bug-fix and I found "metadata.js" but still not working in my Internet Explorer 7 :sad:...
Forum: Java Jul 21st, 2009
Replies: 3
Views: 342
Posted By Clawsy
:D Oh, my.... sorry... I never in my life made such a big mistake (I program in a lot of more languages, in java I'm just new but that doesn't matter here, no excuses). Maybe I've been a little...
Forum: Java Jul 21st, 2009
Replies: 3
Views: 342
Posted By Clawsy
Hello,
I'm a little bit new to Java and I use NetBeans 6.5.1. I just try to make a window 'by code, manual' (not drag and drop, not visually).


This is my code (first I only want and empty...
Forum: C++ Jul 9th, 2009
Replies: 4
Views: 907
Posted By Clawsy
Your reply was really helful :) . For that I was searching. Just one problem if you want to help me - hope I don't buzz you too much, I'm little newbie in winapi. This is my function for toggle:

...
Forum: C++ Jul 9th, 2009
Replies: 4
Views: 907
Posted By Clawsy
Thanks but didn't help because I don't know how to use that WINDOWPLACEMENT variable.

I solved the fullscreen problem in games.

I only want somehow to get the current state of that window -...
Forum: C++ Jul 8th, 2009
Replies: 4
Views: 907
Posted By Clawsy
Hello,
I'm making an application in Visual C++ that hides/shows an application window from taskbar by clicking a button.

First problem (googled it) is that I don't know how to retrieve the...
Forum: C# Jun 28th, 2009
Replies: 14
Views: 670
Posted By Clawsy
You are right. OK. I will search more and I will post if i find something :)
Forum: C# Jun 27th, 2009
Replies: 14
Views: 670
Posted By Clawsy
Please read that page. Does not include Y! Messenger. Those are some WEB services API's. Thanks for your replies! :) sorry i posted twice
Forum: C# Jun 27th, 2009
Replies: 15
Views: 5,289
Posted By Clawsy
not necessary borderless. He has a program with .NET i think. I don't have this problem and I have .NET 3.5. It's weird that it closes. It even works simple like this:

private void...
Forum: C# Jun 27th, 2009
Replies: 14
Views: 670
Posted By Clawsy
Baby, I just have to google what i seek: Yahoo! Messenger API and NOT web service API and a million ohter things I can google. So please read better: that does not include YM API. However thanks for...
Forum: C# Jun 27th, 2009
Replies: 14
Views: 670
Posted By Clawsy
Sorry but is that API for Yahoo! Messenger? or MSN?
Showing results 1 to 40 of 82

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC