473,327 Members | 1,979 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,327 software developers and data experts.

Combo Box Problem/Question #2

I have a production table and its accompanying form. There can be up to ten
ingredients in what is produced.

The ingredients are obtained from the incoming goods table which supplies
the two parameters that I use, "Name" and "CatlogNo".

This production table needs to contain each ingredient by name and catalogue
number. With help from this list I was able to set up a combo box that
allowed me to select a particular ingredient, and when I did, the catalog
number was automatically filled in. Worked fine!

Then I went down to the second ingredient and there I ran in to trouble. As
the field "CatlogNo" was being used in the previous combo box on Ingredient
number one, I could not use it again. Now I'm stuck. Is there a workaround
for this sort of thing?

Any help would be appreciated and please realize I am an absolute newbie
with Access.

Thank you,

Bill.
--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #1
8 1966
Sounds like a progrem I wrote for recipies.

You need a Production table TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few ingredients
as you like JnProductionlIngredient (ProductID, Ingredient ID and maybe a
quantity) Make the ProductID, Ingredient ID koint primary keys, link the
three tabled and make the Indredients a continuous subform of the Product
form. The Ingredients can be selected from the combo box on the subform

HTH

Phil

"William Bradley" <br******@magma.ca> wrote in message
news:WZ********************@magma.ca...
I have a production table and its accompanying form. There can be up to ten ingredients in what is produced.

The ingredients are obtained from the incoming goods table which supplies
the two parameters that I use, "Name" and "CatlogNo".

This production table needs to contain each ingredient by name and catalogue number. With help from this list I was able to set up a combo box that
allowed me to select a particular ingredient, and when I did, the catalog
number was automatically filled in. Worked fine!

Then I went down to the second ingredient and there I ran in to trouble. As the field "CatlogNo" was being used in the previous combo box on Ingredient number one, I could not use it again. Now I'm stuck. Is there a workaround
for this sort of thing?

Any help would be appreciated and please realize I am an absolute newbie
with Access.

Thank you,

Bill.
--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.

Nov 12 '05 #2
Bill,

It sounds like you are using a continuous form with a field named CatalogNo that
is not bound to any field in the record source of the form. When you look at the
form in design view, does it sau 'Unbound' inside the field? If this is the
case, you need to make CatlogNo bound.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com
"William Bradley" <br******@magma.ca> wrote in message
news:WZ********************@magma.ca...
I have a production table and its accompanying form. There can be up to ten
ingredients in what is produced.

The ingredients are obtained from the incoming goods table which supplies
the two parameters that I use, "Name" and "CatlogNo".

This production table needs to contain each ingredient by name and catalogue
number. With help from this list I was able to set up a combo box that
allowed me to select a particular ingredient, and when I did, the catalog
number was automatically filled in. Worked fine!

Then I went down to the second ingredient and there I ran in to trouble. As
the field "CatlogNo" was being used in the previous combo box on Ingredient
number one, I could not use it again. Now I'm stuck. Is there a workaround
for this sort of thing?

Any help would be appreciated and please realize I am an absolute newbie
with Access.

Thank you,

Bill.
--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.

Nov 12 '05 #3
PC Datasheet wrote:

Hi,

Following are the instructions you sent to me, and they work just fine.
Basically what I want to is repeat it, using "Ingredent Name" and
"Ingredient Catalog Number". This will then be repeated ten times on a
single form.

