Forum: Java May 20th, 2009 |
| Replies: 3 Views: 519 Thanks, but this solution is no good for me... I dont want to use jni/dll in my java application...
b.t.w found out how to stamp a NMP with the help of JAI
so now looking for a way to stamp... |
Forum: Java May 19th, 2009 |
| Replies: 3 Views: 519 Hi ...
i found a way to add watermark in java to the following images format: PNG , JPG , GIF... (like this: http://blog.codebeach.com/2008/02/watermarking-images-in-java-servlet.html)
Now im... |
Forum: JavaScript / DHTML / AJAX Mar 2nd, 2009 |
| Replies: 4 Views: 1,613 Thanks but this doesn't work in IE 6 ... (does work in FF) but the IE is the browser i must to work under...
Any ideas to how can I make it work in IE 6 ? |
Forum: JavaScript / DHTML / AJAX Mar 2nd, 2009 |
| Replies: 4 Views: 1,613 Thanks but it doesn't work :/
I did exactly as you told...
Here is the test html page
<html>
<head>
<title>Test Page</title>
<style> |
Forum: JavaScript / DHTML / AJAX Feb 25th, 2009 |
| Replies: 4 Views: 1,613 Hi.
I got a page on which on the left side there is a Tree with branches,
on the right side of the page i got an <EMBED> tag that shows a pdf file,
User can click on tree branches to expand them... |
Forum: Java Feb 2nd, 2009 |
| Replies: 6 Views: 889 thanks ~s.o.s~
U pointed me with the solution! :)
here what i did:
System.out.println("text is visible");
PrintStream printStreamOriginal=System.out; |
Forum: Java Feb 1st, 2009 |
| Replies: 6 Views: 889 the print outs are beeing called from some API's calling.... so i want to disable/ re route the standart print out before calling the API and enable it after finished using the API..... |
Forum: Java Feb 1st, 2009 |
| Replies: 6 Views: 889 For example i want that the
System.out.println("blablabla");
wont be displayed on the screen of the console....
how can I do it? |
Forum: Graphics and Multimedia Jan 6th, 2009 |
| Replies: 2 Views: 1,081 Hi, i want to display a pdf inside my web page using object tag...
I did succeed to display the pdf if i store it in the web root of the server like this:
<object data="images/mytest2.pdf"... |
Forum: JSP Dec 10th, 2008 |
| Replies: 1 Views: 714 Hi, i got the following situation:
When user clicks on some link, I'm entering a servlet in which I'm copying a file to a network drive, and than I want to open this file on the Client side, for... |
Forum: JSP Oct 27th, 2008 |
| Replies: 0 Views: 669 Hi
Im writing a web application nad I have a web page in which an actionListener is being activated after a click on h:commandButton, the problem is that the execution of the actionListener taking... |
Forum: C++ Aug 3rd, 2008 |
| Replies: 1 Views: 485 Hi i got an application that uses the mso.dll and MSOUTL.OLB :
#pragma warning(disable: 4146)
#import "C:\Program Files\Common Files\Microsoft Shared\Office10\\mso.dll" named_guids
#pragma... |
Forum: C++ Jul 31st, 2008 |
| Replies: 6 Views: 704 I just found out that the error of incomplete procccess name does works for the first time, BUT after i execute the following code before calling the EnumWindows for the second (and the problematic)... |
Forum: C++ Jul 31st, 2008 |
| Replies: 6 Views: 704 Thanx but it does not solved my problem
the problem is in the
::SendMessage(hwnd, WM_GETTEXT, 256, (LPARAM)buf);
line,
after this line i recive the partial string inside the buf:... |
Forum: C++ Jul 31st, 2008 |
| Replies: 6 Views: 704 Hi
I need to find out if a specific cmd window is opened on the pc, and I need to hide it
I looking for that cmd window by its name (cause i know it )
Ive used the EnumWindows with a callback... |
Forum: Windows NT / 2000 / XP Jul 6th, 2008 |
| Replies: 1 Views: 556 start "title" /D "path" "executable name"
That is the trick!!!! :) |
Forum: Windows NT / 2000 / XP Jul 6th, 2008 |
| Replies: 1 Views: 556 Hi i got an executable file which uses an .ini file, while they both are in the same directory all works fine.
The problem is that i must separate them and make a batch file that will call the... |
Forum: Java Jun 25th, 2008 |
| Replies: 32 Views: 10,871 Thx darkagn!
gonna check it it |
Forum: Java Jun 24th, 2008 |
| Replies: 32 Views: 10,871 Hi,
I'm looking for an java api which can convert .doc file into .pdf file... i need this solution to work without any intervention of MS Office/Windows.
If anyone have any idea about such... |
Forum: Java Jun 16th, 2008 |
| Replies: 4 Views: 545 I know this api and I'm working alot with it... but i haven't found a way to do it with this api... |
Forum: Java Jun 16th, 2008 |
| Replies: 4 Views: 545 Hi...
my mission is to locate a certain word inside a pdf file and insert an image next to this word
if anyone can recommend me on some api's or examples i will be very grateful.
Thanx... |
Forum: C++ May 11th, 2008 |
| Replies: 7 Views: 5,832 Hi again... I found the solution...
1)This phenomenon happens with only one specific window...
2)To force this window to hide I do need call the "ShowWindow(hWnd, SW_HIDE);" Twice in the... |
Forum: C++ May 8th, 2008 |
| Replies: 7 Views: 5,832 thx 4 the help Ancient Dragon, i will try it and will post the results... |
Forum: C++ May 7th, 2008 |
| Replies: 7 Views: 5,832 Heya i want to use ShowWindow(hWnd, SW_HIDE); to hide some application,
The problem is that the code i wrote works perfectly for any application except the one i need it for
heres the code
... |
Forum: C++ May 6th, 2008 |
| Replies: 10 Views: 1,352 Thx niek_e, its almost what i need...
i'm looking for a way to do the same but using the application name, instead of seeking using "Untitled - Notepad"
I'm looking for a way to use "notepad.exe"... |
Forum: C++ May 6th, 2008 |
| Replies: 10 Views: 1,352 thx,
but where is the place that i set the name of the program i want to hide, for example "notepad.exe"
? |
Forum: C++ May 6th, 2008 |
| Replies: 10 Views: 1,352 Hi...
I looking for a way to hide application from the Task bar bottom line and i need to accomplish it by using the application executable name only...
All information that i have it the... |
Forum: JavaScript / DHTML / AJAX Apr 15th, 2008 |
| Replies: 11 Views: 4,056 1) actually its on a network drive.... (c: was just an example)
2)when file is being viewed with internet explorer it is possible to right click and choose "view source" on xml which opens it in... |
Forum: JavaScript / DHTML / AJAX Apr 15th, 2008 |
| Replies: 11 Views: 4,056 Listen...its a web application that im doing... not some "fun portal"....so no users will be ticked....
All i wanna do is somehow hide the full path of the presented xml that are actually stored... |
Forum: JavaScript / DHTML / AJAX Apr 13th, 2008 |
| Replies: 11 Views: 4,056 I tried ~s.o.s~ suggest...
Here:
<html>
<body oncontextmenu="return false;">
<iframe src='c:\name.xml'>
</iframe>
</body> |
Forum: JavaScript / DHTML / AJAX Apr 13th, 2008 |
| Replies: 11 Views: 4,056 Listen...
All I want to do it to prevent the user from accessing to the source of an XML files I'm showing to the user... I don't want to revile the user the info of where the xml is locked on... |
Forum: JavaScript / DHTML / AJAX Apr 10th, 2008 |
| Replies: 11 Views: 4,056 Hi
I built a html page with a single button which suppose to open new window which shows XML file...
I want to disable right click mouse in the "new window" which is being opened after button... |
Forum: JSP Apr 8th, 2008 |
| Replies: 0 Views: 750 Hi i got a jsp page which uses an external .js file and also some internal javascript too...
the problem is that none of the functions that inside the external .js file are recognized inside the... |
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2008 |
| Replies: 2 Views: 7,309 i found out that the problem is something else...
all this mambo jumbo about opening the xml is inside a jsp file....
I did the following test, i did "view source" and copy/paste into an .html... |
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2008 |
| Replies: 2 Views: 7,309 Hi
my file is located at c:\AdminFiles.xml
i tried the following ways
window.open("c:/AdminFiles.xml",'HeavyXml');
window.open("c:\AdminFiles.xml",'HeavyXml'); |
Forum: Java Mar 11th, 2008 |
| Replies: 2 Views: 3,884 if i understood u right u supposed to have this
output :
AAA
CD
4ba
a
I mean your output is 3 char width (in case no delimiters at all) or less, which may occur by bumping into a... |
Forum: Java Mar 11th, 2008 |
| Replies: 0 Views: 1,568 I have an Xml file from which i want to delete some different node, im doing it by using the .removeChild method, and it works just fine, the problem is that after im doing so , i getting empty line... |
Forum: JavaScript / DHTML / AJAX Mar 9th, 2008 |
| Replies: 8 Views: 1,938 action=none doesn't work also... after first form submitting of the "problematic form" all other forms starts to behave like it also..... |
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008 |
| Replies: 8 Views: 1,938 thx 4 the suggestion ,but it doesn't fit my needs , cause i need to receive some data back from the servlet and to show it .... |
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008 |
| Replies: 8 Views: 1,938 I did tried action="#" , but it doesn't change anything... still the other forms tries to act as if they were defined with action="ComputeAndReturn"
i know that a part of the blame that this all... |