473,322 Members | 1,522 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Integrating Own Control with VS Designer question?

Hi!
I have a property of a Control (a button I'm making) that makes it possible
for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user have
a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will automatically
show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he has to
type "Round" in there...

Makes me think I need to create my own Type or something.. is that possible,
how?

Thanx
/Lars
Nov 21 '05 #1
10 1314
Add the browseable attribute
<Browsable(True)> _
Public Property MyProperty() As . . .

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Od**************@TK2MSFTNGP09.phx.gbl...
Hi!
I have a property of a Control (a button I'm making) that makes it possible for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user have a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will automatically show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he has to type "Round" in there...

Makes me think I need to create my own Type or something.. is that possible, how?

Thanx
/Lars

Nov 21 '05 #2

....and I can fill the actuall list of items that the property can be set to
with my own values?

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:%2***************@tk2msftngp13.phx.gbl...
Add the browseable attribute
<Browsable(True)> _
Public Property MyProperty() As . . .

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Od**************@TK2MSFTNGP09.phx.gbl...
Hi!
I have a property of a Control (a button I'm making) that makes it possible
for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user

have
a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will

automatically
show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he

has to
type "Round" in there...

Makes me think I need to create my own Type or something.. is that

possible,
how?

Thanx
/Lars


Nov 21 '05 #3
That takes a bit more work, Im not sure how to do this, I think your talking
about the Collection type property you see on list boxes etc

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...

...and I can fill the actuall list of items that the property can be set to with my own values?

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:%2***************@tk2msftngp13.phx.gbl...
Add the browseable attribute
<Browsable(True)> _
Public Property MyProperty() As . . .

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Od**************@TK2MSFTNGP09.phx.gbl...
Hi!
I have a property of a Control (a button I'm making) that makes it

possible
for the user to choose what shape a button should have... Round, Square, Triangle...

How do I in the designer view (in the properties window) make the user

have
a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will

automatically
show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he

has
to
type "Round" in there...

Makes me think I need to create my own Type or something.. is that

possible,
how?

Thanx
/Lars



Nov 21 '05 #4
No, not that...

I want the user in the designerview be able to set the ButtonShape property
(of my control) that is showing in the property window... and in that
property only have MY values to choose from as a dropdown list.

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:Oe******************@TK2MSFTNGP10.phx.gbl...
That takes a bit more work, Im not sure how to do this, I think your talking about the Collection type property you see on list boxes etc

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...

...and I can fill the actuall list of items that the property can be set

to
with my own values?

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:%2***************@tk2msftngp13.phx.gbl...
Add the browseable attribute
<Browsable(True)> _
Public Property MyProperty() As . . .

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Od**************@TK2MSFTNGP09.phx.gbl...
> Hi!
> I have a property of a Control (a button I'm making) that makes it
possible
> for the user to choose what shape a button should have... Round, Square, > Triangle...
>
> How do I in the designer view (in the properties window) make the user have
> a list of the shapes I intend to add to this control, to choose from? >
> If you create a Boolean property the list in designerview will
automatically
> show "True, False" but how do I add my own "Values" to that list... ? >
> The property is a string right now.. but the user has no idea that
he has
to
> type "Round" in there...
>
> Makes me think I need to create my own Type or something.. is that
possible,
> how?
>
> Thanx
> /Lars
>
>



Nov 21 '05 #5
I just tried this, I think this is what you want. If you create a standard
button on a form and then find the instantiation for it and do a Button1 =
new MyButton, create the following class and then click on the button and
you will see the property for it in teh designer properties window.

Imports System.ComponentModel

Public Class MyButton
Inherits Windows.Forms.Button

Public Enum ButtonTypes
Round
Square
Oval
End Enum

Private m_buttonType As ButtonTypes

<Browsable(True)> _
Public Property ButtonType() As ButtonTypes
Get
Return m_buttonType
End Get
Set(ByVal Value As ButtonTypes)
m_buttonType = Value
End Set
End Property

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Oy*************@TK2MSFTNGP11.phx.gbl...
No, not that...

I want the user in the designerview be able to set the ButtonShape property (of my control) that is showing in the property window... and in that
property only have MY values to choose from as a dropdown list.

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:Oe******************@TK2MSFTNGP10.phx.gbl...
That takes a bit more work, Im not sure how to do this, I think your talking
about the Collection type property you see on list boxes etc

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...

...and I can fill the actuall list of items that the property can be set
to
with my own values?

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:%2***************@tk2msftngp13.phx.gbl...
> Add the browseable attribute
>
>
> <Browsable(True)> _
> Public Property MyProperty() As . . .
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
> If U Need My Email ,Ask Me
>
> Time flies when you don't know what you're doing
>
> "Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
> news:Od**************@TK2MSFTNGP09.phx.gbl...
> > Hi!
> > I have a property of a Control (a button I'm making) that makes
it > possible
> > for the user to choose what shape a button should have... Round,

Square,
> > Triangle...
> >
> > How do I in the designer view (in the properties window) make the

user > have
> > a list of the shapes I intend to add to this control, to choose from? > >
> > If you create a Boolean property the list in designerview will
> automatically
> > show "True, False" but how do I add my own "Values" to that
list... ? > >
> > The property is a string right now.. but the user has no idea that he has
> to
> > type "Round" in there...
> >
> > Makes me think I need to create my own Type or something.. is that
> possible,
> > how?
> >
> > Thanx
> > /Lars
> >
> >
>
>



Nov 21 '05 #6
Yes, that was perfect, exactly what I wanted thanx.. I would never have
figured that one out myself´but I understand now..

/Lars

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:u7**************@TK2MSFTNGP15.phx.gbl...
I just tried this, I think this is what you want. If you create a standard
button on a form and then find the instantiation for it and do a Button1 =
new MyButton, create the following class and then click on the button and
you will see the property for it in teh designer properties window.

Imports System.ComponentModel

Public Class MyButton
Inherits Windows.Forms.Button

Public Enum ButtonTypes
Round
Square
Oval
End Enum

Private m_buttonType As ButtonTypes

<Browsable(True)> _
Public Property ButtonType() As ButtonTypes
Get
Return m_buttonType
End Get
Set(ByVal Value As ButtonTypes)
m_buttonType = Value
End Set
End Property

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Oy*************@TK2MSFTNGP11.phx.gbl...
No, not that...

I want the user in the designerview be able to set the ButtonShape

property
(of my control) that is showing in the property window... and in that
property only have MY values to choose from as a dropdown list.

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:Oe******************@TK2MSFTNGP10.phx.gbl...
That takes a bit more work, Im not sure how to do this, I think your

talking
about the Collection type property you see on list boxes etc

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:uy**************@TK2MSFTNGP11.phx.gbl...
>
> ...and I can fill the actuall list of items that the property can be set to
> with my own values?
>
> /Lars
>
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
> meddelandet news:%2***************@tk2msftngp13.phx.gbl...
> > Add the browseable attribute
> >
> >
> > <Browsable(True)> _
> > Public Property MyProperty() As . . .
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> > If U Need My Email ,Ask Me
> >
> > Time flies when you don't know what you're doing
> >
> > "Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
> > news:Od**************@TK2MSFTNGP09.phx.gbl...
> > > Hi!
> > > I have a property of a Control (a button I'm making) that makes it > > possible
> > > for the user to choose what shape a button should have... Round,
Square,
> > > Triangle...
> > >
> > > How do I in the designer view (in the properties window) make the
user
> > have
> > > a list of the shapes I intend to add to this control, to choose

from?
> > >
> > > If you create a Boolean property the list in designerview will
> > automatically
> > > show "True, False" but how do I add my own "Values" to that list...
?
> > >
> > > The property is a string right now.. but the user has no idea

that he
> has
> > to
> > > type "Round" in there...
> > >
> > > Makes me think I need to create my own Type or something.. is

that > > possible,
> > > how?
> > >
> > > Thanx
> > > /Lars
> > >
> > >
> >
> >
>
>



Nov 21 '05 #7
Glad to be of help, good luck with the rest of your project.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Of**************@tk2msftngp13.phx.gbl...
Yes, that was perfect, exactly what I wanted thanx.. I would never have
figured that one out myself´but I understand now..

/Lars

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:u7**************@TK2MSFTNGP15.phx.gbl...
I just tried this, I think this is what you want. If you create a standard
button on a form and then find the instantiation for it and do a Button1 = new MyButton, create the following class and then click on the button and you will see the property for it in teh designer properties window.

Imports System.ComponentModel

Public Class MyButton
Inherits Windows.Forms.Button

Public Enum ButtonTypes
Round
Square
Oval
End Enum

Private m_buttonType As ButtonTypes

<Browsable(True)> _
Public Property ButtonType() As ButtonTypes
Get
Return m_buttonType
End Get
Set(ByVal Value As ButtonTypes)
m_buttonType = Value
End Set
End Property

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
news:Oy*************@TK2MSFTNGP11.phx.gbl...
No, not that...

I want the user in the designerview be able to set the ButtonShape

property
(of my control) that is showing in the property window... and in that
property only have MY values to choose from as a dropdown list.

/Lars
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev i
meddelandet news:Oe******************@TK2MSFTNGP10.phx.gbl...
> That takes a bit more work, Im not sure how to do this, I think your
talking
> about the Collection type property you see on list boxes etc
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
> If U Need My Email ,Ask Me
>
> Time flies when you don't know what you're doing
>
> "Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
> news:uy**************@TK2MSFTNGP11.phx.gbl...
> >
> > ...and I can fill the actuall list of items that the property can be
set
> to
> > with my own values?
> >
> > /Lars
> >
> >
> > "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> skrev
i > > meddelandet news:%2***************@tk2msftngp13.phx.gbl...
> > > Add the browseable attribute
> > >
> > >
> > > <Browsable(True)> _
> > > Public Property MyProperty() As . . .
> > >
> > > --
> > >
> > > OHM ( Terry Burns )
> > > . . . One-Handed-Man . . .
> > > If U Need My Email ,Ask Me
> > >
> > > Time flies when you don't know what you're doing
> > >
> > > "Lars Netzel" <[stop_spam]@host.topdomain> wrote in message
> > > news:Od**************@TK2MSFTNGP09.phx.gbl...
> > > > Hi!
> > > > I have a property of a Control (a button I'm making) that makes it
> > > possible
> > > > for the user to choose what shape a button should have...

Round, > Square,
> > > > Triangle...
> > > >
> > > > How do I in the designer view (in the properties window) make

the user
> > > have
> > > > a list of the shapes I intend to add to this control, to choose from?
> > > >
> > > > If you create a Boolean property the list in designerview will
> > > automatically
> > > > show "True, False" but how do I add my own "Values" to that

list...
?
> > > >
> > > > The property is a string right now.. but the user has no idea that he
> > has
> > > to
> > > > type "Round" in there...
> > > >
> > > > Makes me think I need to create my own Type or something.. is that > > > possible,
> > > > how?
> > > >
> > > > Thanx
> > > > /Lars
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 21 '05 #8
Hi you could do it like this, declare an enum where a number
represents the shape, in my
example round returns the integer 1, square 2, triangle 3 and so on

You also have to declare a property as the shapes enum and in the
constructor of your control set the propertys default value

If you then build your code and drag the control to a form you can
select round or square or triangle with the shape property

HTH
Peter
<Code>

Public Enum shapes As Integer
round = 1 : square = 2 : triangle = 3
End Enum

================================================== =
||#Region " Windows Form Designer generated code "#||
================================================== =
'constructor inside the region "windows form designer generated code":
Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call
Me.Shape = shapes.round
End Sub

Private intShape As Integer
Public Property Shape() As shapes
Get
Return intShape
End Get
Set(ByVal Value As shapes)
intShape = Value
End Set
End Property
<code>


"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message news:<Od**************@TK2MSFTNGP09.phx.gbl>...
Hi!
I have a property of a Control (a button I'm making) that makes it possible
for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user have
a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will automatically
show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he has to
type "Round" in there...

Makes me think I need to create my own Type or something.. is that possible,
how?

Thanx
/Lars

Nov 21 '05 #9
Your an hour late

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Piedro" <pp*****@hotmail.com> wrote in message
news:b7**************************@posting.google.c om...
Hi you could do it like this, declare an enum where a number
represents the shape, in my
example round returns the integer 1, square 2, triangle 3 and so on

You also have to declare a property as the shapes enum and in the
constructor of your control set the propertys default value

If you then build your code and drag the control to a form you can
select round or square or triangle with the shape property

HTH
Peter
<Code>

Public Enum shapes As Integer
round = 1 : square = 2 : triangle = 3
End Enum

================================================== =
||#Region " Windows Form Designer generated code "#||
================================================== =
'constructor inside the region "windows form designer generated code":
Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call
Me.Shape = shapes.round
End Sub

Private intShape As Integer
Public Property Shape() As shapes
Get
Return intShape
End Get
Set(ByVal Value As shapes)
intShape = Value
End Set
End Property
<code>


"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message

news:<Od**************@TK2MSFTNGP09.phx.gbl>...
Hi!
I have a property of a Control (a button I'm making) that makes it possible for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user have a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will automatically show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he has to type "Round" in there...

Makes me think I need to create my own Type or something.. is that possible, how?

Thanx
/Lars

Nov 21 '05 #10
Indeed, that's the problem when you have to post through google,
because here at work I can't access the news groups via outlook or
something like that, big bummer :-)

Grtz Peter


"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in message news:<#a**************@TK2MSFTNGP10.phx.gbl>...
Your an hour late

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing

"Piedro" <pp*****@hotmail.com> wrote in message
news:b7**************************@posting.google.c om...
Hi you could do it like this, declare an enum where a number
represents the shape, in my
example round returns the integer 1, square 2, triangle 3 and so on

You also have to declare a property as the shapes enum and in the
constructor of your control set the propertys default value

If you then build your code and drag the control to a form you can
select round or square or triangle with the shape property

HTH
Peter
<Code>

Public Enum shapes As Integer
round = 1 : square = 2 : triangle = 3
End Enum

================================================== =
||#Region " Windows Form Designer generated code "#||
================================================== =
'constructor inside the region "windows form designer generated code":
Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call
Me.Shape = shapes.round
End Sub

Private intShape As Integer
Public Property Shape() As shapes
Get
Return intShape
End Get
Set(ByVal Value As shapes)
intShape = Value
End Set
End Property
<code>


"Lars Netzel" <[stop_spam]@host.topdomain> wrote in message

news:<Od**************@TK2MSFTNGP09.phx.gbl>...
Hi!
I have a property of a Control (a button I'm making) that makes it possible for the user to choose what shape a button should have... Round, Square,
Triangle...

How do I in the designer view (in the properties window) make the user have a list of the shapes I intend to add to this control, to choose from?

If you create a Boolean property the list in designerview will automatically show "True, False" but how do I add my own "Values" to that list... ?

The property is a string right now.. but the user has no idea that he has to type "Round" in there...

Makes me think I need to create my own Type or something.. is that possible, how?

Thanx
/Lars

Nov 21 '05 #11

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

Similar topics

7
by: moondaddy | last post by:
I have a user control being used instead of a frame page. when the user clicks on a menu item I need to send the ID (integer value) of that menu as a parameter in the postback of the user control...
1
by: Kris van der Mast | last post by:
Hi, been a while since I posted a question myself instead of trying to help others out. I'm refactoring an existing web app that uses dynamic loading of user controls and a lot of...
2
by: George Durzi | last post by:
I'd like to get some real world feedback from developers out there who have to work with the "design" folks to integrate look and feel stuff into a vs.net web project. A lot of designers use web...
1
by: Reza Nabi | last post by:
Bakground: I have a webform (LoadCtl.aspx) which loads the user control to a placeholder dynamically based on the ctlName querystring passed in the URL. Webform (LoadCtl.aspx) also passes a...
5
by: Charles Law | last post by:
Sorry for reposting this question, but I did not get a single answer last time, and I'm sure you guys must have some thoughts on the matter. I have a user control which can be dragged and dropped...
5
by: Paul Bromley | last post by:
Can someone give me a very simple example on how to do this? As an example I have a commaned button in a user control. Once this user control is placed on a form I want to be able to respond in the...
0
by: fds | last post by:
Hello! I have a very specific question and that is about how to inherit a control for example the control System.Windows.Forms.TextBox without causing the environment to delete the control when...
0
by: Tony Johansson | last post by:
Hello! I have a very specific question and that is about how to inherit a visual control for example the control System.Windows.Forms.TextBox without causing the environment to delete the...
15
by: rizwanahmed24 | last post by:
Hello i have made a custom control. i have placed a panel on it. I want this panel to behave just like the normal panel. The problem i was having is that the panel on my custom control doesnt...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.