473,509 Members | 3,095 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Equvalent of "Shadows" in VB.Net?

Hi,

I'm trying to hide an event of my custom usercontrol derived control,
something like "Shadows" in VB.Net, but although the event is hidden from
PropertyGrid, from CodeEditor I can still see/reach it. I use this code :

[EditorBrowsable(EditorBrowsableState.Never)]

[Browsable(false)]

new public event EventHandler BackColorChanged;

Does anybody knows a solution for this?

Thanks in advance,

Özden
Nov 16 '05 #1
10 3203
Try marking the event as protected or internal.

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
| Hi,
|
| I'm trying to hide an event of my custom usercontrol derived control,
| something like "Shadows" in VB.Net, but although the event is hidden from
| PropertyGrid, from CodeEditor I can still see/reach it. I use this code :
|
| [EditorBrowsable(EditorBrowsableState.Never)]
|
| [Browsable(false)]
|
| new public event EventHandler BackColorChanged;
|
| Does anybody knows a solution for this?
|
| Thanks in advance,
|
| Özden
|
|
Nov 16 '05 #2
Dear Kyril,

Thanks for the suggestion but I already tried it at got no success...

Any other suggestion?

Thanks again..

Özden

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:O2**************@tk2msftngp13.phx.gbl...
Try marking the event as protected or internal.

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
| Hi,
|
| I'm trying to hide an event of my custom usercontrol derived control,
| something like "Shadows" in VB.Net, but although the event is hidden from | PropertyGrid, from CodeEditor I can still see/reach it. I use this code : |
| [EditorBrowsable(EditorBrowsableState.Never)]
|
| [Browsable(false)]
|
| new public event EventHandler BackColorChanged;
|
| Does anybody knows a solution for this?
|
| Thanks in advance,
|
| Özden
|
|

Nov 16 '05 #3
Hmm, short of marking the event private, no.

In what scope will this event be used? It is something that will only be
used internally by the control? Or, will consumers of the control be able to
register for the event?

--
HTH

Kyril

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:eC*************@tk2msftngp13.phx.gbl...
| Dear Kyril,
|
| Thanks for the suggestion but I already tried it at got no success...
|
| Any other suggestion?
|
| Thanks again..
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:O2**************@tk2msftngp13.phx.gbl...
| > Try marking the event as protected or internal.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | Hi,
| > |
| > | I'm trying to hide an event of my custom usercontrol derived control,
| > | something like "Shadows" in VB.Net, but although the event is hidden
| from
| > | PropertyGrid, from CodeEditor I can still see/reach it. I use this
code
| :
| > |
| > | [EditorBrowsable(EditorBrowsableState.Never)]
| > |
| > | [Browsable(false)]
| > |
| > | new public event EventHandler BackColorChanged;
| > |
| > | Does anybody knows a solution for this?
| > |
| > | Thanks in advance,
| > |
| > | Özden
| > |
| > |
| >
| >
|
|
Nov 16 '05 #4
Dear Kyril,

Yes, events are going to be used internally and won't be exposed to the
developer...Developer neither will see it in PropertyGrid nor will be able
to register it via code...

"Shadows" works in VB.Net but I couldn't find the same in C#...:(

Özden

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:OQ**************@tk2msftngp13.phx.gbl...
Hmm, short of marking the event private, no.

In what scope will this event be used? It is something that will only be
used internally by the control? Or, will consumers of the control be able to register for the event?

--
HTH

Kyril

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:eC*************@tk2msftngp13.phx.gbl...
| Dear Kyril,
|
| Thanks for the suggestion but I already tried it at got no success...
|
| Any other suggestion?
|
| Thanks again..
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:O2**************@tk2msftngp13.phx.gbl...
| > Try marking the event as protected or internal.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | Hi,
| > |
| > | I'm trying to hide an event of my custom usercontrol derived control, | > | something like "Shadows" in VB.Net, but although the event is hidden
| from
| > | PropertyGrid, from CodeEditor I can still see/reach it. I use this
code
| :
| > |
| > | [EditorBrowsable(EditorBrowsableState.Never)]
| > |
| > | [Browsable(false)]
| > |
| > | new public event EventHandler BackColorChanged;
| > |
| > | Does anybody knows a solution for this?
| > |
| > | Thanks in advance,
| > |
| > | Özden
| > |
| > |
| >
| >
|
|

