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

How to change the active .MDW by code ?

Is it posible to change by code (in a form) the active .mdw by another
one ?

When I open the DB I have the system.mdw active after some procesess I
need to change to another secure.mdw and make active, but I bought
like it to make it by code inside of a form in button command click.
(I do not want to make it thought tools bars menu.)

Can anybody help ?

Regards and thanks in advance
Javier Gomez
Nov 13 '05 #1
13 4907
Could you say a little more about why you want to change mdw files?
It sounds like rather an odd thing to be doing...

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Is it posible to change by code (in a form) the active .mdw by another
one ?

When I open the DB I have the system.mdw active after some procesess I
need to change to another secure.mdw and make active, but I bought
like it to make it by code inside of a form in button command click.
(I do not want to make it thought tools bars menu.)

Can anybody help ?

Regards and thanks in advance
Javier Gomez

Nov 13 '05 #2
MacDermott wrote:
Could you say a little more about why you want to change mdw files?
It sounds like rather an odd thing to be doing...


Why odd? I wouldn't mind being able to do this myself. I have an app
that uses the standard system.mdw, Admin, no pasword, all security
handled by SQL Server. Now and again I have to interface with someone
else's secured mdb file to get data in/out, e.g. another dept has
written their own system for document control and I need a list of docs
to send on an RFQ, commercially I am allowed access to this data,
technically I can't get at it (directly anyway).

--
This sig left intentionally blank
Nov 13 '05 #3
ADO should get you this data -
just include the mdw, login and password in your connection string.

"Trevor Best" <no****@besty.org.uk> wrote in message
news:42**********************@news.zen.co.uk...
MacDermott wrote:
Could you say a little more about why you want to change mdw files?
It sounds like rather an odd thing to be doing...


Why odd? I wouldn't mind being able to do this myself. I have an app
that uses the standard system.mdw, Admin, no pasword, all security
handled by SQL Server. Now and again I have to interface with someone
else's secured mdb file to get data in/out, e.g. another dept has
written their own system for document control and I need a list of docs
to send on an RFQ, commercially I am allowed access to this data,
technically I can't get at it (directly anyway).

--
This sig left intentionally blank

Nov 13 '05 #4
On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
wrote:

Or using DAO, you can use code like this:
Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
dbe.DefaultUser = "SecureUser"
Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")

It's documented here:
http://www.microsoft.com/resources/d...t/jetch02.mspx

-Tom.
ADO should get you this data -
just include the mdw, login and password in your connection string.

"Trevor Best" <no****@besty.org.uk> wrote in message
news:42**********************@news.zen.co.uk...
MacDermott wrote:
> Could you say a little more about why you want to change mdw files?
> It sounds like rather an odd thing to be doing...


Why odd? I wouldn't mind being able to do this myself. I have an app
that uses the standard system.mdw, Admin, no pasword, all security
handled by SQL Server. Now and again I have to interface with someone
else's secured mdb file to get data in/out, e.g. another dept has
written their own system for document control and I need a list of docs
to send on an RFQ, commercially I am allowed access to this data,
technically I can't get at it (directly anyway).

--
This sig left intentionally blank


Nov 13 '05 #5
Tom van Stiphout wrote:
On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
wrote:

Or using DAO, you can use code like this:
Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
dbe.DefaultUser = "SecureUser"
Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")

It's documented here:
http://www.microsoft.com/resources/d...t/jetch02.mspx


I may try that next time :-)

--
This sig left intentionally blank
Nov 13 '05 #6
Thank you everybody but so far No one sample is working good !
I tryed DAO and ADO both rutines are missing the password in
the routine becuase my Secured MDW has password.

Can you please write the password instruction ??
( I prefer to use DAO)

Regards

Javier Gomez


Trevor Best <no****@besty.org.uk> wrote in message news:<42**********************@news.zen.co.uk>...
Tom van Stiphout wrote:
On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
wrote:

Or using DAO, you can use code like this:
Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
dbe.DefaultUser = "SecureUser"
Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")

It's documented here:
http://www.microsoft.com/resources/d...t/jetch02.mspx


