473,947 Members | 34,050 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Retrieving info out of a MDB

After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary? How would I link the Data adapters and data sets I created to this form?
Dec 9 '06 #1
7 1150

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 9 '06 #2
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 10 '06 #3
If you put a breakpoint in the code in the Button1_Click routine,
does it stop there? Or put a debug.writeline statement or something?
To tell you if it ever gets there?

Is this .Net 2003 or .Net 2005?
Robin S.
-------------
"John" <so*****@micros oft.comwrote in message news:nx******** ****@newsfe12.l ga...
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 10 '06 #4
The breakpoints happen within the button1_click routine, but not within;

While dr.Read()

TextBox1.Text = dr(0)

TextBox2.Text = dr(1)

TextBox3.Text = dr(2)

End While

I guess thats why the data is'nt being written, but I dont know how to re-write it to make it work.

"RobinS" <Ro****@NoSpam. yah.nonewrote in message news:bv******** *************** *******@comcast .com...
If you put a breakpoint in the code in the Button1_Click routine,
does it stop there? Or put a debug.writeline statement or something?
To tell you if it ever gets there?

Is this .Net 2003 or .Net 2005?
Robin S.
-------------
"John" <so*****@micros oft.comwrote in message news:nx******** ****@newsfe12.l ga...
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 10 '06 #5
What if you try just doing *one* read and filling the textboxes,
rather than looping through the data reader?

Robin S.
------------------------
"John" <so*****@micros oft.comwrote in message news:9Z******** ******@newsfe12 .lga...
The breakpoints happen within the button1_click routine, but not within;

While dr.Read()

TextBox1.Text = dr(0)

TextBox2.Text = dr(1)

TextBox3.Text = dr(2)

End While

I guess thats why the data is'nt being written, but I dont know how to re-write it to make it work.

"RobinS" <Ro****@NoSpam. yah.nonewrote in message news:bv******** *************** *******@comcast .com...
If you put a breakpoint in the code in the Button1_Click routine,
does it stop there? Or put a debug.writeline statement or something?
To tell you if it ever gets there?

Is this .Net 2003 or .Net 2005?
Robin S.
-------------
"John" <so*****@micros oft.comwrote in message news:nx******** ****@newsfe12.l ga...
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 10 '06 #6
John,

Wrote a complete solution in the other newsgroup you have posted too.

Cor
"John" <so*****@micros oft.comschreef in bericht news:9Z******** ******@newsfe12 .lga...
The breakpoints happen within the button1_click routine, but not within;

While dr.Read()

TextBox1.Text = dr(0)

TextBox2.Text = dr(1)

TextBox3.Text = dr(2)

End While

I guess thats why the data is'nt being written, but I dont know how to re-write it to make it work.

"RobinS" <Ro****@NoSpam. yah.nonewrote in message news:bv******** *************** *******@comcast .com...
If you put a breakpoint in the code in the Button1_Click routine,
does it stop there? Or put a debug.writeline statement or something?
To tell you if it ever gets there?

Is this .Net 2003 or .Net 2005?
Robin S.
-------------
"John" <so*****@micros oft.comwrote in message news:nx******** ****@newsfe12.l ga...
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 10 '06 #7
thank you
"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message news:et******** ********@TK2MSF TNGP04.phx.gbl. ..
John,

Wrote a complete solution in the other newsgroup you have posted too.

Cor
"John" <so*****@micros oft.comschreef in bericht news:9Z******** ******@newsfe12 .lga...
The breakpoints happen within the button1_click routine, but not within;

While dr.Read()

TextBox1.Text = dr(0)

TextBox2.Text = dr(1)

TextBox3.Text = dr(2)

End While

I guess thats why the data is'nt being written, but I dont know how to re-write it to make it work.

"RobinS" <Ro****@NoSpam. yah.nonewrote in message news:bv******** *************** *******@comcast .com...
If you put a breakpoint in the code in the Button1_Click routine,
does it stop there? Or put a debug.writeline statement or something?
To tell you if it ever gets there?

Is this .Net 2003 or .Net 2005?
Robin S.
-------------
"John" <so*****@micros oft.comwrote in message news:nx******** ****@newsfe12.l ga...
When I click on the button, nothing happens, I dont know what is wrong
"Scott M." <s-***@nospam.nosp amwrote in message news:e1******** ********@TK2MSF TNGP02.phx.gbl. ..

"John" <so*****@micros oft.comwrote in message news:jk******** *****@newsfe09. lga...
After reading the tutorial from http://www.startvbdotnet.com/ado/msaccess.aspx I wrote this code in an attempt to get information from my MDB file called FillMe. The only table in that Access file is called MainTable;

Imports System.Data.Ole Db

Public Class Form2
Inherits System.Windows. Forms.Form

Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader

'WINDOWS GENERATED