Nov 16 '05 #5
I think "new" in C# is the equivivalent of "Shadows" in VB.

/Chris


"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
Hi,

I'm trying to hide an event of my custom usercontrol derived control,
something like "Shadows" in VB.Net, but although the event is hidden from
PropertyGrid, from CodeEditor I can still see/reach it. I use this code :

[EditorBrowsable(EditorBrowsableState.Never)]

[Browsable(false)]

new public event EventHandler BackColorChanged;

Does anybody knows a solution for this?

Thanks in advance,

Özden

Nov 16 '05 #6
Hi Özden,

Then you would want to mark your event as private. That will allow access
internally to the class itself but will not allow access to it from
consumers or other outside components.

//this event is only seen from this class.
private event EventHandler myEvent;

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:ev**************@TK2MSFTNGP12.phx.gbl...
| Dear Kyril,
|
| Yes, events are going to be used internally and won't be exposed to the
| developer...Developer neither will see it in PropertyGrid nor will be able
| to register it via code...
|
| "Shadows" works in VB.Net but I couldn't find the same in C#...:(
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:OQ**************@tk2msftngp13.phx.gbl...
| > Hmm, short of marking the event private, no.
| >
| > In what scope will this event be used? It is something that will only be
| > used internally by the control? Or, will consumers of the control be
able
| to
| > register for the event?
| >
| > --
| > HTH
| >
| > Kyril
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:eC*************@tk2msftngp13.phx.gbl...
| > | Dear Kyril,
| > |
| > | Thanks for the suggestion but I already tried it at got no success...
| > |
| > | Any other suggestion?
| > |
| > | Thanks again..
| > |
| > | Özden
| > |
| > | "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| > | news:O2**************@tk2msftngp13.phx.gbl...
| > | > Try marking the event as protected or internal.
| > | >
| > | > --
| > | > HTH
| > | >
| > | > Kyril Magnos
| > | > "I'm not a developer anymore, I'm a software engineer now!" :-)
| > | >
| > | > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | > news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > | Hi,
| > | > |
| > | > | I'm trying to hide an event of my custom usercontrol derived
| control,
| > | > | something like "Shadows" in VB.Net, but although the event is
hidden
| > | from
| > | > | PropertyGrid, from CodeEditor I can still see/reach it. I use this
| > code
| > | :
| > | > |
| > | > | [EditorBrowsable(EditorBrowsableState.Never)]
| > | > |
| > | > | [Browsable(false)]
| > | > |
| > | > | new public event EventHandler BackColorChanged;
| > | > |
| > | > | Does anybody knows a solution for this?
| > | > |
| > | > | Thanks in advance,
| > | > |
| > | > | Özden
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| >
| >
|
|
Nov 16 '05 #7
Yes, the new keyword is the equivalent of Shadows in VB.NET.

--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message
news:Os**************@TK2MSFTNGP11.phx.gbl...
|I think "new" in C# is the equivivalent of "Shadows" in VB.
|
| /Chris
|
|
|
|
| "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > Hi,
| >
| > I'm trying to hide an event of my custom usercontrol derived control,
| > something like "Shadows" in VB.Net, but although the event is hidden
from
| > PropertyGrid, from CodeEditor I can still see/reach it. I use this code
:
| >
| > [EditorBrowsable(EditorBrowsableState.Never)]
| >
| > [Browsable(false)]
| >
| > new public event EventHandler BackColorChanged;
| >
| > Does anybody knows a solution for this?
| >
| > Thanks in advance,
| >
| > Özden
| >
| >
|
|
Nov 16 '05 #8
Hi Özden,

