472,982 Members | 2,320 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,982 software developers and data experts.

Treeview in .Net 2003

L.M
Hello,

I knew how to use the treeview under VB6. After migrating to .NET, well, I'm
lost.
I try to add a new node, either to the same level or as a child to a
selected node in the treeview.
However, either it only add it to the root level or it only add it on level
below, doesn't matter what I select. And in some case, I just get an
exception.

Does anyone have a short example of how to add a new node (same level/child)
to an existing treeview based on a selected node ?

I'm pretty sure I mess up with the index, but I'm really lost.

Here is what I do to add same level:

Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView, ByVal
ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As String,
ByVal NIndex As Integer, ByVal NTag As String)
' Add a node to a treeview. node will be added before the selection index.
' In : treeview, imgindex,selimgindex,ntext,index,tag
' Out : -
' Ret : -
' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = ImgIndex
oNode.SelectedImageIndex = SelImgIndex
oNode.Text = NText
oNode.Tag = NTag
TreeviewRef.Nodes.Insert(NIndex, oNode)
And what I do for child level:

Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
ByVal NIndex As Integer, ByVal NTag As String)
' Add a children a node to a treeview under the current selection.
' In : treeview, index, tag
' Out : -
' Ret : -
' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")

Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = 0
oNode.SelectedImageIndex = 0
oNode.Text = "toto"
oNode.Tag = NTag
TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
TreeviewRef.Nodes(NIndex).Expand()
End Sub
Thanks.

Nov 21 '05 #1
6 4867
Adding a new node to the selected node is done something like this:

' Create the new node

Dim myNewNode as new TreeNode
....
....

' Get the currently selected node

Dim theSelectedNode as TreeNode = myTree.SelectedNode

If not theSelectedNode is nothing then

theSelectedNode.Nodes.Add ( myNewNode)

Else

' Error, attempting to add a new node when no node has been selected.

End If

"L.M" <nospam> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
Hello,

I knew how to use the treeview under VB6. After migrating to .NET, well,
I'm
lost.
I try to add a new node, either to the same level or as a child to a
selected node in the treeview.
However, either it only add it to the root level or it only add it on
level
below, doesn't matter what I select. And in some case, I just get an
exception.

Does anyone have a short example of how to add a new node (same
level/child)
to an existing treeview based on a selected node ?

I'm pretty sure I mess up with the index, but I'm really lost.

Here is what I do to add same level:

Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView, ByVal
ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As String,
ByVal NIndex As Integer, ByVal NTag As String)
' Add a node to a treeview. node will be added before the selection index.
' In : treeview, imgindex,selimgindex,ntext,index,tag
' Out : -
' Ret : -
' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = ImgIndex
oNode.SelectedImageIndex = SelImgIndex
oNode.Text = NText
oNode.Tag = NTag
TreeviewRef.Nodes.Insert(NIndex, oNode)
And what I do for child level:

Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
ByVal NIndex As Integer, ByVal NTag As String)
' Add a children a node to a treeview under the current selection.
' In : treeview, index, tag
' Out : -
' Ret : -
' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")

Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = 0
oNode.SelectedImageIndex = 0
oNode.Text = "toto"
oNode.Tag = NTag
TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
TreeviewRef.Nodes(NIndex).Expand()
End Sub
Thanks.

Nov 21 '05 #2
L.M
Hello,

That make it, thanks a lot. It seems that the Index in the .Net treeview is
based on each node collection and not on the whole treeview content....
Might be a good thing as soon as you get used to it....

Next step is the drap and drop, it works fine. I just have the mouse pointer
instead of the node text+icon as in VB6.

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Adding a new node to the selected node is done something like this:

' Create the new node

Dim myNewNode as new TreeNode
...
...

' Get the currently selected node

Dim theSelectedNode as TreeNode = myTree.SelectedNode

If not theSelectedNode is nothing then

theSelectedNode.Nodes.Add ( myNewNode)

Else

' Error, attempting to add a new node when no node has been selected.

End If

"L.M" <nospam> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
Hello,

