473,654 Members | 3,289 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ACCESS97, try to relink reference to another MDB

I've got two MDBs, that due to size, security, etc, need to be kept
separate
quotation
configurator (there will be more of these in the future)

so within quotation.mdb,
I linked all the tables that configurator.md b uses
I created a reference to configurator.md bm using full path name
I open a 'configurator' form, and away to work I go
now this is in a development world, and when we move the application to
production, I'd like to change all the configurator.md b references in
quotation.mdb to point to the production MDBs using

Public Sub linkReferences( )
Dim ref As Reference
Dim lngRef As Long
Dim strPath As String

On Error GoTo fErr
For lngRef = Application.Ref erences.Count To 1 Step -1
Set ref = Application.Ref erences(lngRef)
If (Left(ref.FullP ath, Len(devQuotrak) ) = devQuotrak) Then
If (applicationPat h <> devQuotrak) Then
strPath = applicationPath & Mid(ref.FullPat h,
Len(devQuotrak) + 1, 99)
Application.Ref erences.Remove ref
Application.Ref erences.AddFrom File strPath
End If
End If

Set ref = Nothing
Next lngRef

fExit:
On Error Resume Next
Set ref = Nothing
Exit Sub

fErr:
errorLog "linkReferences "
Resume fExit
End Sub


but when I hit the line ' Application.Ref erences.Remove ref', I get a
message
cant enter break mode at this time

and the 'remove' and 'add' does not happen

why this error ?
what else can I do ?

Mar 24 '06 #1
12 4739
On 24 Mar 2006 09:01:54 -0800, le*********@nat pro.com wrote:
I've got two MDBs, that due to size, security, etc, need to be kept
separate
quotation
configurator (there will be more of these in the future)

so within quotation.mdb,
I linked all the tables that configurator.md b uses
I created a reference to configurator.md bm using full path name
I open a 'configurator' form, and away to work I go
now this is in a development world, and when we move the application to
production, I'd like to change all the configurator.md b references in
quotation.md b to point to the production MDBs using

Public Sub linkReferences( )
Dim ref As Reference
Dim lngRef As Long
Dim strPath As String

On Error GoTo fErr
For lngRef = Application.Ref erences.Count To 1 Step -1
Set ref = Application.Ref erences(lngRef)
If (Left(ref.FullP ath, Len(devQuotrak) ) = devQuotrak) Then
If (applicationPat h <> devQuotrak) Then
strPath = applicationPath & Mid(ref.FullPat h,
Len(devQuotrak ) + 1, 99)
Application.Ref erences.Remove ref
Application.Ref erences.AddFrom File strPath
End If
End If

Set ref = Nothing
Next lngRef

fExit:
On Error Resume Next
Set ref = Nothing
Exit Sub

fErr:
errorLog "linkReferences "
Resume fExit
End Sub


but when I hit the line ' Application.Ref erences.Remove ref', I get a
message
cant enter break mode at this time

and the 'remove' and 'add' does not happen

why this error ?
what else can I do ?


If these are linked tables you change the links via the CONNECT property.
For example

Public Function Relink(path1$, path2$)
Dim DB As DATABASE
Dim tdef As TableDef
Dim temp$, resp
Dim OldConnectStrin g$, NewConnectStrin g$
'takes all attachments to file (full) path1 and re-point them to path2
'fails if anything is missing

Set DB = CurrentDb

For Each tdef In DB.TableDefs
OldConnectStrin g = tdef.Connect
If Len("" & OldConnectStrin g) > 0 And InStr(1, OldConnectStrin g, ";DATABASE= ") Then
temp = InStr(OldConnec tString, path1)
If temp > 0 Then
NewConnectStrin g = str1tostr2once( OldConnectStrin g$, path1, path2)
tdef.Connect = NewConnectStrin g
tdef.RefreshLin k
End If
End If
Next tdef

End Function

Public Function str1tostr2once( f, A$, B$)
'because Access 97
Dim temp$, C$, i As Integer, la As Integer, lb As Integer
'in string F, replaces A by B first occurrence only

