472,956 Members | 2,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,956 software developers and data experts.

problem apparently with type conversion

Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)

Nov 23 '05 #1
8 1452

<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami
Nov 23 '05 #2

<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami
Nov 23 '05 #3
Sami Vaaraniemi wrote:
<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami


Hi Sami

Thanks for that. One snag with using the referenced types appears to be
that my methods for the class don't all appear in the way I need them.
Basically, I can of course expose them as webmethods, but I have lots
of simple methods that just perform simple calculations that I would
much rather handle 'locally' that via a web request each time.

Could you suggest how I might resolve this?

Thanks for your help.

AW

Nov 23 '05 #4
Sami Vaaraniemi wrote:
<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami


Hi Sami

Thanks for that. One snag with using the referenced types appears to be
that my methods for the class don't all appear in the way I need them.
Basically, I can of course expose them as webmethods, but I have lots
of simple methods that just perform simple calculations that I would
much rather handle 'locally' that via a web request each time.

Could you suggest how I might resolve this?

Thanks for your help.

AW

Nov 23 '05 #5


an*****@gmail.com wrote:
Sami Vaaraniemi wrote:
<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami


Hi Sami

Thanks for that. One snag with using the referenced types appears to be
that my methods for the class don't all appear in the way I need them.
Basically, I can of course expose them as webmethods, but I have lots
of simple methods that just perform simple calculations that I would
much rather handle 'locally' that via a web request each time.

Could you suggest how I might resolve this?

Thanks for your help.

AW


Forget that - I've solved that part of the problem by referencing a
common type defined in a common namespace. Found the dox on how to do
this at MSDN (eventually).

However, I seem to have a problem returning a value from my webservice
now: I created a 'local' copy of the webservice and it ran fine. When I
run it remote, it returns an empty list.

Any thoughts?

Here's a snippet:

<WebMethod()> Function getsomestuff() As Envelope
Return New Envelope(1, 2, 3, 4)
End Function

And in my generated Reference.vb:

<System.Web.Services.Protocols.SoapDocumentMethodA ttribute("http://server:13100/imsService/imsServices/getsomestuff",
RequestNamespace:="http://server:13100/imsService/imsServices",
ResponseNamespace:="http://server:13100/imsService/imsServices",
Use:=System.Web.Services.Description.SoapBindingUs e.Literal,
ParameterStyle:=System.Web.Services.Protocols.Soap ParameterStyle.Wrapped)>
_
Public Function getsomestuff() As Envelope
'Return New Envelope(1100, 2200, 3300, 4400)
Dim results() As Object = Me.Invoke("getsomestuff", New
Object(-1) {})
Return CType(results(0), Envelope)
End Function

'<remarks/>
Public Function Begingetsomestuff(ByVal callback As
System.AsyncCallback, ByVal asyncState As Object) As
System.IAsyncResult
Return Me.BeginInvoke("getsomestuff", New Object(-1) {},
callback, asyncState)
End Function

'<remarks/>
Public Function Endgetsomestuff(ByVal asyncResult As
System.IAsyncResult) As Envelope
Dim results() As Object = Me.EndInvoke(asyncResult)
Return CType(results(0), Envelope)
End Function

When that returns, I don't get my 1,2,3,4 as expected - I get 0,0,0,0
which is the default for a new envelope. If I uncomment the hard-coded
return above (1100, 2200 etc) then that works fine and I get those
numbers back as expected.

Any ideas why?

Thanks in advance - the finish line is in sight, but it's a struggle
all the way at the moment..

Thanks
AW

Nov 23 '05 #6


an*****@gmail.com wrote:
Sami Vaaraniemi wrote:
<an*****@gmail.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
Hi all, hope someone can help here, I'm really stuck. Reading and
googling like mad, to no avail so far...
Basically, my problem *seems* to boil down to type conversion:

Here's a sample web service I knocked up:

<WebMethod()> _
Public Function HelloWorld() As myType
Return New myType("Andrew", "too old")
End Function

End Class
Public Class myType
Private _name, _age As String
Property name() As String
Get
Return _name
End Get
Set(ByVal Value As String)
_name = Value
End Set
End Property