I knew how to use the treeview under VB6. After migrating to .NET, well,
I'm
lost.
I try to add a new node, either to the same level or as a child to a
selected node in the treeview.
However, either it only add it to the root level or it only add it on
level
below, doesn't matter what I select. And in some case, I just get an
exception.

Does anyone have a short example of how to add a new node (same
level/child)
to an existing treeview based on a selected node ?

I'm pretty sure I mess up with the index, but I'm really lost.

Here is what I do to add same level:

Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView, ByVal
ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As String, ByVal NIndex As Integer, ByVal NTag As String)
' Add a node to a treeview. node will be added before the selection index. ' In : treeview, imgindex,selimgindex,ntext,index,tag
' Out : -
' Ret : -
' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = ImgIndex
oNode.SelectedImageIndex = SelImgIndex
oNode.Text = NText
oNode.Tag = NTag
TreeviewRef.Nodes.Insert(NIndex, oNode)
And what I do for child level:

Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
ByVal NIndex As Integer, ByVal NTag As String)
' Add a children a node to a treeview under the current selection.
' In : treeview, index, tag
' Out : -
' Ret : -
' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")

Dim oNode As New System.Windows.Forms.TreeNode
oNode.ImageIndex = 0
oNode.SelectedImageIndex = 0
oNode.Text = "toto"
oNode.Tag = NTag
TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
TreeviewRef.Nodes(NIndex).Expand()
End Sub
Thanks.


Nov 21 '05 #3
Item drag and drag drop.....
Private Sub TreeView_ItemDrag(ByVal sender As Object, ByVal e As
System.Windows.Forms.ItemDragEventArgs) Handles TreeView.ItemDrag

If e.Item Is Nothing Then
Exit Sub
End If

' Start the drag operation

DoDragDrop(...whatever I'm dragging...maybe a tree node (ie.
SelectedNode), DragDropEffects.Move Or DragDropEffects.Copy)

End Sub

Private Sub TreeView_DragDrop(ByVal sender As Object, ByVal e As
System.Windows.Forms.DragEventArgs) Handles TreeView.DragDrop

Dim mousePos As Point

mousePos = TreeView.PointToClient(New Point(e.X, e.Y))

Dim nodeOver As TreeNode = TreeView.GetNodeAt(mousePos)

If nodeOver Is Nothing Then

' not dropping on a tree node...

Else

' dropping onto "node over"

End If

End Sub

"L.M" <nospam> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello,

That make it, thanks a lot. It seems that the Index in the .Net treeview
is
based on each node collection and not on the whole treeview content....
Might be a good thing as soon as you get used to it....

Next step is the drap and drop, it works fine. I just have the mouse
pointer
instead of the node text+icon as in VB6.

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Adding a new node to the selected node is done something like this:

' Create the new node

Dim myNewNode as new TreeNode
...
...

' Get the currently selected node

Dim theSelectedNode as TreeNode = myTree.SelectedNode

If not theSelectedNode is nothing then

theSelectedNode.Nodes.Add ( myNewNode)

Else

' Error, attempting to add a new node when no node has been selected.

End If

"L.M" <nospam> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
> Hello,
>
> I knew how to use the treeview under VB6. After migrating to .NET,
> well,
> I'm
> lost.
> I try to add a new node, either to the same level or as a child to a
> selected node in the treeview.
> However, either it only add it to the root level or it only add it on
> level
> below, doesn't matter what I select. And in some case, I just get an
> exception.
>
> Does anyone have a short example of how to add a new node (same
> level/child)
> to an existing treeview based on a selected node ?
>
> I'm pretty sure I mess up with the index, but I'm really lost.
>
> Here is what I do to add same level:
>
> Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
> ByVal
> ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As String, > ByVal NIndex As Integer, ByVal NTag As String)
> ' Add a node to a treeview. node will be added before the selection index. > ' In : treeview, imgindex,selimgindex,ntext,index,tag
> ' Out : -
> ' Ret : -
> ' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
> Dim oNode As New System.Windows.Forms.TreeNode
> oNode.ImageIndex = ImgIndex
> oNode.SelectedImageIndex = SelImgIndex
> oNode.Text = NText
> oNode.Tag = NTag
> TreeviewRef.Nodes.Insert(NIndex, oNode)
>
>
> And what I do for child level:
>
> Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
> ByVal NIndex As Integer, ByVal NTag As String)
> ' Add a children a node to a treeview under the current selection.
> ' In : treeview, index, tag
> ' Out : -
> ' Ret : -
> ' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")
>
> Dim oNode As New System.Windows.Forms.TreeNode
> oNode.ImageIndex = 0
> oNode.SelectedImageIndex = 0
> oNode.Text = "toto"
> oNode.Tag = NTag
> TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
> TreeviewRef.Nodes(NIndex).Expand()
> End Sub
>
>
> Thanks.
>
>
>