If IsNull(f) Then
str1tostr2once = ""
Exit Function
Else
temp$ = CStr(f)
la = Len(A$)
lb = Len(B$)
i = InStr(temp$, A$)
If i > 0 Then
temp$ = Left(temp$, i - 1) & B$ & Right(temp$, Len(temp$) - i - la + 1)
End If
str1tostr2once = temp$
End If

End Function
Mar 24 '06 #2
thanks for your input, but my function to change the path of the link
tables works fine, thats not the issue

my problem is the same as having outlook97 on one machine, and
outlook2000 on another machine - and not using late-binding when you
use outlook automation

when you move your application to the second machine, the reference to
outlook97 would be MISSING and you'd have to browse to the outlook2000

in my case, the reference is configurator.md b, but in production, it's
in a different folder than in development, causing the MISSING
reference

polite person wrote:
On 24 Mar 2006 09:01:54 -0800, le*********@nat pro.com wrote:
I've got two MDBs, that due to size, security, etc, need to be kept
separate
quotation
configurator (there will be more of these in the future)

so within quotation.mdb,
I linked all the tables that configurator.md b uses
I created a reference to configurator.md bm using full path name
I open a 'configurator' form, and away to work I go
now this is in a development world, and when we move the application to
production, I'd like to change all the configurator.md b references in
quotation.md b to point to the production MDBs using

Public Sub linkReferences( )
Dim ref As Reference
Dim lngRef As Long
Dim strPath As String

On Error GoTo fErr
For lngRef = Application.Ref erences.Count To 1 Step -1
Set ref = Application.Ref erences(lngRef)
If (Left(ref.FullP ath, Len(devQuotrak) ) = devQuotrak) Then
If (applicationPat h <> devQuotrak) Then
strPath = applicationPath & Mid(ref.FullPat h,
Len(devQuotrak ) + 1, 99)
Application.Ref erences.Remove ref
Application.Ref erences.AddFrom File strPath
End If
End If

Set ref = Nothing
Next lngRef

fExit:
On Error Resume Next
Set ref = Nothing
Exit Sub

fErr:
errorLog "linkReferences "
Resume fExit
End Sub


but when I hit the line ' Application.Ref erences.Remove ref', I get a
message
cant enter break mode at this time

and the 'remove' and 'add' does not happen

why this error ?
what else can I do ?


If these are linked tables you change the links via the CONNECT property.
For example

Public Function Relink(path1$, path2$)
Dim DB As DATABASE
Dim tdef As TableDef
Dim temp$, resp
Dim OldConnectStrin g$, NewConnectStrin g$
'takes all attachments to file (full) path1 and re-point them to path2
'fails if anything is missing

Set DB = CurrentDb

For Each tdef In DB.TableDefs
OldConnectStrin g = tdef.Connect
If Len("" & OldConnectStrin g) > 0 And InStr(1, OldConnectStrin g, ";DATABASE= ") Then
temp = InStr(OldConnec tString, path1)
If temp > 0 Then
NewConnectStrin g = str1tostr2once( OldConnectStrin g$, path1, path2)
tdef.Connect = NewConnectStrin g
tdef.RefreshLin k
End If
End If
Next tdef

End Function

Public Function str1tostr2once( f, A$, B$)
'because Access 97
Dim temp$, C$, i As Integer, la As Integer, lb As Integer
'in string F, replaces A by B first occurrence only

If IsNull(f) Then
str1tostr2once = ""
Exit Function
Else
temp$ = CStr(f)
la = Len(A$)
lb = Len(B$)
i = InStr(temp$, A$)
If i > 0 Then
temp$ = Left(temp$, i - 1) & B$ & Right(temp$, Len(temp$) - i - la + 1)
End If
str1tostr2once = temp$
End If

End Function


Mar 24 '06 #3
On 24 Mar 2006 15:25:17 -0800, le*********@nat pro.com wrote:
thanks for your input, but my function to change the path of the link
tables works fine, thats not the issue