I did some research and came up with this. The BackColorChanged event is
inherited from UserControl and as such cannot be hidden from the code
internally in C#. One of the facts of life and inheritance. Now, while you
can hide it from the PropertyGrid by using Attributes, you will not be able
to hide it from code. Unfortunately, VB and C# do inheritance a bit
differently. The Shadows keyword in VB allows you to hide a base class
member by defining a new member that can have a different access level,
return type, and parameter signature. In other words, only the name remains
the same but the member itself may be completely different. Base class
members hidden in C# using the "new" keyword can only redefine their access
level and return type. The parameter signature must remain the same, or the
method is treated as an overload. This is why you cannot hide it completely
from code. But, I have a solution for you. While you cannot hide it, you can
override the OnBackColorChanged() method like so:

protected override void OnBackColorChanged(EventArgs e)
{
base.OnBackColorChanged (e);
throw new NotImplementedException("This event is unavailable");
//I just put this in, you can put whatever you want here...
}

So that even if the consumer registers for the event, they will not be able
to anything with it.
--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:e2**************@tk2msftngp13.phx.gbl...
|I know that "new" keyword is the equal/nearest functional in C# for
| "Shadows" in VB.Net but I couldn't get it work like in "Shadows"...
|
| I've attached two sample "usercontrol" files...In VB.Net, I can hide
| "BackColorChanged" with "Shadows" but in C#, even it hides it from the
| PropertyGrid, I can still see/reach it via code after I use "new"...
|
| Any help will be appreciated...
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:%2****************@TK2MSFTNGP10.phx.gbl...
| > Yes, the new keyword is the equivalent of Shadows in VB.NET.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message
| > news:Os**************@TK2MSFTNGP11.phx.gbl...
| > |I think "new" in C# is the equivivalent of "Shadows" in VB.
| > |
| > | /Chris
| > |
| > |
| > |
| > |
| > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > Hi,
| > | >
| > | > I'm trying to hide an event of my custom usercontrol derived
control,
| > | > something like "Shadows" in VB.Net, but although the event is hidden
| > from
| > | > PropertyGrid, from CodeEditor I can still see/reach it. I use this
| code
| > :
| > | >
| > | > [EditorBrowsable(EditorBrowsableState.Never)]
| > | >
| > | > [Browsable(false)]
| > | >
| > | > new public event EventHandler BackColorChanged;
| > | >
| > | > Does anybody knows a solution for this?
| > | >
| > | > Thanks in advance,
| > | >
| > | > Özden
| > | >
| > | >
| > |
| > |
| >
| >
|
|
|
Nov 16 '05 #9
Dear Kyril,

Thank you for your great effort on solving my problem...

Normally I don't care whether the events will work or not but it was
essential for me to hide the events as those events normally doesn't have
anything to do with my control, in a correct way, my control is for a
specific purpose and I didn't want to make it available for a generic usage
(Some technical and commercial reasons lies on this) so I wanted to hide the
events...

Anyway, if we can't do it, nothing else can be done...

I again want to thank you for your personal attention...

Best Wishes,

Özden Irmak

"Kyril Magnos" <ky**********@yahoo.com> wrote in message
news:u2**************@TK2MSFTNGP11.phx.gbl...
Hi Özden,

I did some research and came up with this. The BackColorChanged event is
inherited from UserControl and as such cannot be hidden from the code
internally in C#. One of the facts of life and inheritance. Now, while you
can hide it from the PropertyGrid by using Attributes, you will not be able to hide it from code. Unfortunately, VB and C# do inheritance a bit
differently. The Shadows keyword in VB allows you to hide a base class
member by defining a new member that can have a different access level,
return type, and parameter signature. In other words, only the name remains the same but the member itself may be completely different. Base class
members hidden in C# using the "new" keyword can only redefine their access level and return type. The parameter signature must remain the same, or the method is treated as an overload. This is why you cannot hide it completely from code. But, I have a solution for you. While you cannot hide it, you can override the OnBackColorChanged() method like so:

protected override void OnBackColorChanged(EventArgs e)
{
base.OnBackColorChanged (e);
throw new NotImplementedException("This event is unavailable");
//I just put this in, you can put whatever you want here...
}

So that even if the consumer registers for the event, they will not be able to anything with it.
--
HTH