I may try that next time :-)

Nov 13 '05 #7
On 7 Mar 2005 15:52:27 -0800, ja*****************@gmail.com (Javier
Gomez) wrote:

This is where YOU come in. You try, you struggle, you search, you try
again. Eventually you find the solution, and post it to this
newsgroup.

-Tom.
Thank you everybody but so far No one sample is working good !
I tryed DAO and ADO both rutines are missing the password in
the routine becuase my Secured MDW has password.

Can you please write the password instruction ??
( I prefer to use DAO)

Regards

Javier Gomez


Trevor Best <no****@besty.org.uk> wrote in message news:<42**********************@news.zen.co.uk>...
Tom van Stiphout wrote:
> On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
> wrote:
>
> Or using DAO, you can use code like this:
> Dim dbe As PrivDBEngine
> Dim wrk As Workspace
> Dim dbs As Database
>
> Set dbe = New PrivDBEngine
> dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
> dbe.DefaultUser = "SecureUser"
> Set wrk = dbe.Workspaces(0)
> Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")
>
> It's documented here:
> http://www.microsoft.com/resources/d...t/jetch02.mspx


I may try that next time :-)


Nov 13 '05 #8
Here's an ADO connection string that works:
Data Source="C:\Program
Files\MyApp\Data\MyDB.mdb";Provider="Microsoft.Jet .OLEDB.4.0";Password =
pwd; User ID = MyID; Jet OLEDB:System database = C:\Program
Files\MyApp\Data\MyApp.mdw

watch for line wrap!

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Thank you everybody but so far No one sample is working good !
I tryed DAO and ADO both rutines are missing the password in
the routine becuase my Secured MDW has password.

Can you please write the password instruction ??
( I prefer to use DAO)

Regards

Javier Gomez


Trevor Best <no****@besty.org.uk> wrote in message

news:<42**********************@news.zen.co.uk>...
Tom van Stiphout wrote:
On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
wrote:

Or using DAO, you can use code like this:
Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
dbe.DefaultUser = "SecureUser"
Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")

It's documented here:
http://www.microsoft.com/resources/d...t/jetch02.mspx
I may try that next time :-)

Nov 13 '05 #9
Thank you for answering me !

First thing to say about me,... I'm not a programmer !!

But.......After trying both ways DAO & ADO
With password and without password.......

I check manually if the workgroup has changed and it doesn't !!

Tools bars-->tools-->Security-->Workgroup Administrator: DOES NOT
CHANGE !
Stays the same default workgroup: System.mdw

But when I do it manually it works and after changing the workgroup my
DB (data base) close and it opens again automatically, Why the
suggested code does not looks to close the active DB and opens after
this, why simply do not do anything ?

Sorry but I do not understand I send you my tryed code in a command
botton.

Private Sub Command155_Click()
' Using DAO

Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\Security.mdw"
dbe.DefaultUser = "Pepe"

Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\SecurityTablas.mdb")

MsgBox "New Workgroup changed with DAO"
End Sub

'+++++++++++

Private Sub Command154_Click()
'Using ADO
'Microsoft ActiveX Data Objects Library 2.0 ou higher

Dim Cnn As ADODB.Connection
Dim Rst As ADODB.Recordset
Dim strConnect As String

Set Cnn = New ADODB.Connection

strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"User Id=Pepe;" & _
"Data Source=C:\SecurityTablas.mdb;" & _
"Persist Security Info=True;" & _
"Jet OLEDB:System Database=C:\Security.mdw"
With Cnn
.CursorLocation = adUseClient
.Open strConnect
End With

Set Rst = New ADODB.Recordset
Rst.ActiveConnection = Cnn

MsgBox "New Workgroup changed with ADO"

End Sub
Please tell me why this codes does not work ??

I feel sorry asking so many times same question.

Regards
Javier