my problem is the same as having outlook97 on one machine, and
outlook2000 on another machine - and not using late-binding when you
use outlook automation

when you move your application to the second machine, the reference to
outlook97 would be MISSING and you'd have to browse to the outlook2000

in my case, the reference is configurator.md b, but in production, it's
in a different folder than in development, causing the MISSING
reference

polite person wrote:
On 24 Mar 2006 09:01:54 -0800, le*********@nat pro.com wrote:
>I've got two MDBs, that due to size, security, etc, need to be kept
>separate
> quotation
> configurator (there will be more of these in the future)
>
>so within quotation.mdb,
> I linked all the tables that configurator.md b uses
> I created a reference to configurator.md bm using full path name
> I open a 'configurator' form, and away to work I go
>
>
>now this is in a development world, and when we move the application to
>production, I'd like to change all the configurator.md b references in
>quotation.md b to point to the production MDBs using
>
>Public Sub linkReferences( )
> Dim ref As Reference
> Dim lngRef As Long
> Dim strPath As String
>
> On Error GoTo fErr
> For lngRef = Application.Ref erences.Count To 1 Step -1
> Set ref = Application.Ref erences(lngRef)
> If (Left(ref.FullP ath, Len(devQuotrak) ) = devQuotrak) Then
> If (applicationPat h <> devQuotrak) Then
> strPath = applicationPath & Mid(ref.FullPat h,
>Len(devQuotrak ) + 1, 99)
> Application.Ref erences.Remove ref
> Application.Ref erences.AddFrom File strPath
> End If
> End If
>
> Set ref = Nothing
> Next lngRef
>
>fExit:
> On Error Resume Next
> Set ref = Nothing
> Exit Sub
>
>fErr:
> errorLog "linkReferences "
> Resume fExit
>End Sub
>
>
>
>
>but when I hit the line ' Application.Ref erences.Remove ref', I get a
>message
> cant enter break mode at this time
>
>and the 'remove' and 'add' does not happen
>
>why this error ?
>what else can I do ?


If these are linked tables you change the links via the CONNECT property.
For example

Public Function Relink(path1$, path2$)
Dim DB As DATABASE
Dim tdef As TableDef
Dim temp$, resp
Dim OldConnectStrin g$, NewConnectStrin g$
'takes all attachments to file (full) path1 and re-point them to path2
'fails if anything is missing

Set DB = CurrentDb

For Each tdef In DB.TableDefs
OldConnectStrin g = tdef.Connect
If Len("" & OldConnectStrin g) > 0 And InStr(1, OldConnectStrin g, ";DATABASE= ") Then
temp = InStr(OldConnec tString, path1)
If temp > 0 Then
NewConnectStrin g = str1tostr2once( OldConnectStrin g$, path1, path2)
tdef.Connect = NewConnectStrin g
tdef.RefreshLin k
End If
End If
Next tdef

End Function

Public Function str1tostr2once( f, A$, B$)
'because Access 97
Dim temp$, C$, i As Integer, la As Integer, lb As Integer
'in string F, replaces A by B first occurrence only

If IsNull(f) Then
str1tostr2once = ""
Exit Function
Else
temp$ = CStr(f)
la = Len(A$)
lb = Len(B$)
i = InStr(temp$, A$)
If i > 0 Then
temp$ = Left(temp$, i - 1) & B$ & Right(temp$, Len(temp$) - i - la + 1)
End If
str1tostr2once = temp$
End If

End Function


Well maybe if you didn't use references you wouldn't have the problem, but it's true that I don't
know what you are trying to do.

Mar 25 '06 #4
In article <11************ **********@v46g 2000cwv.googleg roups.com>,
le*********@nat pro.com Fri, 24 Mar 2006 09:01:54 writes
I'd like to change all the configurator.md b references in quotation.mdb to
point to the production MDBs using


Below is a part of the code we have used for years to do just what you
want.

In fact it links to two different mdbs depending on how the table name
starts.

