473,796 Members | 2,740 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASPX.VB inheriting

I just got moved to a project that has an inheritance structure sort of like
this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the
System.Web.UI.P age being inherited from the code behind. Is there a way of
solving this without re-organizing the page structure? I know it's sloppy,
but I can't change it.
Nov 18 '05 #1
9 1564
Ryan,
I have applications with several layers of inheritance, and it works
well. From what you have stated, there is no reason why is should not work.
Try to create a test project to isolate the offending code and debug.

Best regards,
Jeffrey Palermo

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:O9******** ******@TK2MSFTN GP10.phx.gbl...
I just got moved to a project that has an inheritance structure sort of like this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the
System.Web.UI.P age being inherited from the code behind. Is there a way of solving this without re-organizing the page structure? I know it's sloppy, but I can't change it.

Nov 18 '05 #2
Jeff,

Thank you for the reply.

Sorry if I wasn't clearer. The code works, compiles, runes etc. What my
issue is whenever I load jthe ASPX file, it tells me it can't find the page
behind. As well, any coding done on the ASPX side, does not give me any
inteli sense for anything i do.

The only way I can fix this, it is very dirty, is to cut out the Page
declarative line at the top, save the ASPX page, then open it again. Then
paste the top line back in.

/RT
"Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo> wrote in
message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
Ryan,
I have applications with several layers of inheritance, and it works
well. From what you have stated, there is no reason why is should not work. Try to create a test project to isolate the offending code and debug.

Best regards,
Jeffrey Palermo

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:O9******** ******@TK2MSFTN GP10.phx.gbl...
I just got moved to a project that has an inheritance structure sort of

like
this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the System.Web.UI.P age being inherited from the code behind. Is there a way

of
solving this without re-organizing the page structure? I know it's

sloppy,
but I can't change it.


Nov 18 '05 #3
If i were u since you would be using it ..
To save ur time just re organize it..
GDLUCK

"Ryan Ternier" wrote:
I just got moved to a project that has an inheritance structure sort of like
this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the
System.Web.UI.P age being inherited from the code behind. Is there a way of
solving this without re-organizing the page structure? I know it's sloppy,
but I can't change it.

Nov 18 '05 #4
Hi Ryan,

Perhaps you could post the "@Page" declaration at the top of your ASPX page.
It should contain a "CodeBehind " attribute that Visual Studio.Net uses to
identify the CodeBehind file at design-time. The "CodeBehind " attribute is
not necessary to the running of the Page at run-time.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
Jeff,

Thank you for the reply.

Sorry if I wasn't clearer. The code works, compiles, runes etc. What my
issue is whenever I load jthe ASPX file, it tells me it can't find the page behind. As well, any coding done on the ASPX side, does not give me any
inteli sense for anything i do.

The only way I can fix this, it is very dirty, is to cut out the Page
declarative line at the top, save the ASPX page, then open it again. Then
paste the top line back in.

/RT
"Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo> wrote in message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
Ryan,
I have applications with several layers of inheritance, and it works
well. From what you have stated, there is no reason why is should not

work.
Try to create a test project to isolate the offending code and debug.

Best regards,
Jeffrey Palermo

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:O9******** ******@TK2MSFTN GP10.phx.gbl...
I just got moved to a project that has an inheritance structure sort
of
like
this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the System.Web.UI.P age being inherited from the code behind. Is there a

way of
solving this without re-organizing the page structure? I know it's

sloppy,
but I can't change it.



Nov 18 '05 #5
Sure,

Here's one:

<%@ Page Language="vb" AutoEventWireup ="false" Codebehind="Sea rch.aspx.vb"
Inherits="Actio nItems2.Search" %>
---
Inside Search.aspx.vb:

Public Class Search
Inherits Utility

Inside Utility:

Public Class Utility
Inherits DHTMLMenu

Inside DHTMLMenu:

Public Class DHTMLMenu
Inherits System.Web.UI.P age


"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:eq******** ******@TK2MSFTN GP14.phx.gbl...
Hi Ryan,

Perhaps you could post the "@Page" declaration at the top of your ASPX page. It should contain a "CodeBehind " attribute that Visual Studio.Net uses to
identify the CodeBehind file at design-time. The "CodeBehind " attribute is
not necessary to the running of the Page at run-time.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
Jeff,

Thank you for the reply.

Sorry if I wasn't clearer. The code works, compiles, runes etc. What my
issue is whenever I load jthe ASPX file, it tells me it can't find the

page
behind. As well, any coding done on the ASPX side, does not give me any
inteli sense for anything i do.

The only way I can fix this, it is very dirty, is to cut out the Page
declarative line at the top, save the ASPX page, then open it again. Then
paste the top line back in.