When I tried binding the unbound box (IndexNo) in the lower example (which
was unbound by the way), I bound myself into a mess. :-( The "Help"menu
says to bind the Record Source from on of the tables or queries listed and
I must have chosen the wrong one.

So my question is to what do I bind the "Index No" box to?

Thank you,

Bill.

================================================== ==============
First, The order of the fields in the query is very important so be sure you
have that. Product is in the first field and IndexNo is in the second field.

Open your form in design view and select the textbox. Click on the
properties icon at the top of the screen to open properties. Click on the
'Other' tab. The name property is at the top of the list. Type in IndexNo
for the name of the textbox.

Next select the combobox. Be sure you are still on the Other tab. The name
property is at the top of the list. Does it say, 'Combo131'? If not type
that in.

Go to the Data tab. Down a couple of lines is the Bound Column property.
Does it say 2? If not type in a 2.

Go to the Format tab. At the top of the list is the Column Count property.
Does it say 2? If not enter a 2. Two lines down from there is the Column
Width property. Does it say 1.5;0? If not type that in.

Go to the Events tab and click on the AfterUpdate event. At the right of the
white box are three dots, click on them. In the dialog that appears, select
Code Builder then click OK. You are now at the code module behind the form.
You should see the following at the cursor: Private Sub
Combo131_AfterUpdate()

End Sub
Put the following code between these two lines:
Me!IndexNo = Me!Combo131.Column(1)

It sounds like you are using a continuous form with a field named
CatalogNo that is not bound to any field in the record source of the form.
When you look at the form in design view, does it sau 'Unbound' inside the
field? If this is the case, you need to make CatlogNo bound.


William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #4
Bill,

I'm going to borrow from Phil a little. You need the following tables:

TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few ingredients
as you like JnProductionlIngredient (ProductID, Ingredient ID and maybe a
quantity) Make the ProductID, Ingredient ID koint primary keys, link the
three tabled and make the Indredients a continuous subform of the Product
form. The Ingredients can be selected from the combo box on the subform
TblProduct
ProductId
ProductName
etc

TblInGredient
InGredientID
InGredientName
InGredientCatlogNo

TblProductionProduct
ProductionProductID
ProductID
ProductDate
etc

TblProductionProductInGredients
ProductionProductInGredientsID
ProductionProductID
InGredientID
QuantityOfInGredient ???

Create a relationship between ProductId In TblProduct and ProductID In
TblProductionProduct. Create a relationship between InGredientID In
TblInGredient and InGredientID In TblProductionProductInGredients. Create a
relationship between ProductionProductID In TblProductionProduct and
ProductionProductID In TblProductionProductInGredients.

You then need to build a form/subform system.

The main form will be based on TblProductionProduct and will be a single form.
You can use a combobox to select the productID. Base the combobox on TblProduct.
Set the bound column to 1, column count to 2 and column width to 0;2.

The subform will be based on TblProductionProductInGredients and will be a
continuous form. You can use a combobox to select the IngredientID. Base the
combobox on a query based on TblIngredient.
The query will have the fields:
InGredientID
InGredient:[InGredientCatlogNo] & " " & [InGredientName]

Set the bound column to 1, column count to 2 and column width to 0;2.5.

After you install the subform on the main form, open the main form in design
view, select the subform control, open properties, go to the Data tab and check
the LinkMaster and LinkChild fields. They both should be ProductionProductID. If
they are blank, click on the three dots at the right.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"William Bradley" <br******@magma.ca> wrote in message
news:eO********************@magma.ca...
PC Datasheet wrote:

Hi,

Following are the instructions you sent to me, and they work just fine.
Basically what I want to is repeat it, using "Ingredent Name" and
"Ingredient Catalog Number". This will then be repeated ten times on a
single form.

When I tried binding the unbound box (IndexNo) in the lower example (which
was unbound by the way), I bound myself into a mess. :-( The "Help"menu
says to bind the Record Source from on of the tables or queries listed and
I must have chosen the wrong one.

So my question is to what do I bind the "Index No" box to?

Thank you,

Bill.

================================================== ==============
First, The order of the fields in the query is very important so be sure you
have that. Product is in the first field and IndexNo is in the second field.

Open your form in design view and select the textbox. Click on the
properties icon at the top of the screen to open properties. Click on the
'Other' tab. The name property is at the top of the list. Type in IndexNo
for the name of the textbox.

Next select the combobox. Be sure you are still on the Other tab. The name
property is at the top of the list. Does it say, 'Combo131'? If not type
that in.

Go to the Data tab. Down a couple of lines is the Bound Column property.
Does it say 2? If not type in a 2.

Go to the Format tab. At the top of the list is the Column Count property.
Does it say 2? If not enter a 2. Two lines down from there is the Column
Width property. Does it say 1.5;0? If not type that in.

Go to the Events tab and click on the AfterUpdate event. At the right of the
white box are three dots, click on them. In the dialog that appears, select
Code Builder then click OK. You are now at the code module behind the form.
You should see the following at the cursor: Private Sub
Combo131_AfterUpdate()

End Sub
Put the following code between these two lines:
Me!IndexNo = Me!Combo131.Column(1)

It sounds like you are using a continuous form with a field named
CatalogNo that is not bound to any field in the record source of the form.
When you look at the form in design view, does it sau 'Unbound' inside the
field? If this is the case, you need to make CatlogNo bound.


William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.

Nov 12 '05 #5
Phil Stanton wrote:

Thank you for the following Paul. It is a little more complex than I thought
it would be.

Bill.
Sounds like a progrem I wrote for recipies.

You need a Production table TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few
ingredients as you like JnProductionlIngredient (ProductID, Ingredient ID
and maybe a quantity) Make the ProductID, Ingredient ID koint primary
keys, link the three tabled and make the Indredients a continuous subform
of the Product form. The Ingredients can be selected from the combo box on
the subform

HTH

Phil

"William Bradley" <br******@magma.ca> wrote in message
news:WZ********************@magma.ca...
I have a production table and its accompanying form. There can be up to

ten
ingredients in what is produced.

The ingredients are obtained from the incoming goods table which supplies
the two parameters that I use, "Name" and "CatlogNo".

This production table needs to contain each ingredient by name and

catalogue
number. With help from this list I was able to set up a combo box that
allowed me to select a particular ingredient, and when I did, the catalog
number was automatically filled in. Worked fine!

Then I went down to the second ingredient and there I ran in to trouble.

As
the field "CatlogNo" was being used in the previous combo box on

Ingredient
number one, I could not use it again. Now I'm stuck. Is there a
workaround for this sort of thing?

Any help would be appreciated and please realize I am an absolute newbie
with Access.

Thank you,

Bill.
--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.


--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #6
PC Datasheet wrote:

Once again, thank you for your detailed response. I had no idea it would be
this complex. In any event I will work at it and I'm sure it will work out.

Bill.

Bill,

I'm going to borrow from Phil a little. You need the following tables:

TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few
ingredients as you like JnProductionlIngredient (ProductID, Ingredient ID
and maybe a quantity) Make the ProductID, Ingredient ID koint primary
keys, link the three tabled and make the Indredients a continuous subform
of the Product form. The Ingredients can be selected from the combo box on
the subform
TblProduct
ProductId
ProductName
etc

TblInGredient
InGredientID
InGredientName
InGredientCatlogNo

TblProductionProduct
ProductionProductID
ProductID
ProductDate
etc

TblProductionProductInGredients
ProductionProductInGredientsID
ProductionProductID
InGredientID
QuantityOfInGredient ???

Create a relationship between ProductId In TblProduct and ProductID In
TblProductionProduct. Create a relationship between InGredientID In
TblInGredient and InGredientID In TblProductionProductInGredients. Create
a relationship between ProductionProductID In TblProductionProduct and
ProductionProductID In TblProductionProductInGredients.

You then need to build a form/subform system.

The main form will be based on TblProductionProduct and will be a single
form. You can use a combobox to select the productID. Base the combobox on
TblProduct. Set the bound column to 1, column count to 2 and column width
to 0;2.

The subform will be based on TblProductionProductInGredients and will be a
continuous form. You can use a combobox to select the IngredientID. Base
the combobox on a query based on TblIngredient.
The query will have the fields:
InGredientID
InGredient:[InGredientCatlogNo] & " " & [InGredientName]

Set the bound column to 1, column count to 2 and column width to 0;2.5.

After you install the subform on the main form, open the main form in
design view, select the subform control, open properties, go to the Data
tab and check the LinkMaster and LinkChild fields. They both should be
ProductionProductID. If they are blank, click on the three dots at the
right.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"William Bradley" <br******@magma.ca> wrote in message
news:eO********************@magma.ca...
PC Datasheet wrote:

Hi,

Following are the instructions you sent to me, and they work just fine.
Basically what I want to is repeat it, using "Ingredent Name" and
"Ingredient Catalog Number". This will then be repeated ten times on a
single form.

When I tried binding the unbound box (IndexNo) in the lower example
(which was unbound by the way), I bound myself into a mess. :-( The
"Help"menu says to bind the Record Source from on of the tables or
queries listed and I must have chosen the wrong one.

So my question is to what do I bind the "Index No" box to?

Thank you,

Bill.

================================================== ==============
First, The order of the fields in the query is very important so be sure
you have that. Product is in the first field and IndexNo is in the second
field.

Open your form in design view and select the textbox. Click on the
properties icon at the top of the screen to open properties. Click on the
'Other' tab. The name property is at the top of the list. Type in IndexNo
for the name of the textbox.

Next select the combobox. Be sure you are still on the Other tab. The
name property is at the top of the list. Does it say, 'Combo131'? If not
type that in.

Go to the Data tab. Down a couple of lines is the Bound Column property.
Does it say 2? If not type in a 2.

Go to the Format tab. At the top of the list is the Column Count
property. Does it say 2? If not enter a 2. Two lines down from there is
the Column Width property. Does it say 1.5;0? If not type that in.

Go to the Events tab and click on the AfterUpdate event. At the right of
the white box are three dots, click on them. In the dialog that appears,
select Code Builder then click OK. You are now at the code module behind
the form. You should see the following at the cursor: Private Sub
Combo131_AfterUpdate()

End Sub
Put the following code between these two lines:
Me!IndexNo = Me!Combo131.Column(1)

> It sounds like you are using a continuous form with a field named
> CatalogNo that is not bound to any field in the record source of the
> form. When you look at the form in design view, does it sau 'Unbound'
> inside the field? If this is the case, you need to make CatlogNo bound.


William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.


--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #7
Phil Stanton wrote:

Thank you for the following Paul. It is a little more complex than I thought
it would be.

Bill.
Sounds like a progrem I wrote for recipies.

You need a Production table TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few
ingredients as you like JnProductionlIngredient (ProductID, Ingredient ID
and maybe a quantity) Make the ProductID, Ingredient ID koint primary
keys, link the three tabled and make the Indredients a continuous subform
of the Product form. The Ingredients can be selected from the combo box on
the subform

HTH

Phil

"William Bradley" <br******@magma.ca> wrote in message
news:WZ********************@magma.ca...
I have a production table and its accompanying form. There can be up to

ten
ingredients in what is produced.

The ingredients are obtained from the incoming goods table which supplies
the two parameters that I use, "Name" and "CatlogNo".

This production table needs to contain each ingredient by name and

catalogue
number. With help from this list I was able to set up a combo box that
allowed me to select a particular ingredient, and when I did, the catalog
number was automatically filled in. Worked fine!

Then I went down to the second ingredient and there I ran in to trouble.

As
the field "CatlogNo" was being used in the previous combo box on

Ingredient
number one, I could not use it again. Now I'm stuck. Is there a
workaround for this sort of thing?

Any help would be appreciated and please realize I am an absolute newbie
with Access.

Thank you,

Bill.
--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.


--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #8
PC Datasheet wrote:

Once again, thank you for your detailed response. I had no idea it would be
this complex. In any event I will work at it and I'm sure it will work out.

Bill.

Bill,

I'm going to borrow from Phil a little. You need the following tables:

TblProduction (ProductID and ProductName)
You need an Ingregient table TblIngredient (Ingredient ID ,IngredientName,
IngredientCatlogNo)
You need a Join table to joint a product with as many or as few
ingredients as you like JnProductionlIngredient (ProductID, Ingredient ID
and maybe a quantity) Make the ProductID, Ingredient ID koint primary
keys, link the three tabled and make the Indredients a continuous subform
of the Product form. The Ingredients can be selected from the combo box on
the subform
TblProduct
ProductId
ProductName
etc

TblInGredient
InGredientID
InGredientName
InGredientCatlogNo

TblProductionProduct
ProductionProductID
ProductID
ProductDate
etc

TblProductionProductInGredients
ProductionProductInGredientsID
ProductionProductID
InGredientID
QuantityOfInGredient ???

Create a relationship between ProductId In TblProduct and ProductID In
TblProductionProduct. Create a relationship between InGredientID In
TblInGredient and InGredientID In TblProductionProductInGredients. Create
a relationship between ProductionProductID In TblProductionProduct and
ProductionProductID In TblProductionProductInGredients.

You then need to build a form/subform system.

The main form will be based on TblProductionProduct and will be a single
form. You can use a combobox to select the productID. Base the combobox on
TblProduct. Set the bound column to 1, column count to 2 and column width
to 0;2.

The subform will be based on TblProductionProductInGredients and will be a
continuous form. You can use a combobox to select the IngredientID. Base
the combobox on a query based on TblIngredient.
The query will have the fields:
InGredientID
InGredient:[InGredientCatlogNo] & " " & [InGredientName]

Set the bound column to 1, column count to 2 and column width to 0;2.5.

After you install the subform on the main form, open the main form in
design view, select the subform control, open properties, go to the Data
tab and check the LinkMaster and LinkChild fields. They both should be
ProductionProductID. If they are blank, click on the three dots at the
right.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"William Bradley" <br******@magma.ca> wrote in message
news:eO********************@magma.ca...
PC Datasheet wrote:

Hi,

Following are the instructions you sent to me, and they work just fine.
Basically what I want to is repeat it, using "Ingredent Name" and
"Ingredient Catalog Number". This will then be repeated ten times on a
single form.

When I tried binding the unbound box (IndexNo) in the lower example
(which was unbound by the way), I bound myself into a mess. :-( The
"Help"menu says to bind the Record Source from on of the tables or
queries listed and I must have chosen the wrong one.

So my question is to what do I bind the "Index No" box to?

Thank you,

Bill.

================================================== ==============
First, The order of the fields in the query is very important so be sure
you have that. Product is in the first field and IndexNo is in the second
field.

Open your form in design view and select the textbox. Click on the
properties icon at the top of the screen to open properties. Click on the
'Other' tab. The name property is at the top of the list. Type in IndexNo
for the name of the textbox.

Next select the combobox. Be sure you are still on the Other tab. The
name property is at the top of the list. Does it say, 'Combo131'? If not
type that in.

Go to the Data tab. Down a couple of lines is the Bound Column property.
Does it say 2? If not type in a 2.

Go to the Format tab. At the top of the list is the Column Count
property. Does it say 2? If not enter a 2. Two lines down from there is
the Column Width property. Does it say 1.5;0? If not type that in.

Go to the Events tab and click on the AfterUpdate event. At the right of
the white box are three dots, click on them. In the dialog that appears,
select Code Builder then click OK. You are now at the code module behind
the form. You should see the following at the cursor: Private Sub
Combo131_AfterUpdate()

End Sub
Put the following code between these two lines:
Me!IndexNo = Me!Combo131.Column(1)

> It sounds like you are using a continuous form with a field named
> CatalogNo that is not bound to any field in the record source of the
> form. When you look at the form in design view, does it sau 'Unbound'
> inside the field? If this is the case, you need to make CatlogNo bound.


William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.


--
William Bradley
Come visit us at:
http://www.catholicmissionleaflets.org
Free Rosaries available at the above.
Nov 12 '05 #9

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

Similar topics

3
by: B | last post by:
I know there are several ways to speed up combo boxes and form loading. Most of the solutions leave rowsource of the combo box blank and set the rowsource to a saved query or an SQL with a where...
3
by: geribosi | last post by:
I have a question that may have been asked numerous times, however from the previous postings no one seems to have a plausible explanation. This is a performance issue that is very common: I...
14
by: Kevin | last post by:
A couple of easy questions here hopefully. I've been working on two different database projects which make use of multiple forms. 1. Where's the best/recommended placement for command buttons...
5
by: Ant | last post by:
Hi, (Winform VS2003) I have a combo box bound to a typed data set. When the form loads, the combo box is popluated using a method containing the simple code below: ------------------------...
9
by: Edwinah63 | last post by:
Hi everyone, Please let there be someone out there who can help. I have two BOUND combo boxes on a continuous form, the second being dependent on the first. I have no problem getting the...
0
by: Jeremy Wallace | last post by:
Folks, Here's a write-up I did for our developer wiki. I don't know if the whole rest of the world has already figured out how to do this, but I hadn't ever seen it implemented, and had spent a...
8
by: salad | last post by:
I was wondering how you handle active/inactive elements in a combo box. Let's say you have a combo box to select an employee. Joe Blow has been selected for many record however Joe has left the...
1
by: lawton | last post by:
Source: this is an access 2003 question My knowledge level: reading books, internet, and trial & error; no formal training I'm trying to get a running sum of what's filtered in a subform which is...
2
by: biganthony via AccessMonster.com | last post by:
Hi, I decided to install Office 2003 Service Pack 3 on my home computer to test (in full knowledge that there may be some issues with it). After installation, I have noticed that with a small...
3
by: evenlater | last post by:
Using Access 2007, I've found that combo box back colors change to transparent from normal inconsistently for no reason I can discern. Never had that problem in previous versions of Access. I do...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
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...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
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
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
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
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.