'------------------------------------------------------------------------
------------
' Loop through all tables, re-attaching those with nonzero-length
Connect strings.

AT_Attch:
TableCount = 1 'Initialize TableCount for status meter.
For I = 0 To MaxTables
Set TableName = db.TableDefs(I)
DocName = db.TableDefs(I) .Name
If Left$(DocName, 13) <> "File: Contact" Then DBFile =
PMfilename Else DBFile = COfilename
' Only attach if needs attaching
If TableName.Conne ct <> "" _
And Left(DocName, 4) <> "MSys" _
And TableName.Conne ct <> ";DATABASE= " & DBFile _
Then
TableName.Conne ct = ";DATABASE= " & DBFile
Err = 0
TableName.Refre shLink
' Grant Authority to Group_01 - All users must belong to
Group_01
' This is necessary as re-attaching changes ownership of
attached tables to current user
' and existing authorities are lost.
ct.Documents(Do cName).UserName = "Group_01"
ct.Documents(Do cName).Permissi ons = SecVal
End If
TableCount = TableCount + 1
ReturnValue = SysCmd(acSysCmd UpdateMeter, TableCount)
If D < 20 Then D = D + 1 Else DoEvents: D = 0
Next I
'------------------------------------------------------------------------
------------

--
Les Desser
(The Reply-to address IS valid)
Mar 27 '06 #5
I'm trying to reference a secondary MDB within a primary MDB, like you
would reference Outlook or Excel within an MDB
so that I can keep forms / queries / links to tables / modules /etc
seperate

and I'd like some vba in the primary MDB to change the path of the
secondary MDB from the development copy to the production copy, the
code above fails

but now, it looks like the table links and queries, that a secondary
MDB form references, need to be in the primary MDB, so all I'm keeping
in the secondary MDB are forms/reports/modules... and I'm not sure it's
worth it

Mar 27 '06 #6
In article <11************ ********@j33g20 00cwa.googlegro ups.com>,
le*********@nat pro.com Mon, 27 Mar 2006 09:50:10 writes
I'm trying to reference a secondary MDB within a primary MDB, like you
would reference Outlook or Excel within an MDB
so that I can keep forms / queries / links to tables / modules /etc
seperate

and I'd like some vba in the primary MDB to change the path of the
secondary MDB from the development copy to the production copy, the
code above fails

but now, it looks like the table links and queries, that a secondary
MDB form references, need to be in the primary MDB, so all I'm keeping
in the secondary MDB are forms/reports/modules... and I'm not sure it's
worth it

Not quote sure of exactly your setup. The 'normal' setup is to have a
master DB containing forms and reports and all 'code' type objects -
i.e. those things that a developer may change.

The secondary DB contains the user's data. In this way the primary can
be changed while the user's data remains unchanged.

Thus the location of the secondary data DB is generally variable while
the master DB stays in a fixed directory wherever it may be running.

How does your setup differ, if at all?
--
Les Desser
(The Reply-to address IS valid)
Mar 27 '06 #7
I have two applications, both with a front-end and a back-end
I'd like to, if possible keep them seperate, but I also need to
integrate them
I know that from applicationA, I can open another ms-access session and
run applicationB

but I have to pass parameters from applicationA to applicationB and
back, so I thought, what if applicationA references applicationB (like
you would outlook to send emails)

then from applicationA, I can open an applicationB form and all would
work
the form opens, but as thought is was part of applicationA, so I need
to link all the applicationB back end tables into applicationA, not
hard

but now the queries that the applicationB form uses are accessible from
applicationA either, so I need to copy those to applicationA

so by the time I'm done, applicationA's front end has all the forms /
reports /etc
and applicationA's back end has all the tables

too bad, but it looks this won't work
I'm assuming that opening a second ms-access session and implementing a
parameter passing mechanism is too messy & prone to errors

