473,406 Members | 2,894 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,406 software developers and data experts.

Access Drawing Rectangles in Excel

I have a need to add a visual representation to some data in Access.
I need to draw a matix of squares inside another square. I have all
the data that I need in a record in Access. The data changes
according to what the user inputs. I know that Access does not allow
you to draw on forms so I decided to put the output in an Excel file
for the user but I am having trouble drawing the rectange from
Access. Here is my simple code so far:

Private Sub View_Record_Click()
Dim objXL As Object
Dim newbook As Excel.Workbook
Dim newsht1 As Excel.Worksheet

Set objXL = CreateObject(Class:="Excel.Application")

Set newbook = objXL.Workbooks.Add

Set newsht1 = newbook.Sheets("Sheet1")
newsht1.Shapes.AddShape(msoShapeRectangle, 89.25, 72.75, 113.25,
92.25).Select
objXL.Visible = True

End Sub

In my routine the position, size and number of Rectangles will be
controlled by variables. It could be 4 boxes in a 2x2 or 18 boxes in
a 3 x 6, but I have all that data.

It is giving me a run time error 1004, The specified value is out of
range. And this is on the AddShape line. Anybody have any experice
in using Access to control Excel Adding Shapes.

Thank you for the help.

Darren

Feb 20 '07 #1
7 7029
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.

The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Feb 20 '07 #2
On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.

The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.

Rich

*** Sent via Developersdexhttp://www.developersdex.com***
Rich,

Thanks for the reply,

The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.

The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.

Thank you for your help,

Darren
Feb 21 '07 #3
On Feb 21, 9:06 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.
The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.
Rich
*** Sent via Developersdexhttp://www.developersdex.com***

Rich,

Thanks for the reply,

The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.

The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.

Thank you for your help,

Darren
I think what Rich was hinting at is that you can manipulate
the .Top, .Left, .Width and .Height properties of objects on forms and
reports at runtime. For example, I created a report for survey results
that included the following for each question

Score
Average_Score
Confidence_Interval_Lower_Bound
Confidence_Interval_Upper_Bound

In the detail section of the report I included a fixed white rectangle
to represent the total range of scores, a grey rectangle to represent
the confidence interval for the mean (within the total range), and an
"X" to represent the actual score. I put code in the OnFormat event of
the detail band to adjust the position and width of the grey rectangle
based on the values of [Confidence_Interval_Lower_Bound] and
[Confidence_Interval_Upper_Bound], and to change the .Left property of
the label containing the "X" based on the value of [Score]. The result
was something like this:

+-------------------+------------+--------------------+
| | | X | Question 1
+-------------------+------------+--------------------+

+---------------+--------------------+----------------+
| | X | | Question 2
+---------------+--------------------+----------------+
Feb 21 '07 #4
On Feb 21, 8:37 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 9:06 am, "ddecoste" <ddeco...@yahoo.comwrote:


On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.
The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.
Rich
*** Sent via Developersdexhttp://www.developersdex.com***
Rich,
Thanks for the reply,
The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.
The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.
Thank you for your help,
Darren

I think what Rich was hinting at is that you can manipulate
the .Top, .Left, .Width and .Height properties of objects on forms and
reports at runtime. For example, I created a report for survey results
that included the following for each question

Score
Average_Score
Confidence_Interval_Lower_Bound
Confidence_Interval_Upper_Bound

In the detail section of the report I included a fixed white rectangle
to represent the total range of scores, a grey rectangle to represent
the confidence interval for the mean (within the total range), and an
"X" to represent the actual score. I put code in the OnFormat event of
the detail band to adjust the position and width of the grey rectangle
based on the values of [Confidence_Interval_Lower_Bound] and
[Confidence_Interval_Upper_Bound], and to change the .Left property of
the label containing the "X" based on the value of [Score]. The result
was something like this:

+-------------------+------------+--------------------+
| | | X | Question 1
+-------------------+------------+--------------------+

+---------------+--------------------+----------------+
| | X | | Question 2
+---------------+--------------------+----------------+- Hide quoted text -