/RT
"Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo> wrote

in
message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
Ryan,
I have applications with several layers of inheritance, and it works well. From what you have stated, there is no reason why is should not

work.
Try to create a test project to isolate the offending code and debug.

Best regards,
Jeffrey Palermo

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:O9******** ******@TK2MSFTN GP10.phx.gbl...
> I just got moved to a project that has an inheritance structure sort of like
> this:
>
> MyWebPage.aspx
> inherits ---> MyWebPage.ASPX. VB
> inherits ----> Utility.VB
> inherits -----> DHTMLMenu.vb
> inherits ----> System.WEb.UI.P age
>
> Whenever I load up my aspx page, i get an error because it can't
find the
> System.Web.UI.P age being inherited from the code behind. Is there a

way of
> solving this without re-organizing the page structure? I know it's
sloppy,
> but I can't change it.
>
>



Nov 18 '05 #6
Okay, according to your @Page directive, the CodeBehind file is in the same
folder as the .aspx file, correct?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:uN******** ******@TK2MSFTN GP12.phx.gbl...
Sure,

Here's one:

<%@ Page Language="vb" AutoEventWireup ="false" Codebehind="Sea rch.aspx.vb"
Inherits="Actio nItems2.Search" %>
---
Inside Search.aspx.vb:

Public Class Search
Inherits Utility

Inside Utility:

Public Class Utility
Inherits DHTMLMenu

Inside DHTMLMenu:

Public Class DHTMLMenu
Inherits System.Web.UI.P age


"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:eq******** ******@TK2MSFTN GP14.phx.gbl...
Hi Ryan,

Perhaps you could post the "@Page" declaration at the top of your ASPX

page.
It should contain a "CodeBehind " attribute that Visual Studio.Net uses to
identify the CodeBehind file at design-time. The "CodeBehind " attribute is not necessary to the running of the Page at run-time.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
Jeff,

Thank you for the reply.

Sorry if I wasn't clearer. The code works, compiles, runes etc. What my issue is whenever I load jthe ASPX file, it tells me it can't find the

page
behind. As well, any coding done on the ASPX side, does not give me any inteli sense for anything i do.

The only way I can fix this, it is very dirty, is to cut out the Page
declarative line at the top, save the ASPX page, then open it again. Then paste the top line back in.

/RT
"Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo> wrote in
message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
> Ryan,
> I have applications with several layers of inheritance, and it works > well. From what you have stated, there is no reason why is should
not work.
> Try to create a test project to isolate the offending code and debug. >
> Best regards,
> Jeffrey Palermo
>
> "Ryan Ternier" <rt******@icomp asstech.com> wrote in message
> news:O9******** ******@TK2MSFTN GP10.phx.gbl...
> > I just got moved to a project that has an inheritance structure sort
of
> like
> > this:
> >
> > MyWebPage.aspx
> > inherits ---> MyWebPage.ASPX. VB
> > inherits ----> Utility.VB
> > inherits -----> DHTMLMenu.vb
> > inherits ----> System.WEb.UI.P age
> >
> > Whenever I load up my aspx page, i get an error because it can't find the
> > System.Web.UI.P age being inherited from the code behind. Is there

a way
> of
> > solving this without re-organizing the page structure? I know

it's > sloppy,
> > but I can't change it.
> >
> >
>
>



Nov 18 '05 #7
Yes.
The code behind is in the same directory as the ASPX page.

The Utility, and DHTMLMenu files are in a seperate directory.

/RT
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Okay, according to your @Page directive, the CodeBehind file is in the same folder as the .aspx file, correct?

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:uN******** ******@TK2MSFTN GP12.phx.gbl...
Sure,

Here's one:

<%@ Page Language="vb" AutoEventWireup ="false" Codebehind="Sea rch.aspx.vb"
Inherits="Actio nItems2.Search" %>
---
Inside Search.aspx.vb:

Public Class Search
Inherits Utility

Inside Utility:

Public Class Utility
Inherits DHTMLMenu

Inside DHTMLMenu:

Public Class DHTMLMenu
Inherits System.Web.UI.P age


"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:eq******** ******@TK2MSFTN GP14.phx.gbl...
Hi Ryan,

Perhaps you could post the "@Page" declaration at the top of your ASPX page.
It should contain a "CodeBehind " attribute that Visual Studio.Net uses

