Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

127
votes
11answers
88k views

Remove border from IFrame

How do I remove the border from an IFrame embedded in my web app? An example of the IFrame is: <IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME> I would ...
1
vote
0answers
127 views

How can I get a wxPython frame with FancyText and no border (wx.BORDER_NONE)?

I would like to build a wxPython window without borders (i.e., style = wx.BORDER_NONE) and use fancytext (wx.lib.fancytext) inside this window. Note that I am very new to wxPython and my question may ...
0
votes
2answers
1k views

Remove border from JComboBox

Do you know any way to remove the border from a JComboBox in Java? I try the following code public class ComboFrame extends JFrame { public ComboFrame() { JPanel container = new JPanel(); ...