Nov 21 '05 #4
L.M
Thanks, that's what I had, in a less nice way, but the same. However, is
there a way to get the icone/text under the mouse as it was in VB6 (or in
windows explorer when you drap/drop file/folder) ?
The funtion I was using in VB6 doesn't seems to exist anymore in .Net.

L.M
"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Item drag and drag drop.....
Private Sub TreeView_ItemDrag(ByVal sender As Object, ByVal e As
System.Windows.Forms.ItemDragEventArgs) Handles TreeView.ItemDrag

If e.Item Is Nothing Then
Exit Sub
End If

' Start the drag operation

DoDragDrop(...whatever I'm dragging...maybe a tree node (ie.
SelectedNode), DragDropEffects.Move Or DragDropEffects.Copy)

End Sub

Private Sub TreeView_DragDrop(ByVal sender As Object, ByVal e As
System.Windows.Forms.DragEventArgs) Handles TreeView.DragDrop

Dim mousePos As Point

mousePos = TreeView.PointToClient(New Point(e.X, e.Y))

Dim nodeOver As TreeNode = TreeView.GetNodeAt(mousePos)

If nodeOver Is Nothing Then

' not dropping on a tree node...

Else

' dropping onto "node over"

End If

End Sub

"L.M" <nospam> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello,

That make it, thanks a lot. It seems that the Index in the .Net treeview
is
based on each node collection and not on the whole treeview content....
Might be a good thing as soon as you get used to it....

Next step is the drap and drop, it works fine. I just have the mouse
pointer
instead of the node text+icon as in VB6.

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Adding a new node to the selected node is done something like this:

' Create the new node

Dim myNewNode as new TreeNode
...
...

' Get the currently selected node

Dim theSelectedNode as TreeNode = myTree.SelectedNode

If not theSelectedNode is nothing then

theSelectedNode.Nodes.Add ( myNewNode)

Else

' Error, attempting to add a new node when no node has been selected.
End If

"L.M" <nospam> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
> Hello,
>
> I knew how to use the treeview under VB6. After migrating to .NET,
> well,
> I'm
> lost.
> I try to add a new node, either to the same level or as a child to a
> selected node in the treeview.
> However, either it only add it to the root level or it only add it on
> level
> below, doesn't matter what I select. And in some case, I just get an
> exception.
>
> Does anyone have a short example of how to add a new node (same
> level/child)
> to an existing treeview based on a selected node ?
>
> I'm pretty sure I mess up with the index, but I'm really lost.
>
> Here is what I do to add same level:
>
> Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
> ByVal
> ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As

String,
> ByVal NIndex As Integer, ByVal NTag As String)
> ' Add a node to a treeview. node will be added before the selection

index.
> ' In : treeview, imgindex,selimgindex,ntext,index,tag
> ' Out : -
> ' Ret : -
> ' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
> Dim oNode As New System.Windows.Forms.TreeNode
> oNode.ImageIndex = ImgIndex
> oNode.SelectedImageIndex = SelImgIndex
> oNode.Text = NText
> oNode.Tag = NTag
> TreeviewRef.Nodes.Insert(NIndex, oNode)
>
>
> And what I do for child level:
>
> Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView, > ByVal NIndex As Integer, ByVal NTag As String)
> ' Add a children a node to a treeview under the current selection.
> ' In : treeview, index, tag
> ' Out : -
> ' Ret : -
> ' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")
>
> Dim oNode As New System.Windows.Forms.TreeNode
> oNode.ImageIndex = 0
> oNode.SelectedImageIndex = 0
> oNode.Text = "toto"
> oNode.Tag = NTag
> TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
> TreeviewRef.Nodes(NIndex).Expand()
> End Sub
>
>
> Thanks.
>
>
>



