473,509 Members | 8,693 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using Objects from another database

I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...

Let's say we have two different company functions: Sales and
Operations

The Operations database is considered the "main" one...we are using
this daily and it works very well.

I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.

Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.

Maintenance is a nightmare on all this already.

Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.

This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?

Thanks!

Josetta

Apr 25 '07 #1
11 1994
On 24 Apr 2007 17:40:45 -0700, Josetta <Jo*****@smartdot.netwrote:

Indeed the term is "add-in". That's where you can put the common
functionality. Both apps would set a reference to this module, and are
then able to use it.

Personally I would rather create a single app, and use security to
fence off certain functionality the user may not need.

-Tom.
>I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...

Let's say we have two different company functions: Sales and
Operations

The Operations database is considered the "main" one...we are using
this daily and it works very well.

I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.

Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.

Maintenance is a nightmare on all this already.

Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.

This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?

Thanks!

Josetta
Apr 25 '07 #2
On Apr 24, 5:40 pm, Josetta <Jose...@smartdot.netwrote:
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...

Let's say we have two different company functions: Sales and
Operations

The Operations database is considered the "main" one...we are using
this daily and it works very well.

I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.

Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.

Maintenance is a nightmare on all this already.

Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.

This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?

Thanks!

Josetta
I do this particular thing all the time. I don't use add-ins for this
particular functionality. Basically, keep the same front-end for all
back-ends and let the user switch backend databases (how you select
the new one is up to you. I use the common file dialog myself
usually), then cycle thru the tabledefs to define the new path to each
linked table. Here is a code snippet (this assumes an Access back-end
database):

For Each tdf In db.TableDefs
' If connect is blank, its not an Linked table
If Len(tdf.Connect) 0 Then
tdf.Connect = ";DATABASE=" & varFileName

' The RefreshLink might fail if the new path isn't OK. So
trap errors inline.
On Error Resume Next
tdf.RefreshLink

I don't remember off-hand if I wrote that code from scratch or adapted
it from somewhere else (like Getz, Litwin, et. al.). You will
probably need to adapt to your needs, but this should show you the
basic idea.
-- Larry Engles
Access developer since day 1 of Access 1.0
Apr 26 '07 #3
Thanks for the suggestion. The boss would really like to keep them
separate and I am just trying to save myself some work down the road,
since he comes up with these crazy ideas continually. I am going to
look into this add-in business. It looks like this may be the way to
go in the future. For now, I just need to get it done.

Josetta

On Apr 24, 11:35 pm, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On 24 Apr 2007 17:40:45 -0700, Josetta <Jose...@smartdot.netwrote:

Indeed the term is "add-in". That's where you can put the common
functionality. Both apps would set a reference to this module, and are
then able to use it.

Personally I would rather create a single app, and use security to
fence off certain functionality the user may not need.

-Tom.
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta- Hide quoted text -

- Show quoted text -

Apr 26 '07 #4
Thanks for your reply. Hmm...this works fine with tables and I am
using this to make sure all my tables are linked properly. What I
need is to have this functionality with forms, reports and queries.

On Apr 26, 12:37 am, eng...@ridesoft.com wrote:
On Apr 24, 5:40 pm, Josetta <Jose...@smartdot.netwrote:


I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta

I do this particular thing all the time. I don't use add-ins for this
particular functionality. Basically, keep the same front-end for all
back-ends and let the user switch backend databases (how you select
the new one is up to you. I use the common file dialog myself
usually), then cycle thru the tabledefs to define the new path to each
linked table. Here is a code snippet (this assumes an Access back-end
database):

For Each tdf In db.TableDefs
' If connect is blank, its not an Linked table
If Len(tdf.Connect) 0 Then
tdf.Connect = ";DATABASE=" & varFileName

' The RefreshLink might fail if the new path isn't OK. So
trap errors inline.
On Error Resume Next
tdf.RefreshLink

I don't remember off-hand if I wrote that code from scratch or adapted
it from somewhere else (like Getz, Litwin, et. al.). You will
probably need to adapt to your needs, but this should show you the
basic idea.