Les Desser wrote:
In article <11************ ********@j33g20 00cwa.googlegro ups.com>,
le*********@nat pro.com Mon, 27 Mar 2006 09:50:10 writes
I'm trying to reference a secondary MDB within a primary MDB, like you
would reference Outlook or Excel within an MDB
so that I can keep forms / queries / links to tables / modules /etc
seperate

and I'd like some vba in the primary MDB to change the path of the
secondary MDB from the development copy to the production copy, the
code above fails

but now, it looks like the table links and queries, that a secondary
MDB form references, need to be in the primary MDB, so all I'm keeping
in the secondary MDB are forms/reports/modules... and I'm not sure it's
worth it

Not quote sure of exactly your setup. The 'normal' setup is to have a
master DB containing forms and reports and all 'code' type objects -
i.e. those things that a developer may change.

The secondary DB contains the user's data. In this way the primary can
be changed while the user's data remains unchanged.

Thus the location of the secondary data DB is generally variable while
the master DB stays in a fixed directory wherever it may be running.

How does your setup differ, if at all?
--
Les Desser
(The Reply-to address IS valid)


Mar 28 '06 #8
In article <11************ *********@z34g2 000cwc.googlegr oups.com>,
le*********@nat pro.com Tue, 28 Mar 2006 08:53:17 writes
I have two applications, both with a front-end and a back-end I'd like to,
if possible keep them seperate, but I also need to integrate them I know
that from applicationA, I can open another ms-access session and run
applicationB

but I have to pass parameters from applicationA to applicationB and
back, so I thought, what if applicationA references applicationB (like you
would outlook to send emails)

then from applicationA, I can open an applicationB form and all would
work the form opens, but as thought is was part of applicationA, so I
need to link all the applicationB back end tables into applicationA, not
hard

but now the queries that the applicationB form uses are accessible from
applicationA either, so I need to copy those to applicationA

so by the time I'm done, applicationA's front end has all the forms /
reports /etc
and applicationA's back end has all the tables

too bad, but it looks this won't work
I'm assuming that opening a second ms-access session and implementing
a parameter passing mechanism is too messy & prone to errors

Sorry but I still do not fully understand your requirement. Let me
describe what we have done as it sounds similar to what you seem to
want.

(My description is based on memory of when this was written many years
ago, so I hope I get it right)

We have (simplified somewhat as we actually have more than the two
applications below)

ContactD - Contacts database, data tables only
Contacts - Forms/Reports/Modules and links to tables in ContactD

ApplicationD - Data tables only
Application - Forms/Reports/Modules and links to tables in ApplicationD
Also links to some tables in ContactD as some Application
forms need direct access to the tables.

Application references Contacts so that it has access to modules and
global variables in Contacts. By calling functions and subs defined in
Contacts, we can load forms from Application that are actually in
Contacts (or at least it looks like they are loaded from there. In fact
you press a button in Application which calls a sub in Contacts which
loads a form in Contacts)

Also by using the global declarations in Contacts, Application and
Contacts can communicate parameters.

In our case there is no need for Contacts to directly reference tables
in ApplicationD so there are no links in that direction.

In some instances, Contacts does need to read tables in ApplicationD,
and we do that in code by directly opening tables from the ApplicationD
db.

To make all the above easier, we have an ini file that contains the
paths to ApplicationD and ContactD.

The name of the ini file is passed to Application when it opens via the
/ini command line parameter. Application extracts the paths and stores
them in global variables accessible by both Application and Contacts so
that either can freely open any of the data tables from within code.

The same global parameters are used to do the re-linking from within
Application and Contacts as they start up.
--
Les Desser
(The Reply-to address IS valid)
Mar 28 '06 #9
On 28 Mar 2006 08:53:17 -0800, le*********@nat pro.com wrote:
I have two applications, both with a front-end and a back-end
I'd like to, if possible keep them seperate, but I also need to
integrate them
I know that from applicationA, I can open another ms-access session and
run applicationB

but I have to pass parameters from applicationA to applicationB and
back, so I thought, what if applicationA references applicationB (like
you would outlook to send emails)

