Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~23.4K People Reached
Favorite Tags
Member Avatar for vedmack

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 [CODE] HWND hWnd = FindWindow(NULL, sName); if(hWnd) { ShowWindow(hWnd, SW_HIDE); } [/CODE] it does execute the …

Member Avatar for Gustav_1
0
9K
Member Avatar for vedmack

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 api , please reply. Thanks ahead Daniel

Member Avatar for stultuske
0
3K
Member Avatar for vedmack

Hi, For some time I'm using window.createPopup(), recently I noticed that It cannot be used in modal dialogs that are opened in IE8 protected mode, So I was wondering is there still some way to make window.createPopup() work in the above situation, Thanks ahead, Daniel.

Member Avatar for vedmack
0
152
Member Avatar for vedmack

Hi I'll describe the following scenario: I got a table with td's and each of the got onchange and onclick when i change value of a td and click on other td i get the onchange event(of the first td) being fired and then the onclick (of the other td) …

Member Avatar for Airshow
0
98
Member Avatar for vedmack

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'); window.open("c:\\AdminFiles.xml",'HeavyXml'); in the above i'm getting the following error: "Firefox doesn't know how to open this address, because the protocol (c) isnt associated with any program" window.open("file:///c:\\AdminFiles.xml",'HeavyXml'); the last attempt give to respond at all... any …

Member Avatar for delomos
0
267
Member Avatar for vedmack

Hi I'm creating a popup to display a loading message, inside this popup i placed an animated gif... the problem is that the gif is not being animated (it is an animated gif...) , its is being shown but without the animation... This is the code: [CODE]oPopupLoading = window.createPopup(); var …

Member Avatar for Airshow
0
110
Member Avatar for vedmack

Hi i have xml file with nodes that could hold any type of input: for example XML code: <Code>1.2.3</Code> <name>John</name> </Employee> <Code>11.2.4</Code> <name>John</name> </Employee> <Code>2.3.7</Code> <name>John</name> </Employee> OR <Code>a.1.5</Code> <name>John</name> </Employee> <Code>a.2.1</Code> <name>John</name> </Employee> <Code>c.4.2</Code> <name>John</name> </Employee> The problem is that i can get any type of input Im looking …

Member Avatar for vedmack
0
118
Member Avatar for vedmack

I have a very weired problem (which is not easy to describe.. but I'll do my best): I have a html page with several forms , only one of the got the action="ComputeAndReturn" and the other forms got only name="" tag... the problem is that after i submit the form …

Member Avatar for McVaio
0
189
Member Avatar for vedmack

Hi ... i found a way to add watermark in java to the following images format: PNG , JPG , GIF... (like this: [url]http://blog.codebeach.com/2008/02/watermarking-images-in-java-servlet.html[/url]) Now im looking for a way to do the same with BMP and TIF... (cause this way doesn't work on that format...) Anyone know how to …

Member Avatar for peter_budo
0
158
Member Avatar for vedmack

Hi Im trying to submit a form , which holds another form tags inside (i must do it this way) the problem is that this doesn't work on IE, while it works perfect on Firefox the button seems to have no effect on the page... its like it is not …

Member Avatar for newboi
0
269
Member Avatar for vedmack

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 hit... I do know how to disable the right click inside an ordinary …

Member Avatar for HTMLExpert
0
800
Member Avatar for vedmack

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 and can click on the leafs to …

Member Avatar for vedmack
0
340
Member Avatar for vedmack

For example i want that the [code]System.out.println("blablabla");[/code] wont be displayed on the screen of the console.... how can I do it?

Member Avatar for vedmack
0
5K
Member Avatar for vedmack

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: [code=html] <object data="images/mytest2.pdf" type="application/pdf" /> [/code] but i need to access to a pdf file that …

Member Avatar for roryt
0
140
Member Avatar for vedmack

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 example the file to be opened is a .pdf file. I …

Member Avatar for stephen84s
0
70
Member Avatar for vedmack

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 to much time... and after a while im getting a timeout from my proxy although the …

0
60
Member Avatar for vedmack

Hi i got an application that uses the mso.dll and MSOUTL.OLB : [code] #pragma warning(disable: 4146) #import "C:\Program Files\Common Files\Microsoft Shared\Office10\\mso.dll" named_guids #pragma warning(default: 4146) #import "C:\Program Files\Microsoft Office\Office10\MSOUTL.OLB" no_namespace exclude("_IRecipientControl", "_DRecipientControl") [/code] In which I'm trying to create an instance of the "Outlook.Application" in the following way: [code] _ApplicationPtr …

Member Avatar for Salem
0
165
Member Avatar for vedmack

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 function: [code] BOOL vFound=((::EnumWindows(mFindWindowOnlyByCustomTitle,0))); [/code] and this …

Member Avatar for Ancient Dragon
0
131
Member Avatar for vedmack

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 executable and also will direct the executable where to find its …

Member Avatar for vedmack
0
97
Member Avatar for vedmack

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 ahead Daniel

Member Avatar for peter_budo
0
74
Member Avatar for vedmack

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 process name which runs in the task bar Ive googled for a while but haven't …

Member Avatar for Ancient Dragon
0
109
Member Avatar for vedmack

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 jsp. But... if i copy the source code of the jsp into an html …

0
71
Member Avatar for mattie5489

Hello, I am new to java. my problem is that i input a string, width and a delimiter and produce a "picture". For example, Inputs: String = AAACD*4baa Width = 3 Delimiter = ‘*’ Output: AAA CDb Bbb aa I have been having trouble with my code any help would …

Member Avatar for javaAddict
0
147
Member Avatar for vedmack

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 instead of the deleted node (it does not affect the …

0
63
Member Avatar for nikk

Can you please tell me how to expire a session after a fixed interval of time.(i.e if the browser is inactive for some time - say, 5 mins) Once the session expires, and if user tries to access the page, then he is prompted for login again, am i right? …

Member Avatar for nikk
0
221
Member Avatar for vashishth_kec

hi, i m having a problem on on uploading this site it is giving unexpected object error plz help me </head> <body onload="afterload()"> <img src="images/ICB Blue_top arc.gif" id="toparc"/> <div class="content"> <img id="logoimg" src="images/ICB Blue_logo.gif"/> <div id="registerDiv"> <FORM name="drop_list" action="mobisyregister_.php" method="POST" onSubmit="return ValidateSelect(this)"> <table cellspacing="0" cellpadding="5" border="0" width="100%"> <tr> <td valign …

Member Avatar for MidiMagic
0
96
Member Avatar for vedmack

Hi i have a form which holds several Inputs of type text, now when im clicking on a check box it run a js script which gets each Input text element and colors its background with a color something like this [code=javascript] var filed=document.getElementById("one"); filed.style.backgroundColor='red'; filed=document.getElementById("two"); filed.style.backgroundColor='red'; ... .. . …

Member Avatar for MidiMagic
0
2K
Member Avatar for pack

Hi I am not much experienced in JSP. I am facing one problem while printing a XML String on the screen. Code snippet -> String result = ab.returnResult(); result is returning a XML String..Suppose <A>123</A><B>SIR</B><C>21</C> I am printing -> <tr><td><%= result %></td></tr> I am getting 123SIR21 as output in the …

Member Avatar for ~s.o.s~
0
474
Member Avatar for vedmack

Hi I have built a web site using Struts/Tiles... in one of the tiles i got iframe in which I load a XML file from the server like this <iframe name="showXml" frameborder="no" src="filename.xml" width="100%" height="100%" ></iframe> the problem is that after I'm updating the file in other Tile (and the …

0
53