-- Larry Engles
Access developer since day 1 of Access 1.0- Hide quoted text -

- Show quoted text -

Apr 26 '07 #5
On Apr 26, 11:20 am, Josetta <Jose...@smartdot.netwrote:
Thanks for your reply. Hmm...this works fine with tables and I am
using this to make sure all my tables are linked properly. What I
need is to have this functionality with forms, reports and queries.

On Apr 26, 12:37 am, eng...@ridesoft.com wrote:
On Apr 24, 5:40 pm, Josetta <Jose...@smartdot.netwrote:
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta
The approach Tom described earlier is the best approach to take, i.e.,
create a single front end database that houses all of the forms,
reports, queries, etc. for both applications and let the end user
either choose which 'application' they want to use (or force them into
one or the other based on their user id or other criteria). Once that
choice is made only make available those forms, reports, queries, etc.
that apply to the chosen application. You can easily share data
between different mdb files, and even code modules, but forms,
queries, and reports are another matter. It's best to keep those in
the same file unless you want the maintenance nightmare you've already
described.

Bruce

Apr 26 '07 #6
On Apr 26, 9:20 am, Josetta <Jose...@smartdot.netwrote:
Thanks for your reply. Hmm...this works fine with tables and I am
using this to make sure all my tables are linked properly. What I
need is to have this functionality with forms, reports and queries.

On Apr 26, 12:37 am, eng...@ridesoft.com wrote:
On Apr 24, 5:40 pm, Josetta <Jose...@smartdot.netwrote:
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta
I do this particular thing all the time. I don't use add-ins for this
particular functionality. Basically, keep the same front-end for all
back-ends and let the user switch backend databases (how you select
the new one is up to you. I use the common file dialog myself
usually), then cycle thru the tabledefs to define the new path to each
linked table. Here is a code snippet (this assumes an Access back-end
database):
For Each tdf In db.TableDefs
' If connect is blank, its not an Linked table
If Len(tdf.Connect) 0 Then
tdf.Connect = ";DATABASE=" & varFileName
' The RefreshLink might fail if the new path isn't OK. So
trap errors inline.
On Error Resume Next
tdf.RefreshLink
I don't remember off-hand if I wrote that code from scratch or adapted
it from somewhere else (like Getz, Litwin, et. al.). You will
probably need to adapt to your needs, but this should show you the
basic idea.
-- Larry Engles
Access developer since day 1 of Access 1.0- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

I guess I was not detailed enough. The variable "varFileName" is
complete path for a backend database. It could be a different
database than is currently linked to. This then would then link to a
different backend. If you feed it the same path and file as the
existing backend, all you are doing is refreshing the link.

Hope this sheds light on the subject. Since the front-end (the mdb
file with the forms, reports, queries, etc.) does not change, you are
using the exact same front-end to re-link to mulitple backends.
-- Larry Engles
Access developer since day 1 of Access 1.0


Apr 26 '07 #7
Josetta <Jo*****@smartdot.netwrote in news:1177461645.121679.261130
@b40g2000prd.googlegroups.com:
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.

This can be done, right?
It could be done quite easily in Access 97 using the VB Attributes of the
objects. But it became more difficult in Access 2000. I wrote code to
accomplish this long ago but who knows where it might be now?

If you search Google Groups comp.databases.ms-access for ATTRIBUTE
VB_Exposed you should be able to find some interesting suggestions. Terry
Kreft may be the person most knowledgable about this matter.

Also, you might want to remember that old style MS-VB Forms !!!!MAY!!!! be
possible in modern versions of Access, although this is unlikely to help
with reports.

Apr 26 '07 #8
On 26 Apr 2007 09:15:16 -0700, Josetta <Jo*****@smartdot.netwrote:

One other way to simulate two apps with one is to borrow a trick from
the UNIX command line days. They would have utilities that were
several-in-one, and depending on the name they would behave
differently.
You can do a similar thing. Create a shortcut like this:
<path_to>msaccess.exe <path_to>my.mdb /x:AppOne
and another one:
<path_to>msaccess.exe <path_to>my.mdb /x:AppTwo