Property age() As String
Get
Return _age
End Get
Set(ByVal Value As String)
_age = Value
End Set
End Property
Sub New()
End Sub
Sub New(ByVal n As String, ByVal a As String)
_name = n
_age = a
End Sub
End Class
In my main application, I have a copy of the myType class, it's
identical, but when I do this:

Dim myLocalType As myType
Dim svc As mytest.Service1
myLocalType = svc.HelloWorld <<< error

it throws an error of "value of type 'imsws.mytest.mytype' cannot be
converted to 'imsws.mytype'". They are exactly the same type! The web
reference reference.vb shows:

<System.Xml.Serialization.XmlTypeAttribute([Namespace]:="http://tempuri.org/imsService/Service1")>
_
Public Class myType

'<remarks/>
Public name As String

'<remarks/>
Public age As String
End Class

I'm really stuck here - can you help? Thanks in advance if so :)

Cheers

AW (beginning to sweat a little..)


A copy of your type is created along with the Web Service proxy. This
generated copy is similar to but is *not* the same as the original type,
hence the compiler error. You are supposed to use the type that comes with
the proxy.

That said, you can edit the generated proxy code and remove the generated
type and have it reference the original type. This would work almost as if
the Web Service returned your original type, except that any private state
is lost. Also note that any changes to the proxy code are lost as soon as
you regenerate the proxy.

It's a lot less hassle to just use the types generated with the proxy. This
is the way it is intended anyway.

Regards,
Sami


Hi Sami

Thanks for that. One snag with using the referenced types appears to be
that my methods for the class don't all appear in the way I need them.
Basically, I can of course expose them as webmethods, but I have lots
of simple methods that just perform simple calculations that I would
much rather handle 'locally' that via a web request each time.

Could you suggest how I might resolve this?

Thanks for your help.

AW


Forget that - I've solved that part of the problem by referencing a
common type defined in a common namespace. Found the dox on how to do
this at MSDN (eventually).

However, I seem to have a problem returning a value from my webservice
now: I created a 'local' copy of the webservice and it ran fine. When I
run it remote, it returns an empty list.

Any thoughts?

Here's a snippet:

<WebMethod()> Function getsomestuff() As Envelope
Return New Envelope(1, 2, 3, 4)
End Function

And in my generated Reference.vb:

<System.Web.Services.Protocols.SoapDocumentMethodA ttribute("http://server:13100/imsService/imsServices/getsomestuff",
RequestNamespace:="http://server:13100/imsService/imsServices",
ResponseNamespace:="http://server:13100/imsService/imsServices",
Use:=System.Web.Services.Description.SoapBindingUs e.Literal,
ParameterStyle:=System.Web.Services.Protocols.Soap ParameterStyle.Wrapped)>
_
Public Function getsomestuff() As Envelope
'Return New Envelope(1100, 2200, 3300, 4400)
Dim results() As Object = Me.Invoke("getsomestuff", New
Object(-1) {})
Return CType(results(0), Envelope)
End Function

'<remarks/>
Public Function Begingetsomestuff(ByVal callback As
System.AsyncCallback, ByVal asyncState As Object) As
System.IAsyncResult
Return Me.BeginInvoke("getsomestuff", New Object(-1) {},
callback, asyncState)
End Function

'<remarks/>
Public Function Endgetsomestuff(ByVal asyncResult As
System.IAsyncResult) As Envelope
Dim results() As Object = Me.EndInvoke(asyncResult)
Return CType(results(0), Envelope)
End Function

When that returns, I don't get my 1,2,3,4 as expected - I get 0,0,0,0
which is the default for a new envelope. If I uncomment the hard-coded
return above (1100, 2200 etc) then that works fine and I get those
numbers back as expected.

Any ideas why?

Thanks in advance - the finish line is in sight, but it's a struggle
all the way at the moment..

Thanks
AW

Nov 23 '05 #7
Comments inline:

<an*****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...


an*****@gmail.com wrote:
Sami Vaaraniemi wrote:
> <an*****@gmail.com> wrote in message
> news:11**********************@g44g2000cwa.googlegr oups.com...