Private Sub Form2_Load(ByVa l sender As System.Object, ByVal e As System.EventArg s) Handles MyBase.Load
OleDbDataAdapte r1.Fill(DataSet 11)
End Sub
Private Sub exitbutton_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles exitbutton.Clic k
Me.Close()
End Sub
Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
Try
cn = New OleDbConnection ("Provider=Micr osoft.Jet.OLEDB .4.0; Data Source=C:\Docum ents and Settings\Name\D esktop\FillMe.m db;")
'provider to be used when working with access database
cn.Open()
cmd = New OleDbCommand("s elect * from MainTable", cn)
dr = cmd.ExecuteRead er
While dr.Read()
TextBox1.Text = dr(0)
TextBox2.Text = dr(1)
TextBox3.Text = dr(2)
'loading data into TextBoxes by column index
End While
Catch
End Try
dr.Close()
cn.Close()
End Sub
End Class

Is filling the data set when the form loads neccisary?

You've got to fill it sometime, so why not Page_Load?

How would I link the Data adapters and data sets I created to this form?

OleDbDataAdapte r1.Fill(DataSet 11)

Dec 12 '06 #8

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

Similar topics

3
4351
by: Dmitry Shaporenkov | last post by:
Hi all, I'd like to programmatically retrieve the directory of .NET framework binary tools (csc.exe, RegAsm.exe). What is the right way to do this? I can get InstallRoot via the Registry and append System.Environment.Version to form the path, but is there a shorter and nicer way? Thanks in advance.
8
4510
by: Steve | last post by:
Can anyone tell me the preferred method for writing and retrieving persistent information using .Net. Specifically, I am referring to information that you used to see in registry keys or .ini files like the name of a database or connection string. I have read several articles indicating that .config files are now used, but I am confused because they are read- only. If I want to write information from within the application (When a...
2
2305
by: Sagaert Johan | last post by:
Hi I have set the columreorder to true Is there a way to get/set the current columnorder, so i can restore the order from a saved setting ? Johan
0
1274
by: Kurt Ng | last post by:
Hi, y'all. I am working on retrieving file version info on a third party dll. I have used the FileVersionInfo class to retrieve all of the standard version information already such as FileMajorPart, FileMinorPart, etc. However, the one attribute that is most important to me right now is the custom one that the dll creator had added. This attribute appears in the "Other version information" listbox when I show the file properties in...
13
3980
by: RHPT | last post by:
I am wanting to capture the XML posted by an InfoPath form with .NET, but I cannot figure out how to capture the XML stream sent back by the InfoPath form. With Classic ASP, I could just create an MSXML object then load the XML with a simple objXML.Load(Request). This would give me the XML stream, which I could then manipulate. However, using System.Xml, this is not possible - not that I have found, anyway. The InfoPath documentation...
1
3906
by: tangus via DotNetMonster.com | last post by:
Hello all, I'm really struggling with getting some Active Directory code to work in ASP.NET. Can you please provide assistance? I am executing the following code: Dim enTry As DirectoryEntry = New DirectoryEntry("LDAP://domain") Dim mySearcher As New DirectorySearcher(enTry) Dim resEnt As SearchResult mySearcher.Filter = ("(objectClass=*)") mySearcher.SearchScope = SearchScope.Subtree
5
1991
by: Sanjay Pais | last post by:
I have a table with over 1.3 million rows. I am retrieving only 20 at a time using the with - over clauses In query analyser, the data is retrieved in under a second. When retrieving using the data adaptor.fill or datareader to retrieve the data it takes over 24 seconds. public System.Data.SqlClient.SqlDataReader List1(int PageIndex, int PageSize, string ItemName, string UserIDs, DateTime DateStart, DateTime DateEnd, int status,...
2
1130
by: Michel Vanderbeke | last post by:
Hello, When you get an error in a VB.NET program, is it possible to know what is the origin of the error. I assume it can be VB.NET, the framework, a database engine, the database itself (Access, SQL Server, ...). How can you know which source has thrown the exception? Some error messages are in English, some in my own language. Many thanks and greetings,
4
2468
by: kaisersose1995 | last post by:
Hi, I'm trying to get Novell Netware information using vba into my access database and have no idea how to progress. Basically when i right click the properties on my computer the free space of a network drive is showing as 30Gb. When i click on the NetWare Info tab it is showing as 15Gb. Retrieving the 30Gb value from windows was relativley easy, but it is the "true" free space of 15Gb that i need.
3
2145
by: dmorand | last post by:
I have a page where I'm using ajax to retrieve some employee info when a user clicks a "Retrieve Employee Info" button. The issue I'm having is that when the user updates the employee info, saves the data, then hits the retrieve employee info button again the data being retrieved is the original data, not the updated data. This only occurs in any IE browser, firefox works fine. In firefox everytime I hit the retrieve employee info button,...
0
10162
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
11156
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
11346
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
9886
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8254
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
6113
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6331
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4945
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
3
3542
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.