General :: Make A Pop Up Window Form?
Jan 13, 2010
I v been trying to make a pop up window or form for my user once they get to my index page then a form comes in the middle of the screen asking questions . also i want a pop up form to pop up when some one is trying to exit my page to pop up
View 5 Replies
ADVERTISEMENT
Jun 2, 2011
How to make Date of Birth form in html....in short codes.....?
View 1 Replies
View Related
Jun 1, 2010
When I try to view my home folder (for instance), I press the icon on the left of my name (/home/...) and it doesn't do what I accustomed to which is to show the text form of the directory. Is this a bug or am I missing something?
View 8 Replies
View Related
Jul 29, 2010
One of my friends wants to make a submission in the following Smart PDF online submission form:
[URL]
But whenever he loads the url it opens Adobe acrobat reader which I assume will bypass TOR because the form requires Javascript to be enabled. The form will not submit unless javascript is enabled.
So how can my friend submit the adobe smart pdf form with javascript enabled while still being anonymous with TOR?
If it's not possible with TOR, what other free services could my friend use?
View 1 Replies
View Related
Aug 6, 2010
I have a new dell laptop vostro 1015 when i turn it on it access directly into windows 7 i can't to make it boot form cd to install ubuntu.
View 2 Replies
View Related
Oct 10, 2010
How can I make a window span over both monitors? I have the monitors configured using the KDE monitor setting tool. I need specifically full-screen (for presentation purposes) or at least a maximized window. Kwin insists on locking the window on one desktop.interestingly it really is Kwin preventing me to do this. If I get rid of KDE and just launch a plain X session, the window maximizes correctly.
View 1 Replies
View Related
Jun 10, 2010
I've already tried Seamonkey to create a web page but can find no way to create a web form in which I want to create form fields. Before moving to Ubuntu I used Microsoft FrontPage to create web pages with form fields. This was easy to do. what is available to do the same in Ubuntu?
View 2 Replies
View Related
Aug 13, 2010
We are using several printers on our Linux RH network to print customer invoices and receipts. Receipts are short forms of just 21 or 22 lines. Two of the printers (an HP LJ1300 and a Dell 5200) eject the receipt paper automatically; the other two HP (a LJ 4200 and a LJ2420) do not eject. You have to press the green button on the printer. Is there a solution to that? They are all set up with the same PCL settings.
View 3 Replies
View Related
Dec 30, 2010
I am setting up a thin client boot (over NFS) with x2go thinclient. So far everything works, the client boots over PXE, mounts the NFS dir on the server. But the x2go thinclient system does not install properly. I end up with a CLI prompt, to log in. It does not start X, not does it start the x2go client in a window managerless X session.
X2go is, in case you don't know it yet, a cool Linux X terminal session system, very much like Nomachines NXserver. I like it very much, since my experience, especially with freenx has not been good.
Now I am missing some Linux knowhow here: I know that after startup (the CLI part), the display manager is started (GDM or KDM), which starts the X server and shows the graphical login. Now since X2go does not properly setup and there is no documentation about the thinclient part, I will set it up myself.
I need the system to boot up, startx and then immediately start an X program (x2goclient), without having to log in before.
I found that putting a .xsession file in to the users home dir causes that script to be run when you invoke startx.But when I put startx in a script that runs as the last one in the runlevel (as in S05startx), it does not run at all.
What is the proper way to run X and a program on it directly, right at startup?
View 10 Replies
View Related
Dec 26, 2010
i'm beginner in linux and don't know how to resolve my problem in knoppix i have installed knoppix version 6.2.1 in my system recently and when i turn on my computer , knoppix runs as compize fusion and don't show username and password screen to me . i searched alot in interent and found that that screen called GDM or KDM and i have them and when i run GDM in command i see the login screen in my system . but i don't know how to make it my default window when i turn on my computer .
View 2 Replies
View Related
Jul 16, 2010
when i start an application it usually places it in the upper left corner or lower right corner or something like that.. but never in the middle of my screen. How can I configure GNOME to always open applications in the middle of my screen..?
View 3 Replies
View Related
Jan 30, 2011
When I first started with Fedora I tried a dual boot situation to see if Fedora 13 was going to meet my needs. After being totally satisfied I deleted Windows from my computer. How can I get Fedora to also occupy all the disk space Windows once occupied? I have a 15 GB USB drive to work with if needed.
View 1 Replies
View Related
Jan 7, 2010
I'd like to make all window of of all applications are located in the center of screen when they are started every single time, is there any way to do that ? of course,what i am saying that they are GUI apps, and when they are not started as maximum size window
View 2 Replies
View Related
Jan 24, 2011
I use a program which makes a large image which I have to scroll to view. The program has no way to save the image, and I have no access to the source to modify it. The only way I have to get the image from the program is by screenshot. My goal is to save the full size image without having to piece together individual screenshots. I'm using this script to try taking a screenshot:
#!/bin/bash
window=$(wmctrl -l | grep "Program$" | awk '{print $1}')
wmctrl -v -i -r $window -e '0,0,0,6030,5828'
wmctrl -i -a $window
import -window $window ~/Desktop/screenshot.png
This uses wmctrl to get the window id ($window) for a window named "Program". It then tries to resize the window to the desired dimensions. It uses imagemagick (import) to save a screenshot.png on the user's Desktop. All of this works except the resize step. I can resize the window using wmctrl -r -e, but sizes greater than the screen size don't work. I'm using Ubuntu 10.04 and the Gnome Desktop. I run two monitors, but I've tried this with one of them disabled. Is there a way to resize the window larger than my screen to get a huge screenshot?
Part II: I tried using xrandr to set up screen panning, so as to have a bigger desktop than my monitor. xrandr --output LVDS --panning 2600x2500 This command makes the laptop screen pan over a 2600x2500 size desktop, even though it can only show 1440x900 at one time. To turn off the panning, I can use a similar command to set total size and with zeroes for the panning section. This gives me back my original laptop display behavior. xrandr --fb 1440x900 --output LVDS --panning 0x0 This is all done with xrandr, and does not require any Xorg.conf changes (my Ubuntu system doesn't even have an Xorg.conf).
My video card seems to only allow about 6.5 million pixels, even though the maximum dimensions are 8192x8192. That maximum seems to be the maximum for either dimension, but there is a limit to how many pixels can be drawn, which is the width multiplied by the height. Once I did the screen resize, I tried my script again and got a screenshot. The screenshot however is totally scrambled. I'm not sure if it's unable to take a screenshot of an off-screen window or if it is unable to handle the large dimensions of the window. With the panning display, the window should think it is visible, and the window manager should think it is on-screen. So there is a pixel buffer somewhere with those pixels in it, so there should be a way to get a screenshot.
View 1 Replies
View Related
Jan 20, 2010
So a family member was very nice and got me a killer server for my house. Not sure what I will do with it just yet. I will post spects shortly. Its Intel raided 2 750G drive 2G CPU and I believe 2 or 4 G memory. Rack mount with a KVM on it.
I have narrowed it down to 3 OS choices. Ubuntu : I run this on my LT and find it very nice for that. Some nice Media server Sw out there for it. I do some side work on RedHat and for my current employer so I was thinking CentOS or Fedora so I have a system running a similar OS on it.
At home this may be a www or media server for me long term. Or I may just use it as a test system initially to work on these Linux versions. I know this is all subjective and depends on what I plan to do with the server in the long run.
But out of the Fedora and CentOS release which is better knowing I am doing work in Red Hat for my current employer?
View 11 Replies
View Related
Oct 1, 2010
I m trying to access a site through a perl script for a project of mine, and i use a system call fora wget.
The login form is this
Code:
I mean should i add in the --post-data all the hidden fields? should i try using perl's md5 function for the last two fields? anyone has any idea on what are the elements i should be sending along --post-data?
Is there a way to --load-cookies from mozilla or something similar instead of creating new cookies with wget?
View 1 Replies
View Related
Jul 27, 2010
in Karmic's XFCE I could get my settings such that a newly created window does not get on top of all other windows and I kind of liked it. Now in Lucid I can't do that anymore:whatever settings I try, a new window always gets on top. (I can prevent it getting focus, but I want more.) Is there a way in XFCE or Gnome to get the new window automatically beneath the one that had the focus before?
View 1 Replies
View Related
Dec 13, 2010
I would want a linux print server in the form of a web interface, where you upload a PDF, doc, JPG, PNG, PPT, TXT, HTM etc file in a file upload box, and then that file is printed to a USB connected Samsung CLX-3185 printer.Which linux distribution and software should I use then? I would want it to support so many file formats its possible.
View 1 Replies
View Related
Feb 21, 2011
I developed a test program(my first under linux) some thing like g++ -I$(BOOST_INCLUDE) -L$(BOOST_LIBS) threading.cpp -lpthread -lboostThread -lOtherLib -o threadingTest.out...This thing works in GCC4.5, but to compile it under windows visual studio 2008, do I have to create a new project file and then include all libs?
In short, is there any IDE or utility, where I just compile it either on linux or windows without going and modifying project options again and again ?
View 1 Replies
View Related
Aug 17, 2010
I have developed an application in Qt.I want to print my text(for e.g "hello") using Qprinter and stop the printer.The text printer but i dont want form feeding after printing.
View 1 Replies
View Related
Nov 28, 2010
My current partition is:
I have Fedora 14 installed. I'm trying to install CentOS 5.5 from the hard disk. I copied the seven part iso to the /iso. I didn't create a directory in the /iso. I ran the md5sum on the seven parts and compared it with the md5sum that is provided on the website and they are all identical.
When I tried to install from the hard problem, the first thing is instead of sda1,2,3,5 I found the following options:
well, I selected /dev/hda2 and left the directory blank. The images can't be found. What am I doing wrong? And why is the difference between sda in the partition and hda in the installation?
View 7 Replies
View Related
Apr 16, 2011
I installed OSS11.4 clean install over 11.3, it is suppose to be dual boot together with with winxp.
When i select to boot xp machine starts to boot but it boots forever and eventually
nothing happens further (HHD does not spin). Can it be grub problem or it's
winxp boot problem? When the actuall job of grub stops?
Boot loader location:
Bot form MBR, Boot from root partrition, boot from extended partrition.
View 9 Replies
View Related
Nov 12, 2010
Is there any way to make the window bigger in VB?? I can't find any info about this in the help files.
View 3 Replies
View Related
Jun 26, 2011
So I was thinking of having my bottom panel just for harbouring active windows. I thought also to uncheck expand so it will grow larger when more windows are active. All of which is not a problem. But there's one thing stopping me from doing this.
Currently the active window stops when it reaches either panel.
[forgot to edit the green bar out. Ops. Ignore it.] So in either bottom corner nothing is displayed. How can I get the active window to go all the way to the bottom of the screen. Whilst the panel still appears above the active window? [Probably won't have transparent panel when doing this.]
View 1 Replies
View Related
Jan 3, 2010
I made WINE emulate a virtual desktop several times larger than the real desktop in size. Now, i need to make a screenshot of the whole virtual desktop. But, only its visible part gets captured. Making screenshot in parts is not possible as the image is constantly changing. Any ideas on capturing the whole virtual desktop?
View 2 Replies
View Related
Jul 8, 2011
I like to start Emacs as part of a login script and leave it running for the duration of my login session (which is typically weeks).
I have scripts to call emacs-client which will allow me to use a file-manager or Windows Explorer to locate files and right-click to edit them in Emacs.
I often end up with a lot of emacs windows (frames) open and I like to just be able to close them by clicking on the MS-Windows or KDE X button at the top-right.
The trouble is, if the window is the last one, this will shut down emacs which will lose all kinds of interesting history information.
As a work-around I use C-x 5 0 which won't let me close the last frame but this is often not as convenient as using the mouse
Does anyone know how to configure Emacs so that it can intercept the Window-Close button of the last frame to either request confirmation or simply disallow it?
On MS-Windows, disallowing closing of the last window may cause logoff to hang if emacs is still running but I'm not too worried about that.
View 2 Replies
View Related
May 19, 2010
I have just installed the centos 5.3 on my server machine. It looks for a USB media to boot. But I am not able to figure it out what i have done wrong. Why does it asks for USB media?If I have created a dependency of USB to boot, Is there any way i can remove this dependency. Or I have to reinstall the OS again?
View 1 Replies
View Related
Jan 22, 2011
Possible Duplicate: How to recover form information for a webpage in Firefox I typed a couple of paragraphs on a discussion board, but when I clicked the submit button, the site was undergoing (un)scheduled maintenance, and the back button decided to refresh the page, sending my paragraphs into oblivion.A quick web search revealed that Lazarus provides form recovery for Firefox. However, installing a plugin requires restarting Firefox, and even after restarting Firefox (which I haven't done yet), Lazarus can't recover forms it hasn't backed up yet.Now that the horse is out of the barn, I want to do the impossible: restore some or all of the text I typed, without restarting my browser.
Edit: I should clarify. Lazarus is a wonderful solution for preventing future form data loss. This question is for people who have already navigated away from their form and lost its contents, but hope there is some way to salvage the situation. My solution was to get a core dump of the process and grep through it, but there might be a layman's way to do it (for example, somehow get Firefox to load the cached version of the previous page). Thus, solutions that only solve the problem in the future, without addressing the present, are off-topic in this question.
View 3 Replies
View Related
May 9, 2011
I am wondering is it possible to echo values like below described? The situation is - there are too many "doc" files named like "PLCI507_01234567.doc", and there is a Form in a text file named "form.txt" looks like below:
I am already able to create files in the same format for each documents but now I want all the information in a single form and the form should be updated with file informations ie. file name, created date, md5sum etc.
The updated form.txt should be like below.
View 2 Replies
View Related
Mar 14, 2009
Is there any Full form of LINUX ?
View 4 Replies
View Related