Search Result

Collapse
11 results in 0.0041 seconds.
Keywords
Members
Tags
show
  •  

  • JEditorPane (html page) doesn't appear on main frame

    class Browser has method getBrowserWindo w() which returns JEditorPane(new URL("some URL")).

    class MainForm calls new Browser().getBr owserWindow() and assigns it to another JEditorPane object.
    Code:
    editor = new Browser().getBrowserWindow(); 
    scrollpane = new JScrollPane(editor);
    Object editor.hashCode () is correct, so there's no doubt that i've got the right object.

    Still, i can't...
    See more | Go to post

  • How do you put the form on top of other windows?

    I used Me.Hide() to hide the main form when i click the button to go to the form 2,. now,. the problem is that when i return to the main page using FormName.Show() ,. it goes back to the main form but under the other windows,.
    See more | Go to post

  • Samuel Jones
    started a topic Simple Parent Child Form Switching

    Simple Parent Child Form Switching

    This article is aimed at beginners, so don't judge me on the quality please.

    I know many of you are there sitting at your computers looking at the title going 'what is he on about?'. I would too.

    Over the past few weeks, many of the forums I've browsed have nothing on switching between a 'parent' and a 'child' form other than some really complex 'mumbo jumbo'. I am here to show a simple solution.

    Also...
    See more | Go to post

  • John Thomson
    started a topic Resizing iFrames using Javascript

    Resizing iFrames using Javascript

    Hi,

    I'm a little new to javascript, and I'd really appreciate some help. Basically, what I'm looking for, is a way to have 3 iframes lined up side by side on my page. I'd like all three to be width 33% of my page so that, side by side, they fill up the whole width of the page. I'd like to be able to show/hide each of the frames with a button or a div for each. Okay...so far, I've been able to make it all work. Here's where I'm getting...
    See more | Go to post

  • kurkcu
    started a topic Frames and javascript

    Frames and javascript

    Hi,
    I've used frameset and frames in my web page and i can show and hide frames with this javascript code
    Code:
       function CloseIt()
       {
         parent.parent.frames["fraSet"].cols='*,0';
       }
    It works ok. But i want to show and hide animated or slowly. I tried to use
    settimeout("Clo seIt()",500)
    but it did not work. Frame is still closing as soon as i clicked...
    See more | Go to post

  • yeshello54
    started a topic php and javascript question.
    in PHP

    php and javascript question.

    So I am confused on where to put things in my code to work right. I found a simple javascript tutorial to add a function so that i can hide and show my php tables. but when i put it all together i cant get it to work. It works fine displaying the table without the javascript added and adding the "<tr id="table"> line of code. I dont know if the javascript is in the wrong place or not.any help would be great.thanks

    ...
    See more | Go to post

  • d927
    started a topic Form only show once
    in .NET

    Form only show once

    How can i make it so a form will only show the very first time the program is run as a whole?
    See more | Go to post

  • z1freeride
    started a topic Showing document in Windows Explorer

    Showing document in Windows Explorer

    I'm programming a download manager and I'm trying to implement the "Show Containing Folder" feature that you would find in Firefox.

    This is what I have so far:

    Code:
    Process proc = new Process();
    proc.StartInfo.FileName = "explorer.exe";
    proc.StartInfo.Arguments = dlPath;
    proc.Start();
    This simply opens the folder but in Firefox, it hilights the file. How would I do ...
    See more | Go to post

  • Sending events to parent form even when a dialogue is open

    Hello guys

    I have some custom events in my application i.e. KeyPress such as full screen for pressing F11 and so on. Currently this works fine but only when the main form which is listening tot he KayPress events. I would like this to work even when a Dialogue window is open from this form for example I am opening a child window with Show.Dialogue() . This is blocking the events from going to the parent form.

    Can someone...
    See more | Go to post

  • Shapper
    Guest started a topic Image Button and Show/Hide Panel

    Image Button and Show/Hide Panel

    Hello,

    I have an image button in a web page.

    The default image is ShowPanel.gif.

    When the image is clicked I want the panel "myPanel" to become visible
    and the image button to change to HidePanel.gif.

    When the image is clicked again now the panel becomes invisible and the
    image gets back to ShowPanel.gif.

    I have been playing with commandname, commandargument and...
    See more | Go to post

  • Don Grover
    Guest started a topic Hide table using radio button

    Hide table using radio button

    I have a table thats wrapped in a div tag, that when user selects 1 of 2
    radio buttons it hides or shows table, this works ok.
    But I want to set the table show hide on what the existing state of radio
    buttons are on page load aswell, so if one button is allready selected then
    the table is hidden else it is shown, can some help me with this,
    Existing code below Regards Don.


    '************** **
    ...
    See more | Go to post
Working...