Then in the macro named AppOne you have:
RunCode Initialize("AppOne")
and in a macro named AppTwo you have:
RunCode Initialize("AppTwo")

The public function Initialize in a standard module would configure
the app. Perhaps:
Public Function Initialize(ByVal strMode as String)
if strMode = "AppOne" then
DoCmd OpenForm "MainMenuForAppOne"
elseif strMode = "AppTwo" then
DoCmd OpenForm "MainMenuForAppTwo"
else
Msgbox "You can only run this app from an approved shortcut"
End
end if

-Tom.
>Thanks for the suggestion. The boss would really like to keep them
separate and I am just trying to save myself some work down the road,
since he comes up with these crazy ideas continually. I am going to
look into this add-in business. It looks like this may be the way to
go in the future. For now, I just need to get it done.

Josetta

On Apr 24, 11:35 pm, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
>On 24 Apr 2007 17:40:45 -0700, Josetta <Jose...@smartdot.netwrote:

Indeed the term is "add-in". That's where you can put the common
functionality. Both apps would set a reference to this module, and are
then able to use it.

Personally I would rather create a single app, and use security to
fence off certain functionality the user may not need.

-Tom.
>I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
>Let's say we have two different company functions: Sales and
Operations
>The Operations database is considered the "main" one...we are using
this daily and it works very well.
>I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
>Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
>Maintenance is a nightmare on all this already.
>Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
>This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
>Thanks!
>Josetta- Hide quoted text -

- Show quoted text -
Apr 27 '07 #9
Yes, I am finding this out. What I wanted to avoid was making changes
in both places... Thanks for your suggestion. I'm going to seriously
think about it.

On Apr 26, 4:19 pm, Bruce <deluxeinformat...@gmail.comwrote:
On Apr 26, 11:20 am, Josetta <Jose...@smartdot.netwrote:


Thanks for your reply. Hmm...this works fine with tables and I am
using this to make sure all my tables are linked properly. What I
need is to have this functionality with forms, reports and queries.
On Apr 26, 12:37 am, eng...@ridesoft.com wrote:
On Apr 24, 5:40 pm, Josetta <Jose...@smartdot.netwrote:
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta

The approach Tom described earlier is the best approach to take, i.e.,
create a single front end database that houses all of the forms,
reports, queries, etc. for both applications and let the end user
either choose which 'application' they want to use (or force them into
one or the other based on their user id or other criteria). Once that
choice is made only make available those forms, reports, queries, etc.
that apply to the chosen application. You can easily share data
between different mdb files, and even code modules, but forms,
queries, and reports are another matter. It's best to keep those in
the same file unless you want the maintenance nightmare you've already
described.

Bruce- Hide quoted text -

- Show quoted text -

May 1 '07 #10
Thanks for the suggestion.

On Apr 26, 6:58 pm, lyle fairfield <lylef...@yahoo.cawrote:
Josetta <Jose...@smartdot.netwrote in news:1177461645.121679.261130
@b40g2000prd.googlegroups.com:
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right?

It could be done quite easily in Access 97 using the VB Attributes of the
objects. But it became more difficult in Access 2000. I wrote code to
accomplish this long ago but who knows where it might be now?

If you search Google Groups comp.databases.ms-access for ATTRIBUTE
VB_Exposed you should be able to find some interesting suggestions. Terry
Kreft may be the person most knowledgable about this matter.

Also, you might want to remember that old style MS-VB Forms !!!!MAY!!!! be
possible in modern versions of Access, although this is unlikely to help
with reports.

May 1 '07 #11
This might work...Thanks for the suggestion.

On Apr 26, 11:54 pm, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On 26 Apr 2007 09:15:16 -0700, Josetta <Jose...@smartdot.netwrote:

One other way to simulate two apps with one is to borrow a trick from
the UNIX command line days. They would have utilities that were
several-in-one, and depending on the name they would behave
differently.
You can do a similar thing. Create a shortcut like this:
<path_to>msaccess.exe <path_to>my.mdb /x:AppOne
and another one:
<path_to>msaccess.exe <path_to>my.mdb /x:AppTwo