"MacDermott" <ma********@nospam.com> wrote in message news:<mJ*****************@newsread2.news.atl.earth link.net>...
Here's an ADO connection string that works:
Data Source="C:\Program
Files\MyApp\Data\MyDB.mdb";Provider="Microsoft.Jet .OLEDB.4.0";Password =
pwd; User ID = MyID; Jet OLEDB:System database = C:\Program
Files\MyApp\Data\MyApp.mdw

watch for line wrap!

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Thank you everybody but so far No one sample is working good !
I tryed DAO and ADO both rutines are missing the password in
the routine becuase my Secured MDW has password.

Can you please write the password instruction ??
( I prefer to use DAO)

Regards

Javier Gomez


Trevor Best <no****@besty.org.uk> wrote in message

news:<42**********************@news.zen.co.uk>...
Tom van Stiphout wrote:
> On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com>
> wrote:
>
> Or using DAO, you can use code like this:
> Dim dbe As PrivDBEngine
> Dim wrk As Workspace
> Dim dbs As Database
>
> Set dbe = New PrivDBEngine
> dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
> dbe.DefaultUser = "SecureUser"
> Set wrk = dbe.Workspaces(0)
> Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")
>
> It's documented here:
> http://www.microsoft.com/resources/d...t/jetch02.mspx
I may try that next time :-)

Nov 13 '05 #10
Javier Gomez wrote:
Thank you for answering me !

First thing to say about me,... I'm not a programmer !!

But.......After trying both ways DAO & ADO
With password and without password.......

I check manually if the workgroup has changed and it doesn't !!

Tools bars-->tools-->Security-->Workgroup Administrator: DOES NOT
CHANGE !
Stays the same default workgroup: System.mdw

But when I do it manually it works and after changing the workgroup my
DB (data base) close and it opens again automatically, Why the
suggested code does not looks to close the active DB and opens after
this, why simply do not do anything ?

Sorry but I do not understand I send you my tryed code in a command
botton.


I don't think you can change it globally, just for the duration of a
session that you set at a time.

--
This sig left intentionally blank
Nov 13 '05 #11
Javier Gomez wrote:
Thank you for answering me !

First thing to say about me,... I'm not a programmer !!

But.......After trying both ways DAO & ADO
With password and without password.......

I check manually if the workgroup has changed and it doesn't !!

Tools bars-->tools-->Security-->Workgroup Administrator: DOES NOT
CHANGE !
Stays the same default workgroup: System.mdw


That menu shows your DEFAULT workgroup, not the workgroup you are currently
using.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 13 '05 #12
None of the code that has been posted -
either for ADO or for DAO -
will change the workgroup of your current Access session.

All of that code is intended to let you access data in other databases,
which are secured with other workgroup files.
You will still need to understand either ADO or DAO (whichever you choose)
in order to do anything with this data.

Admittedly, there is a learning curve involved here -
it sounds as if it might be pretty steep for you.
If you don't have the time or inclination, you might want to contact an IT
employment agency about purchasing a few hours of someone else's time to set
this up for you.

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Thank you for answering me !

First thing to say about me,... I'm not a programmer !!

But.......After trying both ways DAO & ADO
With password and without password.......

I check manually if the workgroup has changed and it doesn't !!

Tools bars-->tools-->Security-->Workgroup Administrator: DOES NOT
CHANGE !
Stays the same default workgroup: System.mdw

But when I do it manually it works and after changing the workgroup my
DB (data base) close and it opens again automatically, Why the
suggested code does not looks to close the active DB and opens after
this, why simply do not do anything ?

Sorry but I do not understand I send you my tryed code in a command
botton.

Private Sub Command155_Click()
' Using DAO

Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\Security.mdw"
dbe.DefaultUser = "Pepe"

Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\SecurityTablas.mdb")

MsgBox "New Workgroup changed with DAO"
End Sub

'+++++++++++

Private Sub Command154_Click()
'Using ADO
'Microsoft ActiveX Data Objects Library 2.0 ou higher

Dim Cnn As ADODB.Connection
Dim Rst As ADODB.Recordset
Dim strConnect As String

Set Cnn = New ADODB.Connection

strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"User Id=Pepe;" & _
"Data Source=C:\SecurityTablas.mdb;" & _
"Persist Security Info=True;" & _
"Jet OLEDB:System Database=C:\Security.mdw"
With Cnn
.CursorLocation = adUseClient
.Open strConnect
End With

Set Rst = New ADODB.Recordset
Rst.ActiveConnection = Cnn

MsgBox "New Workgroup changed with ADO"

End Sub
Please tell me why this codes does not work ??

I feel sorry asking so many times same question.

Regards
Javier


"MacDermott" <ma********@nospam.com> wrote in message

news:<mJ*****************@newsread2.news.atl.earth link.net>...
Here's an ADO connection string that works:
Data Source="C:\Program
Files\MyApp\Data\MyDB.mdb";Provider="Microsoft.Jet .OLEDB.4.0";Password =
pwd; User ID = MyID; Jet OLEDB:System database = C:\Program
Files\MyApp\Data\MyApp.mdw

watch for line wrap!

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Thank you everybody but so far No one sample is working good !
I tryed DAO and ADO both rutines are missing the password in
the routine becuase my Secured MDW has password.

Can you please write the password instruction ??
( I prefer to use DAO)

Regards

Javier Gomez


Trevor Best <no****@besty.org.uk> wrote in message

news:<42**********************@news.zen.co.uk>...
> Tom van Stiphout wrote:
> > On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com> > > wrote:
> >
> > Or using DAO, you can use code like this:
> > Dim dbe As PrivDBEngine
> > Dim wrk As Workspace
> > Dim dbs As Database
> >
> > Set dbe = New PrivDBEngine
> > dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
> > dbe.DefaultUser = "SecureUser"
> > Set wrk = dbe.Workspaces(0)
> > Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")
> >
> > It's documented here:
> >

http://www.microsoft.com/resources/d...t/jetch02.mspx
>
> I may try that next time :-)

Nov 13 '05 #13
Anyway thank you !

Javier Gomez


"MacDermott" <ma********@nospam.com> wrote in message news:<wt*****************@newsread2.news.atl.earth link.net>...
None of the code that has been posted -
either for ADO or for DAO -
will change the workgroup of your current Access session.

All of that code is intended to let you access data in other databases,
which are secured with other workgroup files.
You will still need to understand either ADO or DAO (whichever you choose)
in order to do anything with this data.

Admittedly, there is a learning curve involved here -
it sounds as if it might be pretty steep for you.
If you don't have the time or inclination, you might want to contact an IT
employment agency about purchasing a few hours of someone else's time to set
this up for you.

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
Thank you for answering me !

First thing to say about me,... I'm not a programmer !!

But.......After trying both ways DAO & ADO
With password and without password.......

I check manually if the workgroup has changed and it doesn't !!

Tools bars-->tools-->Security-->Workgroup Administrator: DOES NOT
CHANGE !
Stays the same default workgroup: System.mdw

But when I do it manually it works and after changing the workgroup my
DB (data base) close and it opens again automatically, Why the
suggested code does not looks to close the active DB and opens after
this, why simply do not do anything ?

Sorry but I do not understand I send you my tryed code in a command
botton.

Private Sub Command155_Click()
' Using DAO

Dim dbe As PrivDBEngine
Dim wrk As Workspace
Dim dbs As Database

Set dbe = New PrivDBEngine
dbe.SystemDB = "C:\Security.mdw"
dbe.DefaultUser = "Pepe"

Set wrk = dbe.Workspaces(0)
Set dbs = wrk.OpenDatabase("C:\SecurityTablas.mdb")

MsgBox "New Workgroup changed with DAO"
End Sub

'+++++++++++

Private Sub Command154_Click()
'Using ADO
'Microsoft ActiveX Data Objects Library 2.0 ou higher

Dim Cnn As ADODB.Connection
Dim Rst As ADODB.Recordset
Dim strConnect As String

Set Cnn = New ADODB.Connection

strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"User Id=Pepe;" & _
"Data Source=C:\SecurityTablas.mdb;" & _
"Persist Security Info=True;" & _
"Jet OLEDB:System Database=C:\Security.mdw"
With Cnn
.CursorLocation = adUseClient
.Open strConnect
End With