Kyril Magnos
"I'm not a developer anymore, I'm a software engineer now!" :-)

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:e2**************@tk2msftngp13.phx.gbl...
|I know that "new" keyword is the equal/nearest functional in C# for
| "Shadows" in VB.Net but I couldn't get it work like in "Shadows"...
|
| I've attached two sample "usercontrol" files...In VB.Net, I can hide
| "BackColorChanged" with "Shadows" but in C#, even it hides it from the
| PropertyGrid, I can still see/reach it via code after I use "new"...
|
| Any help will be appreciated...
|
| Özden
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:%2****************@TK2MSFTNGP10.phx.gbl...
| > Yes, the new keyword is the equivalent of Shadows in VB.NET.
| >
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in message
| > news:Os**************@TK2MSFTNGP11.phx.gbl...
| > |I think "new" in C# is the equivivalent of "Shadows" in VB.
| > |
| > | /Chris
| > |
| > |
| > |
| > |
| > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > Hi,
| > | >
| > | > I'm trying to hide an event of my custom usercontrol derived
control,
| > | > something like "Shadows" in VB.Net, but although the event is hidden | > from
| > | > PropertyGrid, from CodeEditor I can still see/reach it. I use this
| code
| > :
| > | >
| > | > [EditorBrowsable(EditorBrowsableState.Never)]
| > | >
| > | > [Browsable(false)]
| > | >
| > | > new public event EventHandler BackColorChanged;
| > | >
| > | > Does anybody knows a solution for this?
| > | >
| > | > Thanks in advance,
| > | >
| > | > Özden
| > | >
| > | >
| > |
| > |
| >
| >
|
|
|

Nov 16 '05 #10
Not a problem at all. Best of luck to you. :-)

--
Kyril Magnos

"Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
news:eF*************@TK2MSFTNGP11.phx.gbl...
| Dear Kyril,
|
| Thank you for your great effort on solving my problem...
|
| Normally I don't care whether the events will work or not but it was
| essential for me to hide the events as those events normally doesn't have
| anything to do with my control, in a correct way, my control is for a
| specific purpose and I didn't want to make it available for a generic
usage
| (Some technical and commercial reasons lies on this) so I wanted to hide
the
| events...
|
| Anyway, if we can't do it, nothing else can be done...
|
| I again want to thank you for your personal attention...
|
| Best Wishes,
|
| Özden Irmak
|
| "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| news:u2**************@TK2MSFTNGP11.phx.gbl...
| > Hi Özden,
| >
| > I did some research and came up with this. The BackColorChanged event is
| > inherited from UserControl and as such cannot be hidden from the code
| > internally in C#. One of the facts of life and inheritance. Now, while
you
| > can hide it from the PropertyGrid by using Attributes, you will not be
| able
| > to hide it from code. Unfortunately, VB and C# do inheritance a bit
| > differently. The Shadows keyword in VB allows you to hide a base class
| > member by defining a new member that can have a different access level,
| > return type, and parameter signature. In other words, only the name
| remains
| > the same but the member itself may be completely different. Base class
| > members hidden in C# using the "new" keyword can only redefine their
| access
| > level and return type. The parameter signature must remain the same, or
| the
| > method is treated as an overload. This is why you cannot hide it
| completely
| > from code. But, I have a solution for you. While you cannot hide it, you
| can
| > override the OnBackColorChanged() method like so:
| >
| > protected override void OnBackColorChanged(EventArgs e)
| > {
| > base.OnBackColorChanged (e);
| > throw new NotImplementedException("This event is unavailable");
| > //I just put this in, you can put whatever you want here...
| > }
| >
| > So that even if the consumer registers for the event, they will not be
| able
| > to anything with it.
| > --
| > HTH
| >
| > Kyril Magnos
| > "I'm not a developer anymore, I'm a software engineer now!" :-)
| >
| > "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > news:e2**************@tk2msftngp13.phx.gbl...
| > |I know that "new" keyword is the equal/nearest functional in C# for
| > | "Shadows" in VB.Net but I couldn't get it work like in "Shadows"...
| > |
| > | I've attached two sample "usercontrol" files...In VB.Net, I can hide
| > | "BackColorChanged" with "Shadows" but in C#, even it hides it from the
| > | PropertyGrid, I can still see/reach it via code after I use "new"...
| > |
| > | Any help will be appreciated...
| > |
| > | Özden
| > |
| > | "Kyril Magnos" <ky**********@yahoo.com> wrote in message
| > | news:%2****************@TK2MSFTNGP10.phx.gbl...
| > | > Yes, the new keyword is the equivalent of Shadows in VB.NET.
| > | >
| > | > --
| > | > HTH
| > | >
| > | > Kyril Magnos
| > | > "I'm not a developer anymore, I'm a software engineer now!" :-)
| > | >
| > | > "Christoffer Skjoldborg" <firstnameATlastnameDOT.biz> wrote in
message
| > | > news:Os**************@TK2MSFTNGP11.phx.gbl...
| > | > |I think "new" in C# is the equivivalent of "Shadows" in VB.
| > | > |
| > | > | /Chris
| > | > |
| > | > |
| > | > |
| > | > |
| > | > | "Özden Irmak" <ozdenirmakatisnetdotnetdottr> wrote in message
| > | > | news:uZ**************@TK2MSFTNGP10.phx.gbl...
| > | > | > Hi,
| > | > | >
| > | > | > I'm trying to hide an event of my custom usercontrol derived
| > control,
| > | > | > something like "Shadows" in VB.Net, but although the event is
| hidden
| > | > from
| > | > | > PropertyGrid, from CodeEditor I can still see/reach it. I use
this
| > | code
| > | > :
| > | > | >
| > | > | > [EditorBrowsable(EditorBrowsableState.Never)]
| > | > | >
| > | > | > [Browsable(false)]
| > | > | >
| > | > | > new public event EventHandler BackColorChanged;
| > | > | >
| > | > | > Does anybody knows a solution for this?
| > | > | >
| > | > | > Thanks in advance,
| > | > | >
| > | > | > Özden
| > | > | >
| > | > | >
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| > |
| >
| >
|
|
Nov 16 '05 #11

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