Then in the macro named AppOne you have:
RunCode Initialize("AppOne")
and in a macro named AppTwo you have:
RunCode Initialize("AppTwo")

The public function Initialize in a standard module would configure
the app. Perhaps:
Public Function Initialize(ByVal strMode as String)
if strMode = "AppOne" then
DoCmd OpenForm "MainMenuForAppOne"
elseif strMode = "AppTwo" then
DoCmd OpenForm "MainMenuForAppTwo"
else
Msgbox "You can only run this app from an approved shortcut"
End
end if

-Tom.
Thanks for the suggestion. The boss would really like to keep them
separate and I am just trying to save myself some work down the road,
since he comes up with these crazy ideas continually. I am going to
look into this add-in business. It looks like this may be the way to
go in the future. For now, I just need to get it done.
Josetta
On Apr 24, 11:35 pm, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On 24 Apr 2007 17:40:45 -0700, Josetta <Jose...@smartdot.netwrote:
Indeed the term is "add-in". That's where you can put the common
functionality. Both apps would set a reference to this module, and are
then able to use it.
Personally I would rather create a single app, and use security to
fence off certain functionality the user may not need.
-Tom.
I searched around a little bit, but didn't come up with the answer to
this question, but somewhere in the back of my mind, I think this can
be done...
Let's say we have two different company functions: Sales and
Operations
The Operations database is considered the "main" one...we are using
this daily and it works very well.
I've now created a new database, which basically tracks prospects and
manages clients and their ongoing projects, which is now considered a
"sales" function.
Because we're having sales followup with clients as well, I'd like the
forms, reports, and code regarding the projects to be exactly the same
in the new sales db as it is in the old db.
Maintenance is a nightmare on all this already.
Is there a way to NOT import, but have the forms, reports, etc. be
exactly the same in both databases (like a reference, I guess), so
that I only need to maintain one of them. In other words, if I make a
change to the form or report or code in the main database, that change
is reflected in the new database.
This can be done, right? I wanna say you do almost like an Add-in
thing, right? How can I get this to work? Any ideas?
Thanks!
Josetta- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -

May 1 '07 #12

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

Similar topics

1
2838
by: Matt Alanzo | last post by:
On another newsgroup an Access knowledgable party posted: >You should be able to connect an Access ADP to an existing SQLExpress >database running in SQLS 2000 compatibility mode. The only thing...
11
6551
by: Grasshopper | last post by:
Hi, I am automating Access reports to PDF using PDF Writer 6.0. I've created a DTS package to run the reports and schedule a job to run this DTS package. If I PC Anywhere into the server on...
4
1804
by: Ashura | last post by:
H I want to make a project where one or more object could be shared between 2 applications For example : the first application create a connection to a web-service, this connection is stored in...
4
3499
by: James | last post by:
I have a VB windows forms application that accesses a Microsoft Access database that has been secured using user-level security. The application is being deployed using No-Touch deployment. The...
2
2532
by: Bob | last post by:
How do I program vb.net to copy a query or table from one MS Access database to another? I'd like to accomplish what import does when it copies Access objects (primarily queries but some tables)...
8
1843
by: Lüpher Cypher | last post by:
Hi, Suppose we have a hierarchical class structure that looks something like this: Object | +-- Main | +-- Object1
3
1445
by: Jeff User | last post by:
Hi I want to create a rather simple object with a few string attributes to hold some database user information such as: public class UserInfo { //Basic user information for each user...
2
2187
by: garyusenet | last post by:
I could do with something similiar, can you tell me if you think this would work for me, and if there's any advantage in working with controls this way than how I currently am. At the moment...
10
6707
by: Robert | last post by:
How do you get an accurate count of the number of records returned from a query when using linked tables. I have an access 2003 database as a front end to another access 2003 database that...
2
4187
by: Jer | last post by:
I just upgraded to SQLServer 2005 Standard. I do development in a database on one server. When a solution is completely tested, I move it to the operational database on a different server. With...
0
7237
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
7137
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
7416
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7073
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5656
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,...
1
5062
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...
0
3207
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1571
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
779
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.