Set Rst = New ADODB.Recordset
Rst.ActiveConnection = Cnn

MsgBox "New Workgroup changed with ADO"

End Sub
Please tell me why this codes does not work ??

I feel sorry asking so many times same question.

Regards
Javier


"MacDermott" <ma********@nospam.com> wrote in message

news:<mJ*****************@newsread2.news.atl.earth link.net>...
Here's an ADO connection string that works:
Data Source="C:\Program
Files\MyApp\Data\MyDB.mdb";Provider="Microsoft.Jet .OLEDB.4.0";Password =
pwd; User ID = MyID; Jet OLEDB:System database = C:\Program
Files\MyApp\Data\MyApp.mdw

watch for line wrap!

HTH

"Javier Gomez" <ja*****************@gmail.com> wrote in message
news:89**************************@posting.google.c om...
> Thank you everybody but so far No one sample is working good !
> I tryed DAO and ADO both rutines are missing the password in
> the routine becuase my Secured MDW has password.
>
> Can you please write the password instruction ??
> ( I prefer to use DAO)
>
> Regards
>
> Javier Gomez
>
>
>
>
> Trevor Best <no****@besty.org.uk> wrote in message
news:<42**********************@news.zen.co.uk>...
> > Tom van Stiphout wrote:
> > > On Mon, 07 Mar 2005 03:06:18 GMT, "MacDermott" <ma********@nospam.com> > > > wrote:
> > >
> > > Or using DAO, you can use code like this:
> > > Dim dbe As PrivDBEngine
> > > Dim wrk As Workspace
> > > Dim dbs As Database
> > >
> > > Set dbe = New PrivDBEngine
> > > dbe.SystemDB = "C:\MyApp\MyWorkgroupFile.mdw"
> > > dbe.DefaultUser = "SecureUser"
> > > Set wrk = dbe.Workspaces(0)
> > > Set dbs = wrk.OpenDatabase("C:\Samples\Secured Northwind.mdb")
> > >
> > > It's documented here:
> > >
http://www.microsoft.com/resources/d...t/jetch02.mspx > >
> > I may try that next time :-)

Nov 13 '05 #14

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

Similar topics

11
by: Yeah | last post by:
I have a multiple choice quiz where I would like to use CSS to change the color of the answers upon clicking them. I would like to present the right and wrong answers up front, rather than direct...
4
by: active | last post by:
It appears to me that if I change the Control's client size the controls size does not change to agree with the new size. Does it work like the VB6 ScaleWidth and ScaleHeight? That is after I...
3
by: Xnet | last post by:
I need to change password of a local user of a W2003, without Active Directory. I need to do it from an application created with VB2005. Thanks!
6
by: MattWilson.6185 | last post by:
Hi, I'm trying to find out if something is possible, I have a few diffrent lists that I add objects to and I would like to be able to have a wrapper class that won't affect the internal object, for...
0
by: FrankieBakerJr | last post by:
Hello all I have an ASP.NET 2003 application (running Windows XP) that allows user to change and reset their Active Directory password. I'm using an admin account to query and reset the passwords...
1
by: dhaneshrs | last post by:
I have a small code that shows inactive and active users from the ms access DB. <%@ Page Language="VB" MasterPageFile="~/MasterPageAdmin.master" Title="Welcome" %> <%@ Import...
2
by: remya1000 | last post by:
i'm using VB.NET. and its a windows application. in my program i need to display a table in datagrid. so i created the table using DataTable and i'm calling that dataTable to dataGrid. and its...
3
by: Jiwei06xie | last post by:
Dear expert, I got two forms. form1: Combox form Form_rptStock (key field: serial number), with one command button. form2: Entryform Entryform_stock, with a series of command buttons. I use...
2
by: Garima12 | last post by:
There is htm page. In its body I am calling a class from stylesheet called TaskbarStyle(classname). Now I want to change the color of hyperlink in this page as well as their active link color. I am...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
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: 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: 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: 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...
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.