to identify the CodeBehind file at design-time. The "CodeBehind " attribute is
not necessary to the running of the Page at run-time.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:eR******** ******@TK2MSFTN GP10.phx.gbl...
> Jeff,
>
> Thank you for the reply.
>
> Sorry if I wasn't clearer. The code works, compiles, runes etc. What my > issue is whenever I load jthe ASPX file, it tells me it can't find
the page
> behind. As well, any coding done on the ASPX side, does not give me
any > inteli sense for anything i do.
>
> The only way I can fix this, it is very dirty, is to cut out the Page > declarative line at the top, save the ASPX page, then open it again.

Then
> paste the top line back in.
>
> /RT
> "Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo> wrote in
> message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
> > Ryan,
> > I have applications with several layers of inheritance, and it

works
> > well. From what you have stated, there is no reason why is should not > work.
> > Try to create a test project to isolate the offending code and debug. > >
> > Best regards,
> > Jeffrey Palermo
> >
> > "Ryan Ternier" <rt******@icomp asstech.com> wrote in message
> > news:O9******** ******@TK2MSFTN GP10.phx.gbl...
> > > I just got moved to a project that has an inheritance structure sort of
> > like
> > > this:
> > >
> > > MyWebPage.aspx
> > > inherits ---> MyWebPage.ASPX. VB
> > > inherits ----> Utility.VB
> > > inherits -----> DHTMLMenu.vb
> > > inherits ----> System.WEb.UI.P age
> > >
> > > Whenever I load up my aspx page, i get an error because it can't

find
> the
> > > System.Web.UI.P age being inherited from the code behind. Is
there a way
> > of
> > > solving this without re-organizing the page structure? I know it's > > sloppy,
> > > but I can't change it.
> > >
> > >
> >
> >
>
>



Nov 18 '05 #8
Yes, I have thought about this.

This is a System with over 100 dynamic aspx pages, not to mention all
objects, and classes we have. Time does not permit me to reorganize it until
it's been fully released.