then from applicationA, I can open an applicationB form and all would
work
the form opens, but as thought is was part of applicationA, so I need
to link all the applicationB back end tables into applicationA, not
hard

but now the queries that the applicationB form uses are accessible from
applicationA either, so I need to copy those to applicationA

so by the time I'm done, applicationA's front end has all the forms /
reports /etc
and applicationA's back end has all the tables

too bad, but it looks this won't work
I'm assuming that opening a second ms-access session and implementing a
parameter passing mechanism is too messy & prone to errors


Have a look at TSISOON at -
http://www.trigeminal.com/lang/1033/...asp?ItemID=8#8

You may be able to use it to do what you want.
Wayne Gillespie
Gosford NSW Australia
Mar 29 '06 #10

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

Similar topics

3
24022
by: Random Person | last post by:
Does anyone know how to use VBA to relink tables between two MS Access databases? We have two databases, one with VBA code and the other with data tables. The tables are referenced by linked tables in the database where the code resides. If we move the database with the data tables to a new directory, the links are no longer valid. I tried to update the links by changing the Connect property and refreshing: Set td = db.TableDefs(0)...
1
3080
by: Internet Arrow Limited | last post by:
Hi, I have an access application that uses the code: > Me!txtCreationDate = Format(Date, "Long Date") & " " & Format(Time, "hh:mm:ss") This works fine under access 2000 and access97 on Windows 98 but, when run on access97 under windows NT4, it crashes with an 'object not found' message.
1
1781
by: sparks | last post by:
At first I thought I could just delete the tables and import the tables. BUT my tables have relationships and I can not delete a table with relations. So that only deleted the non relational tables and imported them. Now I am trying to relink the exported tables. this is the code I am using Public Function ReLink() As Boolean On Error Resume Next Dim astrTableNames(1000) As String Dim iintTableNames As Integer
0
1712
by: DraguVaso | last post by:
Hi, I need to relink a whole bunch of Access-Linked-Tables and Pass-Through-Query's to another ODBC with VB.NET I foudn alreaddy how to relink the Tables, and I thought the query's woudl be likewise, but I just can't find how to do it. For the tables this works:
0
1167
by: cor | last post by:
In Access(97) I am able to have a cell to be a hyperlink referencing a spreadsheet, a cell, a column or a database's table or query. When I click on it It opens on such reference program. The content of such cell is not the content of the reference but a 'display text' value that I assign. Since the database does not see the referenced value it can not be used as a query value. My question is is there a way to have a visible cell...
10
2690
by: lesperancer | last post by:
you start with a small application in access97, then you have more modules and more... and you reach the point where tables like 'item' and 'employee' reach the limit and you know there's more indexes required for RI to come does creating a RI programatically instead of the relationship window still consume one of the 32 indexes ? does access2000 / 2003 allow more indexes per table ?
1
1834
by: IamKJVonly | last post by:
I have office 97 which includes access97 and have built many access97 databases and use VB4 as the front end. I have just gotten a new computer which has 1 gig of memory on it and when I try to install office 97 on it. everything installs ok execpt access97 won't run. I have since tried it on another machine and it seems to be a memory problem. If the computer's memory is more than 512megs. then access97 won't run. Is there a patch or...
2
3373
by: Roger | last post by:
I've got two tables in sql2005 which have an 'ntext' field when I linked the first table in access97 last week using an odbc data source the access-field type was 'memo' when I link the 2nd table today, it is linked as a text(255) field, ditto for the first table if I link it today if I link the 2nd table using access2003 (and the same odbc data source) it is linked as a memo field
1
2504
by: Coni | last post by:
Hello, I am following steps to implement security on access 2003 through distribution: I have split the database and I am trying to distribute it: I have copied the back end file and Security.mdw to a shared network directory. Map each user's PC to the shared network directory. However, I am stuck at this step which is to use the Linked Table Manager to relink the master copy of the database to the mapped drive.
0
8815
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8708
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8489
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8594
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6161
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5622
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2716
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 we have to send another system
1
1916
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1596
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.