- Show quoted text -
Ok, I did read that I can manipulate rectangles that are on the form
or report during runtime. I think maybe the problem is not
understood. This is good but I would have to make sure that all the
rectangles are present before hand. That would require controlling
400+ rectangles at the current set point in the software. Based on a
current max of 20 x 20 matrix. Most of the time I will be using under
40 but in some cases this number will be higher. I was hoping to be
able to make each as needed on the fly. To me it is easier to Code a
few lines in a nested loop than manually have to make up all rectanges
then manipulate.

I can definately add these to form and control them but it seems like
overkill.

I was hoping that somebody has used the Excel
AddShape(msoShapeRectangle) from Access. If this can be made to work
with one rectangle being created in an Excel file then the battle is
won.

Anybody have any other thoughts.

Thank you for your help.

Feb 21 '07 #5
On Feb 21, 11:01 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 21, 8:37 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 9:06 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.
The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.
Rich
*** Sent via Developersdexhttp://www.developersdex.com***
Rich,
Thanks for the reply,
The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.
The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.
Thank you for your help,
Darren
I think what Rich was hinting at is that you can manipulate
the .Top, .Left, .Width and .Height properties of objects on forms and
reports at runtime. For example, I created a report for survey results
that included the following for each question
Score
Average_Score
Confidence_Interval_Lower_Bound
Confidence_Interval_Upper_Bound
In the detail section of the report I included a fixed white rectangle
to represent the total range of scores, a grey rectangle to represent
the confidence interval for the mean (within the total range), and an
"X" to represent the actual score. I put code in the OnFormat event of
the detail band to adjust the position and width of the grey rectangle
based on the values of [Confidence_Interval_Lower_Bound] and
[Confidence_Interval_Upper_Bound], and to change the .Left property of
the label containing the "X" based on the value of [Score]. The result
was something like this:
+-------------------+------------+--------------------+
| | | X | Question 1
+-------------------+------------+--------------------+
+---------------+--------------------+----------------+
| | X | | Question 2
+---------------+--------------------+----------------+- Hide quoted text -
- Show quoted text -

Ok, I did read that I can manipulate rectangles that are on the form
or report during runtime. I think maybe the problem is not
understood. This is good but I would have to make sure that all the
rectangles are present before hand. That would require controlling
400+ rectangles at the current set point in the software. Based on a
current max of 20 x 20 matrix. Most of the time I will be using under
40 but in some cases this number will be higher. I was hoping to be
able to make each as needed on the fly. To me it is easier to Code a
few lines in a nested loop than manually have to make up all rectanges
then manipulate.

I can definately add these to form and control them but it seems like
overkill.

I was hoping that somebody has used the Excel
AddShape(msoShapeRectangle) from Access. If this can be made to work
with one rectangle being created in an Excel file then the battle is
won.

Anybody have any other thoughts.

Thank you for your help.
FWIW, I took the sample code from your original post and pasted it
into an Access module. Once I added references to the Excel and Office
object libraries it compiled and ran without errors (and placed a
rectangle on the Excel worksheet).

Feb 21 '07 #6
On Feb 21, 10:41 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 11:01 am, "ddecoste" <ddeco...@yahoo.comwrote:


On Feb 21, 8:37 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 9:06 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.
The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.
Rich
*** Sent via Developersdexhttp://www.developersdex.com***
Rich,
Thanks for the reply,
The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.
The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.
Thank you for your help,
Darren
I think what Rich was hinting at is that you can manipulate
the .Top, .Left, .Width and .Height properties of objects on forms and
reports at runtime. For example, I created a report for survey results
that included the following for each question
Score
Average_Score
Confidence_Interval_Lower_Bound
Confidence_Interval_Upper_Bound
In the detail section of the report I included a fixed white rectangle
to represent the total range of scores, a grey rectangle to represent
the confidence interval for the mean (within the total range), and an
"X" to represent the actual score. I put code in the OnFormat event of
the detail band to adjust the position and width of the grey rectangle
based on the values of [Confidence_Interval_Lower_Bound] and
[Confidence_Interval_Upper_Bound], and to change the .Left property of
the label containing the "X" based on the value of [Score]. The result
was something like this:
+-------------------+------------+--------------------+
| | | X | Question 1
+-------------------+------------+--------------------+
+---------------+--------------------+----------------+
| | X | | Question 2
+---------------+--------------------+----------------+- Hide quoted text -
- Show quoted text -
Ok, I did read that I can manipulate rectangles that are on the form
or report during runtime. I think maybe the problem is not
understood. This is good but I would have to make sure that all the
rectangles are present before hand. That would require controlling
400+ rectangles at the current set point in the software. Based on a
current max of 20 x 20 matrix. Most of the time I will be using under
40 but in some cases this number will be higher. I was hoping to be
able to make each as needed on the fly. To me it is easier to Code a
few lines in a nested loop than manually have to make up all rectanges
then manipulate.
I can definately add these to form and control them but it seems like
overkill.
I was hoping that somebody has used the Excel
AddShape(msoShapeRectangle) from Access. If this can be made to work
with one rectangle being created in an Excel file then the battle is
won.
Anybody have any other thoughts.
Thank you for your help.

FWIW, I took the sample code from your original post and pasted it
into an Access module. Once I added references to the Excel and Office
object libraries it compiled and ran without errors (and placed a
rectangle on the Excel worksheet).- Hide quoted text -

- Show quoted text -
Looks good, I had the Excel reference but I had not checked the
reference for Microsoft Office Library. Once I did that, it did
work great. Just for information how did you know to use that
reference, I would have thought it would have been contained the Excel
reference.

Another option that I am thinking of using would be writing directly
to an HTML file then just have IE open the document.

Once again Thank you for your help.

Feb 21 '07 #7
>I had the Excel reference but I had not checked the reference for
>Microsoft Office Library. Once I did that, it did work great. Just
for information how did you know to use that reference, I would have
thought it would have been contained the Excel reference.
I started out with just the Excel reference too, but when I compiled
the code Access complained that it didn't know what

msoShapeRectangle

was. I figured that 'mso' was Microsoft Office, so I added that
reference as well.

On Feb 21, 1:45 pm, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 21, 10:41 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 11:01 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 21, 8:37 am, "Gord" <g...@kingston.netwrote:
On Feb 21, 9:06 am, "ddecoste" <ddeco...@yahoo.comwrote:
On Feb 20, 5:37 pm, Rich P <rpng...@aol.comwrote:
If you need to draw rectangles in access you can use a rectangle tool
from the form designer toolbox. And as long as you plan to add a shape
to an Excel sheet, how about adding a shape like a textbox to an Access
form - you can place the textbox inside the rectangle. Just some ideas.
The key to robust professional programming is to keep it simple, that is
- the least amount of code. Less code = less bugs.
Rich
*** Sent via Developersdexhttp://www.developersdex.com***
Rich,
Thanks for the reply,
The only problem with that is that the drawing or illustration will be
different every time the user uses it. So the rectangles will have to
be dynamic. thus being added programatically. The user inputs a size
X and Y. The Access program then runs through all the calculations
and returns a list of the best possible sizes and % utilitzation.
What I would like is for the user to do is select any one from the
list then a graphic representation would appear showing the layout. We
have UserX and Y Size . This then has to fit in ManufacturingSize X
and Y then that has to fit in a StockSize Xand Y. Each size can be
rotated for better fit. What the program is doing is finding the
Optimum size for each step based on 1 to 6 Standard Stock sizes that
can used. I actually wish to put 2 illustrations up one the
ManufacturingSize inside the Stock Size. Lets say 4 rectangles inside
1 rectangle but it could 2 X 3 or any number of rectangles inside
one. Then another would be the User Xand Y inside the Manufacturing
and this could 2x2, 2x3, 3x3.... etc.
The only reason I choose Excel was that I found some code to add
rectangles. If I could do this in the Access runtime it would be
great and I would not need Excel.
Thank you for your help,
Darren
I think what Rich was hinting at is that you can manipulate
the .Top, .Left, .Width and .Height properties of objects on forms and
reports at runtime. For example, I created a report for survey results
that included the following for each question
Score
Average_Score
Confidence_Interval_Lower_Bound
Confidence_Interval_Upper_Bound
In the detail section of the report I included a fixed white rectangle
to represent the total range of scores, a grey rectangle to represent
the confidence interval for the mean (within the total range), and an
"X" to represent the actual score. I put code in the OnFormat event of
the detail band to adjust the position and width of the grey rectangle
based on the values of [Confidence_Interval_Lower_Bound] and
[Confidence_Interval_Upper_Bound], and to change the .Left property of
the label containing the "X" based on the value of [Score]. The result
was something like this:
+-------------------+------------+--------------------+
| | | X | Question 1
+-------------------+------------+--------------------+
+---------------+--------------------+----------------+
| | X | | Question 2
+---------------+--------------------+----------------+- Hide quoted text -
- Show quoted text -
Ok, I did read that I can manipulate rectangles that are on the form
or report during runtime. I think maybe the problem is not
understood. This is good but I would have to make sure that all the
rectangles are present before hand. That would require controlling
400+ rectangles at the current set point in the software. Based on a
current max of 20 x 20 matrix. Most of the time I will be using under
40 but in some cases this number will be higher. I was hoping to be
able to make each as needed on the fly. To me it is easier to Code a
few lines in a nested loop than manually have to make up all rectanges
then manipulate.
I can definately add these to form and control them but it seems like
overkill.
I was hoping that somebody has used the Excel
AddShape(msoShapeRectangle) from Access. If this can be made to work
with one rectangle being created in an Excel file then the battle is
won.
Anybody have any other thoughts.
Thank you for your help.
FWIW, I took the sample code from your original post and pasted it
into an Access module. Once I added references to the Excel and Office
object libraries it compiled and ran without errors (and placed a
rectangle on the Excel worksheet).- Hide quoted text -
- Show quoted text -