Nov 21 '05 #5
Not sure what you mean by Icon/Text under the mouse. When dragging from
explorer, you will have a String() array (I expect) in the Data property.

ie. :

' Determine if the drag drop is one of our supported drop formats

If e.Data.GetDataPresent(DataFormats.FileDrop) Then

' Get the files...

Dim theFiles As String() =
DirectCast(e.Data.GetData(DataFormats.FileDrop), String())

.....

End If

End If

"L.M" <nospam> wrote in message
news:eT**************@TK2MSFTNGP15.phx.gbl...
Thanks, that's what I had, in a less nice way, but the same. However, is
there a way to get the icone/text under the mouse as it was in VB6 (or in
windows explorer when you drap/drop file/folder) ?
The funtion I was using in VB6 doesn't seems to exist anymore in .Net.

L.M
"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Item drag and drag drop.....
Private Sub TreeView_ItemDrag(ByVal sender As Object, ByVal e As
System.Windows.Forms.ItemDragEventArgs) Handles TreeView.ItemDrag

If e.Item Is Nothing Then
Exit Sub
End If

' Start the drag operation

DoDragDrop(...whatever I'm dragging...maybe a tree node (ie.
SelectedNode), DragDropEffects.Move Or DragDropEffects.Copy)

End Sub

Private Sub TreeView_DragDrop(ByVal sender As Object, ByVal e As
System.Windows.Forms.DragEventArgs) Handles TreeView.DragDrop

Dim mousePos As Point

mousePos = TreeView.PointToClient(New Point(e.X, e.Y))

Dim nodeOver As TreeNode = TreeView.GetNodeAt(mousePos)

If nodeOver Is Nothing Then

' not dropping on a tree node...

Else

' dropping onto "node over"

End If

End Sub

"L.M" <nospam> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
> Hello,
>
> That make it, thanks a lot. It seems that the Index in the .Net
> treeview
> is
> based on each node collection and not on the whole treeview content....
> Might be a good thing as soon as you get used to it....
>
> Next step is the drap and drop, it works fine. I just have the mouse
> pointer
> instead of the node text+icon as in VB6.
>
>
>
> "Robin Tucker" <id*************************@reallyidont.com> wrote in
> message news:cj*******************@news.demon.co.uk...
>> Adding a new node to the selected node is done something like this:
>>
>> ' Create the new node
>>
>> Dim myNewNode as new TreeNode
>> ...
>> ...
>>
>> ' Get the currently selected node
>>
>> Dim theSelectedNode as TreeNode = myTree.SelectedNode
>>
>> If not theSelectedNode is nothing then
>>
>> theSelectedNode.Nodes.Add ( myNewNode)
>>
>> Else
>>
>> ' Error, attempting to add a new node when no node has been selected. >>
>> End If
>>
>> "L.M" <nospam> wrote in message
>> news:OI**************@TK2MSFTNGP15.phx.gbl...
>> > Hello,
>> >
>> > I knew how to use the treeview under VB6. After migrating to .NET,
>> > well,
>> > I'm
>> > lost.
>> > I try to add a new node, either to the same level or as a child to a
>> > selected node in the treeview.
>> > However, either it only add it to the root level or it only add it
>> > on
>> > level
>> > below, doesn't matter what I select. And in some case, I just get an
>> > exception.
>> >
>> > Does anyone have a short example of how to add a new node (same
>> > level/child)
>> > to an existing treeview based on a selected node ?
>> >
>> > I'm pretty sure I mess up with the index, but I'm really lost.
>> >
>> > Here is what I do to add same level:
>> >
>> > Sub InsertNode(ByRef TreeviewRef As System.Windows.Forms.TreeView,
>> > ByVal
>> > ImgIndex As Integer, ByVal SelImgIndex As Integer, ByVal NText As
> String,
>> > ByVal NIndex As Integer, ByVal NTag As String)
>> > ' Add a node to a treeview. node will be added before the selection
> index.
>> > ' In : treeview, imgindex,selimgindex,ntext,index,tag
>> > ' Out : -
>> > ' Ret : -
>> > ' Call ex: InsertNode(MainTreeView, 0, 0, "Root",675,"tag")
>> > Dim oNode As New System.Windows.Forms.TreeNode
>> > oNode.ImageIndex = ImgIndex
>> > oNode.SelectedImageIndex = SelImgIndex
>> > oNode.Text = NText
>> > oNode.Tag = NTag
>> > TreeviewRef.Nodes.Insert(NIndex, oNode)
>> >
>> >
>> > And what I do for child level:
>> >
>> > Sub AddChildrenNode(ByRef TreeviewRef As System.Windows.Forms.TreeView, >> > ByVal NIndex As Integer, ByVal NTag As String)
>> > ' Add a children a node to a treeview under the current selection.
>> > ' In : treeview, index, tag
>> > ' Out : -
>> > ' Ret : -
>> > ' Call ex: AddChildrenNode(MainTreeView, 675, "xxx")
>> >
>> > Dim oNode As New System.Windows.Forms.TreeNode
>> > oNode.ImageIndex = 0
>> > oNode.SelectedImageIndex = 0
>> > oNode.Text = "toto"
>> > oNode.Tag = NTag
>> > TreeviewRef.Nodes(NIndex).Nodes.Add(oNode)
>> > TreeviewRef.Nodes(NIndex).Expand()
>> > End Sub
>> >
>> >
>> > Thanks.
>> >
>> >
>> >
>>
>>
>
>



