473,805 Members | 1,956 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET and VERY buggy VS.NET 2003

WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since its
release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the rest
are DropDownLists and TextBoxes. Almost every TextBox or DropDownList is
placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).

The first buggy thing I notice that seems to be particular to this project
(at least this page) is that my DropDownLists often seem to lose their
bindings to the SelectedIndexCh anged event. The code is present for the
wiring, yet when I run the project, my postbacks do not fire. I have to
double click the DropDownList (which takes me to code that I have already
written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table or
panel I'm working in. It just suddenly decides it wants to stay in that
area. Only if I take VS.NET out of focus and return to it does the mouse
work properly. Its almost as if theres something weird going on with windows
system events, but who knows.

While these 2 items only happen within this project I'm working on, another
bug I've found is related to my builds - often VS.NET will report a build
error, but nothing shows up in my task list. If I continue to run the
project, it runs without throwing any runtime errors; it simply thinks that
something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible workaround.
My form development is taking much longer than it should because its just
behaving oddly.
Feb 3 '06 #1
9 1394
Firstly, I dont think a form with 120 controls/60 Labels on it is a medium
sized form. Although ASP.NET should be able to handle it, you may want to
consider re-thinking your design and perhaps using a multi part process with
more than one form ?

I have experienced similar things ( not the mouse bit ) when designing
asp.net apps before and almost without exception it has ended up being a
logic or flow error which causes the apparently 'odd' behaviour, seemingly
lost bindings etc.

This is probably not much in the way of direct help, but maybe it could give
you some point of reference. In summary, my only other offering would be to
suggest you map out very thoroughly the events which take place in the
firing order on a large sheet of paper and try and work out where you could
be going wrong ( if thats the case ).

HTH

--
Terry Burns
http://TrainingOn.net

"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:eT******** ******@TK2MSFTN GP09.phx.gbl...
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since its
release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the
rest are DropDownLists and TextBoxes. Almost every TextBox or DropDownList
is placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).

The first buggy thing I notice that seems to be particular to this project
(at least this page) is that my DropDownLists often seem to lose their
bindings to the SelectedIndexCh anged event. The code is present for the
wiring, yet when I run the project, my postbacks do not fire. I have to
double click the DropDownList (which takes me to code that I have already
written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table
or panel I'm working in. It just suddenly decides it wants to stay in that
area. Only if I take VS.NET out of focus and return to it does the mouse
work properly. Its almost as if theres something weird going on with
windows system events, but who knows.

While these 2 items only happen within this project I'm working on,
another bug I've found is related to my builds - often VS.NET will report
a build error, but nothing shows up in my task list. If I continue to run
the project, it runs without throwing any runtime errors; it simply thinks
that something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible
workaround. My form development is taking much longer than it should
because its just behaving oddly.

Feb 3 '06 #2
Elliot,

I am experiencing the first two problems which you are facing now and I
never encountered the last bug.

I hope that Microsoft will release a patch for VS 2003 or would they want us
to upgrade to VS 2005 :) ?

"Elliot Rodriguez" wrote:
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since its
release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the rest
are DropDownLists and TextBoxes. Almost every TextBox or DropDownList is
placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).