This is an issue I've had with .NET for awhile, and don't know how to fix
it. Even on my home systems I get this error :(
"Patrick.O. Ige" <Pa*********@di scussions.micro soft.com> wrote in message
news:A6******** *************** ***********@mic rosoft.com...
If i were u since you would be using it ..
To save ur time just re organize it..
GDLUCK

"Ryan Ternier" wrote:
I just got moved to a project that has an inheritance structure sort of like this:

MyWebPage.aspx
inherits ---> MyWebPage.ASPX. VB
inherits ----> Utility.VB
inherits -----> DHTMLMenu.vb
inherits ----> System.WEb.UI.P age

Whenever I load up my aspx page, i get an error because it can't find the System.Web.UI.P age being inherited from the code behind. Is there a way of solving this without re-organizing the page structure? I know it's sloppy, but I can't change it.

Nov 18 '05 #9
Well, Ryan, I'm currently out of ideas. I have built one ASP.Net app which
uses an inherited Page class, but only one layer of inheritance, and didn't
have the problem you mentioned. So, you have my sympathies. :-(

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:#w******** ******@TK2MSFTN GP09.phx.gbl...
Yes.
The code behind is in the same directory as the ASPX page.

The Utility, and DHTMLMenu files are in a seperate directory.

/RT
"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Okay, according to your @Page directive, the CodeBehind file is in the

same
folder as the .aspx file, correct?

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Ryan Ternier" <rt******@icomp asstech.com> wrote in message
news:uN******** ******@TK2MSFTN GP12.phx.gbl...
Sure,

Here's one:

<%@ Page Language="vb" AutoEventWireup ="false" Codebehind="Sea rch.aspx.vb" Inherits="Actio nItems2.Search" %>
---
Inside Search.aspx.vb:

Public Class Search
Inherits Utility

Inside Utility:

Public Class Utility
Inherits DHTMLMenu

Inside DHTMLMenu:

Public Class DHTMLMenu
Inherits System.Web.UI.P age


"Kevin Spencer" <ks******@takem pis.com> wrote in message
news:eq******** ******@TK2MSFTN GP14.phx.gbl...
> Hi Ryan,
>
> Perhaps you could post the "@Page" declaration at the top of your ASPX page.
> It should contain a "CodeBehind " attribute that Visual Studio.Net uses
to
> identify the CodeBehind file at design-time. The "CodeBehind " attribute
is
> not necessary to the running of the Page at run-time.
>
> --
> HTH,
> Kevin Spencer
> .Net Developer
> Microsoft MVP
> Neither a follower
> nor a lender be.
>
> "Ryan Ternier" <rt******@icomp asstech.com> wrote in message
> news:eR******** ******@TK2MSFTN GP10.phx.gbl...
> > Jeff,
> >
> > Thank you for the reply.
> >
> > Sorry if I wasn't clearer. The code works, compiles, runes etc.
What my
> > issue is whenever I load jthe ASPX file, it tells me it can't find the > page
> > behind. As well, any coding done on the ASPX side, does not give
me any
> > inteli sense for anything i do.
> >
> > The only way I can fix this, it is very dirty, is to cut out the Page > > declarative line at the top, save the ASPX page, then open it

again. Then
> > paste the top line back in.
> >
> > /RT
> > "Jeffrey Palermo [MCP]" <http://dotnetjunkies.c om/weblog/jpalermo>

wrote
> in
> > message news:O4******** ******@TK2MSFTN GP12.phx.gbl...
> > > Ryan,
> > > I have applications with several layers of inheritance, and it works
> > > well. From what you have stated, there is no reason why is should not
> > work.
> > > Try to create a test project to isolate the offending code and

debug.
> > >
> > > Best regards,
> > > Jeffrey Palermo
> > >
> > > "Ryan Ternier" <rt******@icomp asstech.com> wrote in message
> > > news:O9******** ******@TK2MSFTN GP10.phx.gbl...
> > > > I just got moved to a project that has an inheritance
structure sort
> of
> > > like
> > > > this:
> > > >
> > > > MyWebPage.aspx
> > > > inherits ---> MyWebPage.ASPX. VB
> > > > inherits ----> Utility.VB
> > > > inherits -----> DHTMLMenu.vb
> > > > inherits ----> System.WEb.UI.P age
> > > >
> > > > Whenever I load up my aspx page, i get an error because it

can't find
> > the
> > > > System.Web.UI.P age being inherited from the code behind. Is

there
a
> way
> > > of
> > > > solving this without re-organizing the page structure? I know

it's
> > > sloppy,
> > > > but I can't change it.
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #10

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

Similar topics

11
2169
by: Noah Coad [MVP .NET/C#] | last post by:
How do you make a member of a class mandatory to override with a _new_ definition? For example, when inheriting from System.Collections.CollectionBase, you are required to implement certain methods, such as public void Add(MyClass c). How can I enforce the same behavior (of requiring to implement a member with a new return type in an inherited class) in the master class (similar to the CollectionBase)? I have a class called...
5
2723
by: Jeff | last post by:
Greetings I am beginning a web app. I am using C# aspx forms for my web pages. Is it possible to create/use one aspx file as a base from which to derive other aspx files? I can not get this to work. What I tried was this: Create a new web project. - rename WebForm1.aspx to MyBase.aspx - Add (grad from tool box) a label to the html form - Then create another aspx file (using "Add Web Form"). This produces WebForm2.aspx.
3
1368
by: Rob Shorney | last post by:
Hi, How do I post the data from webform1.asp to webform2.aspx In classic asp you can use the request.form but when I do this in webform2 I get nothing. -- Regards
4
1735
by: roger janssens via DotNetMonster.com | last post by:
hello all. i'm used to scripting in php. there, you just include(bla.php) and it works. so i have a template that defines my layout and stays the same forever, but in that file, there's a table that's filled in with other pages, header.php, footer.php, menubar.php, i was trying to do the same with .net, but every page i try to include has his own page directive (well, i need the code behind... so i can't just delete those page...
1
3651
by: Me | last post by:
Hi, I inherited a web application that has several very similar forms for gathering user data. User's must choose the form that best fits their needs and fill it out. Each form has about 15 questions that are the same and a few that are different. The problem is that each form contains duplicate UI code and duplicate code in the code behind to handle these duplicate questions... I know, but I inherited the app.
2
1814
by: Charles Law | last post by:
I want a set of controls that all have a border, like a group box. I thought I would create a base control containing just a group box from which my set of controls could inherit. Assuming that this is the right approach (please tell me if it is not), how then do I make it so that the group box cannot be moved around on my set of controls, but is also able to act as container for other controls? If I leave the modifier of the group box...
3
5387
by: Alex Satrapa | last post by:
There's some mention in the (old!) documentation that constraints such as foreign keys won't include data from inheriting tables, eg: CREATE TABLE foo ( id SERIAL PRIMARY KEY ); CREATE TABLE bar ( attribute integer NOT NULL ) INHERITS (foo);
1
1937
by: Christian Blackburn | last post by:
Hi Gang, I have trouble getting my single page Aspx pages to allow the imports and or inherits command. Can someone reply with an example. Thanks, Christian Blackburn
4
3493
by: DotNetNewbie | last post by:
Hi, VS.NET is not showing me any intellisense on a page that references a master page in the codebehind. (the codebehind references a custom class that inherits from web.ui.page, and that page sets the master page) How can I fix this?
0
9685
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
9535
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10201
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
10021
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...
0
9061
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7558
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
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2931
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.