Looks good, I had the Excel reference but I had not checked the
reference for Microsoft Office Library. Once I did that, it did
work great. Just for information how did you know to use that
reference, I would have thought it would have been contained the Excel
reference.

Another option that I am thinking of using would be writing directly
to an HTML file then just have IE open the document.

Once again Thank you for your help.

Feb 21 '07 #8

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

Similar topics

2
by: None | last post by:
Hi, I have an excel spreadsheet which is a list of my drawing numbers. I have seperate tabs for stuff like mechanical drawings, circuits, and PCB's and such like. If my last drawing number was...
2
by: johnb41 | last post by:
My app has an image (black/white tiff) displayed in a picturebox (scanned text document). I need the user to be able to draw either white or black rectangles on it. (to hide/cover up sensitive...
1
by: YYZ | last post by:
Sorry for the multipost, but no one was responding in the other thread. If any solution is forthcoming, I will return to the original thread and post it there as well. I've created a usercontrol...
3
by: brianbasquille | last post by:
Hello all, Haven't been here in a while but undertaking a project where i'm branching out the (presumingly abandoned) open-source OpenHTPC (www.openhtpc.org) with additional Personal Video...
0
by: bienvankhat | last post by:
Hi, i want to simulate a led matrix panel. I create a 8x8 dot led matrix by drawing 64 rectangles in a small area. The panel is made up by 100 matrices. But the drawing process is very slow, it take...
5
by: lgeastwood | last post by:
I have tweaked the PictureBox97.mdb (Stephen Lebans <www.lebans.com>) code to nicely draw lines, rectangles and circles to the specs that I input. I'm at a loss though with trying to setup an...
11
by: cty0000 | last post by:
I have some quiestion... I want to draw line,point,rectangles and etc... on the from So I code like this.. public update() { g = this.CreateGraphics(); g.FillRectangle(Brushes.White, x1,...
4
by: RobinS | last post by:
I am drawing a rectangle on a picture that has already been drawn on the graphics area (a user control). It works something like this: //in the MouseDown event m_isDragging = true; m_oldX =...
1
by: cobblerman | last post by:
I'm developing a content management application using PHP/MySQL that uses images. I need the end user to be able to draw text boxes, rectangles, and arrows on the image within the browser. It needs...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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
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...
0
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.