Nov 21 '05 #6
L.M
I mean an equivalent to :
TreeView1.DragIcon = TreeView1.SelectedItem.CreateDragImage
from VB6 but in VB.Net

"Robin Tucker" <id*************************@reallyidont.com> wrote in
message news:cj*******************@news.demon.co.uk...
Not sure what you mean by Icon/Text under the mouse. When dragging from
explorer, you will have a String() array (I expect) in the Data property.

ie. :

' Determine if the drag drop is one of our supported drop formats

If e.Data.GetDataPresent(DataFormats.FileDrop) Then

' Get the files...

Dim theFiles As String() =
DirectCast(e.Data.GetData(DataFormats.FileDrop), String())

.....

End If

End If

Nov 21 '05 #7

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

Similar topics

3
by: Steve | last post by:
Visual Studio 2003 .NET / C# I have a treeview object on a form which acts as the main menu controller for my application. the treeview is always in sight, and the form it is on acts as the...
6
by: Brian Smith | last post by:
Is there a way to avoid the default action of TreeNode expansion/contraction caused by double click? I can add an event handler to pop up my properties dialog on double click, but it has the...
3
by: Soul | last post by:
Hi, I am learning C# at the moment. I am trying to develop a simple program that will get data from a MS Access database into a dataSet. The result of dataSet should be something like: Year ...
1
by: Rasmus | last post by:
I need to grab focus to a specific node i my treeview when I click on my listbox. Here's the code that differs between the different event i the listBox: private void...
1
by: Shailendra Batham | last post by:
Hey guys I am using the IE Web controls treeview control. I popuplate the treeview with XML and it looks fine........... my question is how can I add a right click popup menu to the treeview...
6
by: Chris Marsh | last post by:
I have setup a treeview on my XP desktop and it displays data yet on the Windows 2003 Server it will not display the treeview. Does anyone have a clue on how to make this function on 2003 Server?...
14
by: Evan Kontos | last post by:
I am trying to implement a Treeview w/an XML file and I even copied and pasted examples from MSDN but can't get them to work. Any suggestions welcome. XML File <TREENODES> <TREENODE...
5
by: david | last post by:
I do not know if there is a treeView control for web form in .NET 1.1. I know there is IE Webcontrol package which has the treeview control for ..net 1.0. I have tested it in .net 1.1 before. It...
2
by: casManG | last post by:
I am working on a small project that uses the treeview control in .net 2003. I have a tree view that I am sending to a sub in order to iterate through the nodes. Public Sub test (ByVal...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
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
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
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
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
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...
4
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.