473,769 Members | 3,232 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to programatically NOT show webform border...help

Ok,
How can I NOT show the "titlebar" or the "border" at all on a webform
(I have a transparent gif as the edges)?
Thanks,
Trint

Nov 17 '05 #1
9 2284

"trint" <tr***********@ gmail.com> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
Ok,
How can I NOT show the "titlebar" or the "border" at all on a webform
(I have a transparent gif as the edges)?
Thanks,
Trint

To remove tehe title bar:
As far as I am conscious of:
You remove the control box
You remove the text
Nov 17 '05 #2
Hi,

are you talking about a WEB form ?

if so, you cannot, you can remove the title, statusbar, menu, etc but I
don't recall any way to show just the page, even right now I don't think you
can even remove the control box, otherwise all the popup would use it !!!
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
"trint" <tr***********@ gmail.com> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
Ok,
How can I NOT show the "titlebar" or the "border" at all on a webform
(I have a transparent gif as the edges)?
Thanks,
Trint

Nov 17 '05 #3
BUT,
I can I do this through window.open?:

function showRemote() {
self.name = "main"; // names current window as "main"

var windowprops = "frameset rows='*,0' framespacing=0 frame name='top'
src='"+urlPop+" ' scrolling=auto border=0 frameborder=0
toolbar=0,locat ion=0,directori es=0,status=0, " +
"menubar=0,scro llbars=0,resiza ble=0,width=224 ,height=372 ;

"<frame name='top' src='"+urlPop+" ' scrolling=auto> "+
"<frame name='bottom' src='about:blan k' scrolling='no'

OpenWindow = window.open("ht tp://mis12/travel10/cE.aspx", "remote",
windowprops); // opens remote control
}

If so, where can I put this, because this does show the titlebar and
border?

Thanks,
Trint

Nov 17 '05 #4
Trint,
OpenWindow = window.open("ht tp://mis12/travel10/cE.aspx", "remote",
windowprops); // opens remote control
}


Which is more and more prevented to do by instance by the latest SP for XP,
so the browser will kill it.

:-)

Cor
Nov 17 '05 #5
So, am I forced to have a titlebar and border? Is their nothing I can
do?
This is really really important to the company for me to do this.
Any help is appreciated.
Thanks,
Trint

Nov 17 '05 #6
Here you go:

this.FormBorder Style = FormBorderStyle .None;
this.MaximizeBo x = false;
this.MinimizeBo x = false;
this.ControlBox = false;

Zach wrote:
"trint" <tr***********@ gmail.com> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
Ok,
How can I NOT show the "titlebar" or the "border" at all on a webform
(I have a transparent gif as the edges)?
Thanks,
Trint


To remove tehe title bar:
As far as I am conscious of:
You remove the control box
You remove the text

Nov 17 '05 #7
Does it have to be the same window as the calling window or can the
asp.net page redirect to another page that has javascript in it? Maybe
you can workaround like that. If it can be a popup you can register
the startup script to produce it.

http://www.dotnetjohn.com/articles.aspx?articleid=88
maybe that will help

Nov 17 '05 #8
Guys,
Thanks....let me try these tonight and give them a try.
I appreciate everyones help.
Trint

Nov 17 '05 #9
Bennie,
You are the one! This will be the code I use.
Thanks,
Trint

Nov 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3535
by: bayram guzer | last post by:
hi everybody, i have very strange error. i can not see some of the asp pages on my browser. when i look from view source, all the source is there but browser does not show anything, just an empty page. Does anybody have idea about this ?
5
2181
by: Zambien | last post by:
Hi all, Here's my problem. I have tables that are using the menu/submenu idea for hiding rows. This works fine in IE (of course) and does show/hide correctly in netscape, but as soon as the shown method is called, the table gets skewed and the presentation of the data on the page goes horribly wrong. I don't think this is a table issue as I have spent alot of time staring at this code. Here is the html...
0
1828
by: spamfurnace | last post by:
Hi there on this rainy old day, I have some users logging into an asp.net website. The server the site sits on allows users to webmail through a common service/component called Horde. In order to log onto Horde webmail the users have to fill in 5 fields. I wanted to simplify things for them so they only had to click a button once logged into the aps.net site. At the moment i do this by recreating the form on my webform making all the...
4
2699
by: vickaiser1 | last post by:
I am creating a setup project for an application and need to edit the Metabase.xml file during setup. Does anyone know of a way to stop and then restart services programatically before and after I edit this file? Vic
2
1565
by: Mike | last post by:
I am trying to call one webform from the click event of a button on another webform. In VB6 windows applications, this is a simple Form.Show, but I can't figure out the syntax to call Webforms. Can anyone help with some sample code?
21
2400
by: daydream | last post by:
yeah i need some help(such a common line) ,i have a menu and each link has its own div respectively and yeah obviously when u click the link the div shows, the problem is i would like each div to show no matter how many times you click the link for it and if you click on another one and when u go back to the original , the div would still show. at the moment i have partially done that, i click on item a ,that shows then when i click item b that...
18
4865
by: ryrocks | last post by:
Hi, Im making a 'contact us' page. The user click on the div, this then reveals another larger div displaying more information giving the effect of the box expanding or dropping down. I have 3 starting divs on my page, each one expanding onclick. The show/hide elemant works fine. There is one slight problem... I want the user to be able to click anywhere inside the starting div in order for the hidden div to be revealed. This is ok for the...
1
3812
oranoos3000
by: oranoos3000 | last post by:
hi would you please help me i have a online shopping center that i show pictures of the my product in home page. in the InterExplorer pictures is shown correctly but in Firefox browser is shown properties alt in img tag istead of picture . place of the pictures is saved in the database(my database is with mysql) and in home page i fetch properties of the product and address of place that pictures is located output of the code in the...
1
2047
by: Sarvesh1989 | last post by:
I have one main div & in that main div i have included 2 differrent div it show good result in firefox but in ie it doesn't show that same result div just get one above the other.plz do help me. my ccs is: /* General elements */ body {
0
9590
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10223
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10000
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9866
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7413
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3968
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.