The first buggy thing I notice that seems to be particular to this project
(at least this page) is that my DropDownLists often seem to lose their
bindings to the SelectedIndexCh anged event. The code is present for the
wiring, yet when I run the project, my postbacks do not fire. I have to
double click the DropDownList (which takes me to code that I have already
written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table or
panel I'm working in. It just suddenly decides it wants to stay in that
area. Only if I take VS.NET out of focus and return to it does the mouse
work properly. Its almost as if theres something weird going on with windows
system events, but who knows.

While these 2 items only happen within this project I'm working on, another
bug I've found is related to my builds - often VS.NET will report a build
error, but nothing shows up in my task list. If I continue to run the
project, it runs without throwing any runtime errors; it simply thinks that
something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible workaround.
My form development is taking much longer than it should because its just
behaving oddly.

Feb 3 '06 #3
The form's design cannot be changed. Its meant to be a dynamic form that
builds on previously selected options, and the user must stay on the same
page.

I have considered breaking up the page using IFRAMEs, but this is a kludge
at best.

Rendering this form should not be terribly taxing. While there are 120
(total) controls, and I can eliminate 60 by not using labels (which I do
because I can access them by name in the DDL postbacks and change text
dynamically), 60 dropdownlists with perhaps at most 5 ListItems to each
(with minimum DB IO) should be a piece of cake.

I think its more a problem with the IDE than anything.

"Terry Burns" <me@mine.com> wrote in message
news:ed******** *****@TK2MSFTNG P14.phx.gbl...
Firstly, I dont think a form with 120 controls/60 Labels on it is a medium
sized form. Although ASP.NET should be able to handle it, you may want to
consider re-thinking your design and perhaps using a multi part process
with more than one form ?

I have experienced similar things ( not the mouse bit ) when designing
asp.net apps before and almost without exception it has ended up being a
logic or flow error which causes the apparently 'odd' behaviour, seemingly
lost bindings etc.

This is probably not much in the way of direct help, but maybe it could
give you some point of reference. In summary, my only other offering would
be to suggest you map out very thoroughly the events which take place in
the firing order on a large sheet of paper and try and work out where you
could be going wrong ( if thats the case ).

HTH

--
Terry Burns
http://TrainingOn.net

"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:eT******** ******@TK2MSFTN GP09.phx.gbl...
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since
its release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the
rest are DropDownLists and TextBoxes. Almost every TextBox or
DropDownList is placed in a Panel control whos visibility property is
changed based on postbacks from another DropDownList (basically its a
form that builds up based on DDL selections).

The first buggy thing I notice that seems to be particular to this
project (at least this page) is that my DropDownLists often seem to lose
their bindings to the SelectedIndexCh anged event. The code is present for
the wiring, yet when I run the project, my postbacks do not fire. I have
to double click the DropDownList (which takes me to code that I have
already written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table
or panel I'm working in. It just suddenly decides it wants to stay in
that area. Only if I take VS.NET out of focus and return to it does the
mouse work properly. Its almost as if theres something weird going on
with windows system events, but who knows.

While these 2 items only happen within this project I'm working on,
another bug I've found is related to my builds - often VS.NET will report
a build error, but nothing shows up in my task list. If I continue to run
the project, it runs without throwing any runtime errors; it simply
thinks that something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible
workaround. My form development is taking much longer than it should
because its just behaving oddly.


Feb 3 '06 #4
On Fri, 3 Feb 2006 15:09:12 -0500, Elliot Rodriguez wrote:
I have a medium sized form with about 120 controls - 60 labels and the rest
are DropDownLists and TextBoxes. Almost every TextBox or DropDownList is
placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).


Frankly, I didn't read most of your message because this right here is the
source of your problem. In my opinion, the GUI designer is useful for
small to medium and quick and dirty pages. If you start designing huge
monstrosities, you really should invest in building an infrastructure to
support your project(s).

Large scale projects require a lot more work than small-mediaum RAD stuff.
I think you're just out of your mind to put 120 controls on a form using
the GUI designer.
Feb 4 '06 #5
On Fri, 3 Feb 2006 15:38:28 -0500, Elliot Rodriguez wrote:
The form's design cannot be changed. Its meant to be a dynamic form that
builds on previously selected options, and the user must stay on the same
page.


A design can always be changed. I think you're only thinking in a RAD
mentality. You might want to understand the bindings the GUI is doing and
why it's doing what it's doing (or not doing what you think it should be).

You should always strive to understand frameworks at a deeper level than a
GUI gives you.
Feb 4 '06 #6
I have delivered several large asp.net applications, so I think I can talk
with some experience here. The IDE will slow down considerably when you load
it up with huge numbers of controls but it ususally manages to cope. I have
noticed that sometimes it can get a little lost with the positioning of
controls, but everything still generally does still work.

If I have to design a form which has as many controls on it as yours does,
then I change the design, not because I dont think the ide cant actually
handle the number of controls but because I cant keep track of the number of
possible things which can go wrong coupled with the IDE slow down, so I
normally alter the design to compensate.

The other problem with designing forms with large numbers of control is that
they tend to be 'Very' time consuming in setting up and the time taken to
design a form with double the controls of another seems to obey some law
which makes the time required three or four times as long. Additionally,
users do not like working with forms which are crammed with controls because
it's confusing to look at and too easy to miss an option, and this can
happen with as little as 30 controls.

One option you may want to consider is the use of user controls, these as I
am sure you are aware logically grouped controls and can be loaded
dynamically on the page. This may or may not help depending on your design.

But hey, feel free to press on with your endeavour; I wish you the best of
luck as I think you are going to need it if you want to continue beating the
thing with lots of your time.

;-D

--
Terry Burns
http://TrainingOn.net
"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:O7******** ******@tk2msftn gp13.phx.gbl...
The form's design cannot be changed. Its meant to be a dynamic form that
builds on previously selected options, and the user must stay on the same
page.

I have considered breaking up the page using IFRAMEs, but this is a kludge
at best.

Rendering this form should not be terribly taxing. While there are 120
(total) controls, and I can eliminate 60 by not using labels (which I do
because I can access them by name in the DDL postbacks and change text
dynamically), 60 dropdownlists with perhaps at most 5 ListItems to each
(with minimum DB IO) should be a piece of cake.

I think its more a problem with the IDE than anything.

"Terry Burns" <me@mine.com> wrote in message
news:ed******** *****@TK2MSFTNG P14.phx.gbl...
Firstly, I dont think a form with 120 controls/60 Labels on it is a
medium sized form. Although ASP.NET should be able to handle it, you may
want to consider re-thinking your design and perhaps using a multi part
process with more than one form ?

I have experienced similar things ( not the mouse bit ) when designing
asp.net apps before and almost without exception it has ended up being a
logic or flow error which causes the apparently 'odd' behaviour,
seemingly lost bindings etc.

This is probably not much in the way of direct help, but maybe it could
give you some point of reference. In summary, my only other offering
would be to suggest you map out very thoroughly the events which take
place in the firing order on a large sheet of paper and try and work out
where you could be going wrong ( if thats the case ).

HTH

--
Terry Burns
http://TrainingOn.net

"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:eT******** ******@TK2MSFTN GP09.phx.gbl...
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since
its release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the
rest are DropDownLists and TextBoxes. Almost every TextBox or
DropDownList is placed in a Panel control whos visibility property is
changed based on postbacks from another DropDownList (basically its a
form that builds up based on DDL selections).

The first buggy thing I notice that seems to be particular to this
project (at least this page) is that my DropDownLists often seem to lose
their bindings to the SelectedIndexCh anged event. The code is present
for the wiring, yet when I run the project, my postbacks do not fire. I
have to double click the DropDownList (which takes me to code that I
have already written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse
will not move beyond an imaginary boundary within the designer. Usually
the boundary is defined by the same width and height attributes as the
table or panel I'm working in. It just suddenly decides it wants to stay
in that area. Only if I take VS.NET out of focus and return to it does
the mouse work properly. Its almost as if theres something weird going
on with windows system events, but who knows.

While these 2 items only happen within this project I'm working on,
another bug I've found is related to my builds - often VS.NET will
report a build error, but nothing shows up in my task list. If I
continue to run the project, it runs without throwing any runtime
errors; it simply thinks that something is wrong with the build but
reports nothing.

Wondering if anyone has experienced the same and has a possible
workaround. My form development is taking much longer than it should
because its just behaving oddly.



Feb 4 '06 #7
I've also found that VS2003 does have IDE problems. Frequently I notice
that controls with an event handler will lose the event binding. This
manifests as the "Handles myControl.<even t>" statement being cut off the end
of the procedure definition. It's easy enough to add it back in, but it is
very frustrating to need to do so.

This seems to happen most frequently on forms that are using panels that are
not visible by default, by are revealed after specific user action.

My experience of this would seem to corroborate with Elliot's.

I haven't had the problem with the mouse though. Perhaps this is partially
related to the mouse driver variation on your dev PC? I use an MS
IntelliMouse with the IntelliPoint 4.12 driver set.

Al

"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:O7******** ******@tk2msftn gp13.phx.gbl...
The form's design cannot be changed. Its meant to be a dynamic form that
builds on previously selected options, and the user must stay on the same
page.

I have considered breaking up the page using IFRAMEs, but this is a kludge
at best.

Rendering this form should not be terribly taxing. While there are 120
(total) controls, and I can eliminate 60 by not using labels (which I do
because I can access them by name in the DDL postbacks and change text
dynamically), 60 dropdownlists with perhaps at most 5 ListItems to each
(with minimum DB IO) should be a piece of cake.

I think its more a problem with the IDE than anything.

"Terry Burns" <me@mine.com> wrote in message
news:ed******** *****@TK2MSFTNG P14.phx.gbl...
Firstly, I dont think a form with 120 controls/60 Labels on it is a
medium sized form. Although ASP.NET should be able to handle it, you may
want to consider re-thinking your design and perhaps using a multi part
process with more than one form ?

I have experienced similar things ( not the mouse bit ) when designing
asp.net apps before and almost without exception it has ended up being a
logic or flow error which causes the apparently 'odd' behaviour,
seemingly lost bindings etc.

This is probably not much in the way of direct help, but maybe it could
give you some point of reference. In summary, my only other offering
would be to suggest you map out very thoroughly the events which take
place in the firing order on a large sheet of paper and try and work out
where you could be going wrong ( if thats the case ).

HTH

--
Terry Burns
http://TrainingOn.net

"Elliot Rodriguez" <elliotrodrigue zatgeemaildotco m> wrote in message
news:eT******** ******@TK2MSFTN GP09.phx.gbl...
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since
its release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the
rest are DropDownLists and TextBoxes. Almost every TextBox or
DropDownList is placed in a Panel control whos visibility property is
changed based on postbacks from another DropDownList (basically its a
form that builds up based on DDL selections).

The first buggy thing I notice that seems to be particular to this
project (at least this page) is that my DropDownLists often seem to lose
their bindings to the SelectedIndexCh anged event. The code is present
for the wiring, yet when I run the project, my postbacks do not fire. I
have to double click the DropDownList (which takes me to code that I
have already written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse
will not move beyond an imaginary boundary within the designer. Usually
the boundary is defined by the same width and height attributes as the
table or panel I'm working in. It just suddenly decides it wants to stay
in that area. Only if I take VS.NET out of focus and return to it does
the mouse work properly. Its almost as if theres something weird going
on with windows system events, but who knows.

While these 2 items only happen within this project I'm working on,
another bug I've found is related to my builds - often VS.NET will
report a build error, but nothing shows up in my task list. If I
continue to run the project, it runs without throwing any runtime
errors; it simply thinks that something is wrong with the build but
reports nothing.

Wondering if anyone has experienced the same and has a possible
workaround. My form development is taking much longer than it should
because its just behaving oddly.



Feb 4 '06 #8
Elliot,
Unfortunately in 1.1 the delegate hookups
(e.g., mycontrol.Click +=new .... etc) get bombed especially when switching
from design view to source view. The action of double-clicking on a control
on the IDE designer surface is actually putting this back in (in addition to
wiring in the templace event-handler method). You might want to experiment
with setting the autoeventwireup directive to false and putting these in by
yourself.

In the ASP.NET 2.0 model this is handled much differently with partial
classes, and there is less chance of this kind of problem.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Elliot Rodriguez" wrote:
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since its
release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the rest
are DropDownLists and TextBoxes. Almost every TextBox or DropDownList is
placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).

The first buggy thing I notice that seems to be particular to this project
(at least this page) is that my DropDownLists often seem to lose their
bindings to the SelectedIndexCh anged event. The code is present for the
wiring, yet when I run the project, my postbacks do not fire. I have to
double click the DropDownList (which takes me to code that I have already
written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table or
panel I'm working in. It just suddenly decides it wants to stay in that
area. Only if I take VS.NET out of focus and return to it does the mouse
work properly. Its almost as if theres something weird going on with windows
system events, but who knows.

While these 2 items only happen within this project I'm working on, another
bug I've found is related to my builds - often VS.NET will report a build
error, but nothing shows up in my task list. If I continue to run the
project, it runs without throwing any runtime errors; it simply thinks that
something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible workaround.
My form development is taking much longer than it should because its just
behaving oddly.

Feb 4 '06 #9
Hi Peter,

I have never lost a handler this way. Maybe I'm just lucky ? BTW,
AutoEventWireup is set to "false" by default, if it wasnt he would have
even more problems.

In the ASP.NET 2.0 model this is handled much differently with partial
classes, and there is less chance of this kind of problem.
Peter Just curious here; How does having partial classes prevent this alleged bug
?
--
Terry Burns
http://TrainingOn.net
"Peter Bromberg [C# MVP]" <pb*******@yaho o.nospammin.com > wrote in message
news:0F******** *************** ***********@mic rosoft.com... Elliot,
Unfortunately in 1.1 the delegate hookups
(e.g., mycontrol.Click +=new .... etc) get bombed especially when switching
from design view to source view. The action of double-clicking on a
control
on the IDE designer surface is actually putting this back in (in addition
to
wiring in the templace event-handler method). You might want to
experiment
with setting the autoeventwireup directive to false and putting these in
by
yourself.

In the ASP.NET 2.0 model this is handled much differently with partial
classes, and there is less chance of this kind of problem.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"Elliot Rodriguez" wrote:
WinXP Pro

Let me preface this by saying I have developed with the .NET IDE since
its
release, and I consider myself reasonably savvy with it.

I have a medium sized form with about 120 controls - 60 labels and the
rest
are DropDownLists and TextBoxes. Almost every TextBox or DropDownList is
placed in a Panel control whos visibility property is changed based on
postbacks from another DropDownList (basically its a form that builds up
based on DDL selections).

The first buggy thing I notice that seems to be particular to this
project
(at least this page) is that my DropDownLists often seem to lose their
bindings to the SelectedIndexCh anged event. The code is present for the
wiring, yet when I run the project, my postbacks do not fire. I have to
double click the DropDownList (which takes me to code that I have already
written), and only then does the postback coding work.

The second thing concerns my mouse - there are moments when my mouse will
not move beyond an imaginary boundary within the designer. Usually the
boundary is defined by the same width and height attributes as the table
or
panel I'm working in. It just suddenly decides it wants to stay in that
area. Only if I take VS.NET out of focus and return to it does the mouse
work properly. Its almost as if theres something weird going on with
windows
system events, but who knows.

While these 2 items only happen within this project I'm working on,
another
bug I've found is related to my builds - often VS.NET will report a build
error, but nothing shows up in my task list. If I continue to run the
project, it runs without throwing any runtime errors; it simply thinks
that
something is wrong with the build but reports nothing.

Wondering if anyone has experienced the same and has a possible
workaround.
My form development is taking much longer than it should because its just
behaving oddly.

Feb 4 '06 #10

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

Similar topics

11
1631
by: Zoury | last post by:
Hi there! :O) I've noticed some strange behavior with the VS IDE. Here's two a can think of right now... but those are most fusstrating i've encountered. 1. Every now and then, I haven't noticed what we did for it to happen, it appears that the events that were linked to a control are lost. The code is still there but we have to reset the "handlers".
10
2068
by: Rob Dob | last post by:
Hi, I'm amazed!!! I am using VS2005, I create a new web project, c# and then within the default.aspx form right mouse click and select "View Compnent Designer" , I then select and drag a SQLDataAdapter onto the designer. I then go through the wizard and create SQL Query. I then compile the project, I have add in a "InitializeComponent();" within the Page_Load, I then run the program. everything works okay,, as it does noting. ...
16
1378
by: John A. Bailo | last post by:
I was pricing VS.NET Professional 2005 upgrade and found a good price on Amazon -- but then I read the customer reviews and they were terrible: http://www.amazon.com/exec/obidos/ASIN/B000BT8TRG/ref%3Dpd%5Fkar%5F3/103-1460775-6910259 For example: "Lots of nifty features, but unfortunately it needs a few more months of development before it will really be stable. "
9
1345
by: Ryan | last post by:
Hi all, I'm playing with Lutz Roeders Reflector and have found several areas where I think there are issues in the framework libraries. I can't see how the following should work as expected and the compiler gives me an error on the 'text1 = text1...' line. Is it really this buggy (this particular bug is in several places) or am I missing something? You can see that that code has a possibility of crashing if the property has a .. in it....
0
9596
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,...
0
10359
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10364
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,...
1
7645
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
6875
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
5541
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
4317
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
2
3843
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3007
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.