[snip]
Forget that - I've solved that part of the problem by referencing a
common type defined in a common namespace. Found the dox on how to do
this at MSDN (eventually).
Yes, this is what you can do, with a couple of caveats (see below).

However, I seem to have a problem returning a value from my webservice
now: I created a 'local' copy of the webservice and it ran fine. When I
run it remote, it returns an empty list.

Any thoughts?
Could it be that the data that is missing is private? Make sure that the
fields (properties or methods) are public in the class. Otherwise they won't
be included in XML serialization. This is what I meant earlier by saying
that 'private state is lost'.

When that returns, I don't get my 1,2,3,4 as expected - I get 0,0,0,0
which is the default for a new envelope. If I uncomment the hard-coded
return above (1100, 2200 etc) then that works fine and I get those
numbers back as expected.

Any ideas why?

Thanks in advance - the finish line is in sight, but it's a struggle
all the way at the moment..


It is admittably a bit of a hassle if you want to share types this way.

Regards,
Sami
Nov 23 '05 #8
Comments inline:

<an*****@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...


an*****@gmail.com wrote:
Sami Vaaraniemi wrote:
> <an*****@gmail.com> wrote in message
> news:11**********************@g44g2000cwa.googlegr oups.com...

[snip]
Forget that - I've solved that part of the problem by referencing a
common type defined in a common namespace. Found the dox on how to do
this at MSDN (eventually).
Yes, this is what you can do, with a couple of caveats (see below).

However, I seem to have a problem returning a value from my webservice
now: I created a 'local' copy of the webservice and it ran fine. When I
run it remote, it returns an empty list.

Any thoughts?
Could it be that the data that is missing is private? Make sure that the
fields (properties or methods) are public in the class. Otherwise they won't
be included in XML serialization. This is what I meant earlier by saying
that 'private state is lost'.

When that returns, I don't get my 1,2,3,4 as expected - I get 0,0,0,0
which is the default for a new envelope. If I uncomment the hard-coded
return above (1100, 2200 etc) then that works fine and I get those
numbers back as expected.

Any ideas why?

Thanks in advance - the finish line is in sight, but it's a struggle
all the way at the moment..


It is admittably a bit of a hassle if you want to share types this way.

Regards,
Sami
Nov 23 '05 #9

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

Similar topics

5
by: Venn Syii | last post by:
I do the following: ->Lock( 0, 0, (BYTE**)&pVertices, DUSAGE_WRITEONLY ) And get the following error: error C2664: 'Lock' : cannot convert parameter 3 from 'unsigned char ** ' to 'void ** '...
17
by: Jon Slaughter | last post by:
I'm having a little trouble understanding what the slicing problem is. In B.S.'s C++ PL3rdEd he says "Becayse the Employee copy functions do not know anything about Managers, only the Employee...
2
by: xmail123 | last post by:
In a web service I am using a SqlDataReader to retrieve the information to populate an ArrayList. public ArrayList ReadHistory(int ItemPK) { SDrdr = SDcmd.ExecuteReader(); ArrayList AL = new...
0
by: Lokkju | last post by:
I am pretty much lost here - I am trying to create a managed c++ wrapper for this dll, so that I can use it from c#/vb.net, however, it does not conform to any standard style of coding I have seen....
5
by: Chad | last post by:
I want to create a class which contains a date, integer and string property which all allow a NULL value. I don't want to store the values in an Object datatype. I prefer more strongly typed...
0
by: andyjgw | last post by:
Hi all, hope someone can help here, I'm really stuck. Reading and googling like mad, to no avail so far... Basically, my problem *seems* to boil down to type conversion: Here's a sample web...
2
by: ajikoe | last post by:
Hi, I tried to follow the example in swig homepage. I found error which I don't understand. I use bcc32, I already include directory where my python.h exist in bcc32.cfg. /* File : example.c...
39
by: Martin Jørgensen | last post by:
Hi, I'm relatively new with C-programming and even though I've read about pointers and arrays many times, it's a topic that is a little confusing to me - at least at this moment: ---- 1)...
19
by: jacob navia | last post by:
I posted this to comp.std.c, but may be of interest here too: Consider this: extern void abort(void); int main (void) { unsigned long long xx; unsigned long long *x = (unsigned long long *)...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.