Similar topics

4
2327
by: Jochen Demuth | last post by:
Hi, I am trying to install ZWiki on Zope 2.5.1 / Debian 2.4.20-bf2.4-xfs. First I copied the contents of the ZWiki-0.32.0.tgz to the Products-directory under SOFTWARE_HOME: This is what it...
114
7623
by: muldoon | last post by:
Americans consider having a "British accent" a sign of sophistication and high intelligence. Many companies hire salespersons from Britain to represent their products,etc. Question: When the...
3
6829
by: Greg G | last post by:
We have a band web site. Here's the site now: http://www.risky-biz.com The home page has a "collage" of photos of the members of the band. The collage is actually one .gif image that I put...
8
13289
by: Dot net work | last post by:
I need VB.NET's "shadows" functionality inside a C# project. I tried the "new" keyword, but it didn't seem to work, because my particular function does in fact differ in signature to the function...
9
6088
by: Chazza | last post by:
I would like to override a method from an inherited class, but the new method has a different signature to the inherited class. Example: class A { private void Init() { // code } } class B...
9
1786
by: Larry Woods | last post by:
I have a method in my base class that I want ALL derived classes to use. But, I find that I can create a "Shadow" method in my derived class that "overrides" the method in my base class. Can't...
5
1657
by: Dave Taylor | last post by:
I'm trying to derive a class from a typed DataSet to add some methods to one of the DataTables. I would like to keep the names the same in the derived class as in the base class, so I have used...
41
4240
by: JohnR | last post by:
In it's simplest form, assume that I have created a usercontrol, WSToolBarButton that contains a button. I would like to eventually create copies of WSToolBarButton dynamically at run time based...
7
1806
by: Nik Coughlin | last post by:
Further to my earlier post in alt.html, I ended up preparing these pages: http://nrkn.com/skinning/ They list different ways to "skin" an HTML element (ie add rounded corners, drop shadows,...
0
7136
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...
0
7412
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...
1
7069
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...
0
7505
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...
0
4730
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...
0
3216
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...
0
1570
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 ...
1
775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
441
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...

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.