473,767 Members | 1,735 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem calling a Sub in another form

Hello.

I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?

Thanks
Sep 21 '06 #1
20 4809
Please post the code that calls the sub.

Thanks,

Seth Rowe

vitorjol wrote:
Hello.

I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?

Thanks
Sep 21 '06 #2
Here is the code:

' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub

"rowe_newsgroup s" wrote:
Please post the code that calls the sub.

Thanks,

Seth Rowe

vitorjol wrote:
Hello.

I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?

Thanks

Sep 21 '06 #3
Looks like it should work, when you step through the code where does
the exception occur? If the error occurs in somewhere other than this
sub please post that code too. Also what does "soumavez" mean?

Thanks,

Seth Rowe
vitorjol wrote:
Here is the code:

' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub

"rowe_newsgroup s" wrote:
Please post the code that calls the sub.

Thanks,

Seth Rowe

vitorjol wrote:
Hello.
>
I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?
>
Thanks
Sep 21 '06 #4
ok....the name "soumavez" its a name that i called to the Sub...End Sub.

i put here the code of Sub(its about the Mapguide ActiveX to show a map in
VB). I'll send there to Sub in the other form the id of a polygon on the map,
and then the Sub localize the polygon and zoom the place!!!

Code of the Sub "soumavez" in the Form1:

Public Sub soumavez(ByVal varin As Integer)
' --->"varin" its the var that i send from Form2!!!
' --->"mgmap" its the name of the control (mapguide activex)
Try
Dim pubmapsel As MGMapControl.MG Selection
Dim pubvar2 As MGMapControl.MG MapLayer
Dim pubmapobjectos As MGMapControl.MG Collection
Dim pubmapobj As MGMapControl.MG MapObject
pubmapsel = mgmap.getSelect ion()
pubvar2 = mgmap.getMapLay er("SIG")
pubmapobjectos = mgmap.createObj ect("MGCollecti on")
pubmapobj = pubvar2.getMapO bject(varin)
pubmapobjectos. add(pubmapobj)
pubmapsel.addOb jectsEx(pubmapo bjectos, False)
mgmap.zoomSelec ted()
mgmap.zoomScale (mgmap.getLat() , mgmap.getLon(), 1500)
mgmap.refresh()
Catch ex As Exception
MessageBox.Show (ex.Message, "Erro", MessageBoxButto ns.OK,
MessageBoxIcon. Error)
End Try
End Sub
"rowe_newsgroup s" wrote:
Looks like it should work, when you step through the code where does
the exception occur? If the error occurs in somewhere other than this
sub please post that code too. Also what does "soumavez" mean?

Thanks,

Seth Rowe
vitorjol wrote:
Here is the code:

' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub

"rowe_newsgroup s" wrote:
Please post the code that calls the sub.
>
Thanks,
>
Seth Rowe
>
vitorjol wrote:
Hello.

I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?

Thanks
>
>

Sep 21 '06 #5
ok....the name "soumavez" its a name that i called to the Sub...End Sub.

It looked like a foreign langauge to me (is it?), so I was just making
sure it was a protected keyword in a foreign language edition of visual
studio.

Anyways, I have to apologize - my "visual" debugging skills must be
lacking today, as I still don't see anything obviously wrong. Which
line of the code raises the exception?

Thanks,

Seth Rowe
vitorjol wrote:
>
i put here the code of Sub(its about the Mapguide ActiveX to show a map in
VB). I'll send there to Sub in the other form the id of a polygon on the map,
and then the Sub localize the polygon and zoom the place!!!

Code of the Sub "soumavez" in the Form1:

Public Sub soumavez(ByVal varin As Integer)
' --->"varin" its the var that i send from Form2!!!
' --->"mgmap" its the name of the control (mapguide activex)
Try
Dim pubmapsel As MGMapControl.MG Selection
Dim pubvar2 As MGMapControl.MG MapLayer
Dim pubmapobjectos As MGMapControl.MG Collection
Dim pubmapobj As MGMapControl.MG MapObject
pubmapsel = mgmap.getSelect ion()
pubvar2 = mgmap.getMapLay er("SIG")
pubmapobjectos = mgmap.createObj ect("MGCollecti on")
pubmapobj = pubvar2.getMapO bject(varin)
pubmapobjectos. add(pubmapobj)
pubmapsel.addOb jectsEx(pubmapo bjectos, False)
mgmap.zoomSelec ted()
mgmap.zoomScale (mgmap.getLat() , mgmap.getLon(), 1500)
mgmap.refresh()
Catch ex As Exception
MessageBox.Show (ex.Message, "Erro", MessageBoxButto ns.OK,
MessageBoxIcon. Error)
End Try
End Sub
"rowe_newsgroup s" wrote:
Looks like it should work, when you step through the code where does
the exception occur? If the error occurs in somewhere other than this
sub please post that code too. Also what does "soumavez" mean?

Thanks,

Seth Rowe
vitorjol wrote:
Here is the code:
>
' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub
>
"rowe_newsgroup s" wrote:
>
Please post the code that calls the sub.

Thanks,

Seth Rowe

vitorjol wrote:
Hello.
>
I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?
>
Thanks
Sep 21 '06 #6
Yes....im portuguese....b ut I love America!!!!!

i forgot to tell U the line with the problem!!!Sorry

So, the problem "object reference not set to an instance of an object"
occurs in the line >>pubmapobj = pubvar2.getMapO bject(varin)

Thanks
"rowe_newsgroup s" wrote:
ok....the name "soumavez" its a name that i called to the Sub...End Sub.

It looked like a foreign langauge to me (is it?), so I was just making
sure it was a protected keyword in a foreign language edition of visual
studio.

Anyways, I have to apologize - my "visual" debugging skills must be
lacking today, as I still don't see anything obviously wrong. Which
line of the code raises the exception?

Thanks,

Seth Rowe
vitorjol wrote:

i put here the code of Sub(its about the Mapguide ActiveX to show a map in
VB). I'll send there to Sub in the other form the id of a polygon on the map,
and then the Sub localize the polygon and zoom the place!!!

Code of the Sub "soumavez" in the Form1:

Public Sub soumavez(ByVal varin As Integer)
' --->"varin" its the var that i send from Form2!!!
' --->"mgmap" its the name of the control (mapguide activex)
Try
Dim pubmapsel As MGMapControl.MG Selection
Dim pubvar2 As MGMapControl.MG MapLayer
Dim pubmapobjectos As MGMapControl.MG Collection
Dim pubmapobj As MGMapControl.MG MapObject
pubmapsel = mgmap.getSelect ion()
pubvar2 = mgmap.getMapLay er("SIG")
pubmapobjectos = mgmap.createObj ect("MGCollecti on")
pubmapobj = pubvar2.getMapO bject(varin)
pubmapobjectos. add(pubmapobj)
pubmapsel.addOb jectsEx(pubmapo bjectos, False)
mgmap.zoomSelec ted()
mgmap.zoomScale (mgmap.getLat() , mgmap.getLon(), 1500)
mgmap.refresh()
Catch ex As Exception
MessageBox.Show (ex.Message, "Erro", MessageBoxButto ns.OK,
MessageBoxIcon. Error)
End Try
End Sub
"rowe_newsgroup s" wrote:
Looks like it should work, when you step through the code where does
the exception occur? If the error occurs in somewhere other than this
sub please post that code too. Also what does "soumavez" mean?
>
Thanks,
>
Seth Rowe
>
>
vitorjol wrote:
Here is the code:

' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub

"rowe_newsgroup s" wrote:

Please post the code that calls the sub.
>
Thanks,
>
Seth Rowe
>
vitorjol wrote:
Hello.

I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?

Thanks
>
>
>
>

Sep 21 '06 #7
Hmm. The "object reference not set to an instance of an object"
exception is raised when you try to use an object that doesn't exist
yet, like if you left out the New keyword. However, everything looks
alright to me. The only thing I would try (outside of praying that
someone else happens on this thread and sees what we're missing!) is to
change this line:
>pubmapobj = pubvar2.getMapO bject(varin)
To this:

pubmapobj = MGMapControl.MG MapLayer.getMap Object(varin)

That will take the pubvar2 variable out of the equation. Note, you may
also try throwing the "New" keyword into that line, I'm not sure if
you do or don't need it.

Hope that helps,

Seth Rowe

vitorjol wrote:
Yes....im portuguese....b ut I love America!!!!!

i forgot to tell U the line with the problem!!!Sorry

So, the problem "object reference not set to an instance of an object"
occurs in the line >>pubmapobj = pubvar2.getMapO bject(varin)

Thanks
"rowe_newsgroup s" wrote:
ok....the name "soumavez" its a name that i called to the Sub...End Sub.
It looked like a foreign langauge to me (is it?), so I was just making
sure it was a protected keyword in a foreign language edition of visual
studio.

Anyways, I have to apologize - my "visual" debugging skills must be
lacking today, as I still don't see anything obviously wrong. Which
line of the code raises the exception?

Thanks,

Seth Rowe
vitorjol wrote:
>
i put here the code of Sub(its about the Mapguide ActiveX to show a map in
VB). I'll send there to Sub in the other form the id of a polygon on the map,
and then the Sub localize the polygon and zoom the place!!!
>
Code of the Sub "soumavez" in the Form1:
>
Public Sub soumavez(ByVal varin As Integer)
' --->"varin" its the var that i send from Form2!!!
' --->"mgmap" its the name of the control (mapguide activex)
Try
Dim pubmapsel As MGMapControl.MG Selection
Dim pubvar2 As MGMapControl.MG MapLayer
Dim pubmapobjectos As MGMapControl.MG Collection
Dim pubmapobj As MGMapControl.MG MapObject
pubmapsel = mgmap.getSelect ion()
pubvar2 = mgmap.getMapLay er("SIG")
pubmapobjectos = mgmap.createObj ect("MGCollecti on")
pubmapobj = pubvar2.getMapO bject(varin)
pubmapobjectos. add(pubmapobj)
pubmapsel.addOb jectsEx(pubmapo bjectos, False)
mgmap.zoomSelec ted()
mgmap.zoomScale (mgmap.getLat() , mgmap.getLon(), 1500)
mgmap.refresh()
Catch ex As Exception
MessageBox.Show (ex.Message, "Erro", MessageBoxButto ns.OK,
MessageBoxIcon. Error)
End Try
End Sub
>
>
"rowe_newsgroup s" wrote:
>
Looks like it should work, when you step through the code where does
the exception occur? If the error occurs in somewhere other than this
sub please post that code too. Also what does "soumavez" mean?

Thanks,

Seth Rowe


vitorjol wrote:
Here is the code:
>
' the code in form2
Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As Object, ByVal
e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
DataGridView1.R owHeaderMouseCl ick
dim exitvar as Integer
exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
Dim ff As New Form1
ff.BringToFront ()
ff.soumavez(exi tvar) ' this is the call to the sub in Form1
End Sub
>
"rowe_newsgroup s" wrote:
>
Please post the code that calls the sub.

Thanks,

Seth Rowe

vitorjol wrote:
Hello.
>
I have 2 forms (Form1 and Form2). When i call the Sub placed in form1 from
form2, i get the error "object reference not set to an instance of an object"
!
What can i do to solve the problem?
>
Thanks


Sep 21 '06 #8
Hello rowe_newsgroups ,

Your solutuion would not work. MGMapControl is the namespace.. MGMapLayer
is the type. getMapObject is not static (shared).
pubvar2 (GEEZ! Use some better freakin names next time wouldja, OP!) is
supposed to grab a reference to a specific map layer.

You are correct in that the OP is trying to use an object that is null.

OP: Check your MWF, make sure you have a layer actually called "SIG". Also,
ZoomSelected is a terrible way to get to an object. First, the selection
will only succeed if the object is visible at your current zoom scale. Second,
MapGuide is notorious for busystate collisions.

-Boo
Hmm. The "object reference not set to an instance of an object"
exception is raised when you try to use an object that doesn't exist
yet, like if you left out the New keyword. However, everything looks
alright to me. The only thing I would try (outside of praying that
someone else happens on this thread and sees what we're missing!) is
to change this line:
>pubmapobj = pubvar2.getMapO bject(varin)
To this:

pubmapobj = MGMapControl.MG MapLayer.getMap Object(varin)

That will take the pubvar2 variable out of the equation. Note, you may
also try throwing the "New" keyword into that line, I'm not sure if
you do or don't need it.

Hope that helps,

Seth Rowe

vitorjol wrote:
>Yes....im portuguese....b ut I love America!!!!!

i forgot to tell U the line with the problem!!!Sorry

So, the problem "object reference not set to an instance of an
object" occurs in the line >>pubmapobj = pubvar2.getMapO bject(varin)

Thanks

"rowe_newsgrou ps" wrote:
>>>ok....the name "soumavez" its a name that i called to the Sub...End
Sub.

It looked like a foreign langauge to me (is it?), so I was just
making sure it was a protected keyword in a foreign language edition
of visual studio.

Anyways, I have to apologize - my "visual" debugging skills must be
lacking today, as I still don't see anything obviously wrong. Which
line of the code raises the exception?

Thanks,

Seth Rowe

vitorjol wrote:

i put here the code of Sub(its about the Mapguide ActiveX to show a
map in VB). I'll send there to Sub in the other form the id of a
polygon on the map, and then the Sub localize the polygon and zoom
the place!!!

Code of the Sub "soumavez" in the Form1:

Public Sub soumavez(ByVal varin As Integer)
' --->"varin" its the var that i send from Form2!!!
' --->"mgmap" its the name of the control (mapguide activex)
Try
Dim pubmapsel As MGMapControl.MG Selection
Dim pubvar2 As MGMapControl.MG MapLayer
Dim pubmapobjectos As MGMapControl.MG Collection
Dim pubmapobj As MGMapControl.MG MapObject
pubmapsel = mgmap.getSelect ion()
pubvar2 = mgmap.getMapLay er("SIG")
pubmapobject os = mgmap.createObj ect("MGCollecti on")
pubmapobj = pubvar2.getMapO bject(varin)
pubmapobject os.add(pubmapob j)
pubmapsel.ad dObjectsEx(pubm apobjectos, False)
mgmap.zoomSe lected()
mgmap.zoomSc ale(mgmap.getLa t(), mgmap.getLon(), 1500)
mgmap.refres h()
Catch ex As Exception
MessageBox.S how(ex.Message, "Erro", MessageBoxButto ns.OK,
MessageBoxIc on.Error)
End Try
End Sub
"rowe_newsgr oups" wrote:

Looks like it should work, when you step through the code where
does the exception occur? If the error occurs in somewhere other
than this sub please post that code too. Also what does "soumavez"
mean?
>
Thanks,
>
Seth Rowe
>
vitorjol wrote:
>
>Here is the code:
>>
>' the code in form2
>Private Sub DataGridView1_R owHeaderMouseCl ick(ByVal sender As
>Object, ByVal
>e As System.Windows. Forms.DataGridV iewCellMouseEve ntArgs) Handles
>DataGridVi ew1.RowHeaderMo useClick
>dim exitvar as Integer
>exitvar = DataGridView1.R ows(e.RowIndex) .Cells(0).Value
>Dim ff As New Form1
>ff.BringTo Front()
>ff.soumave z(exitvar) ' this is the call to the sub in Form1
>End Sub
>"rowe_news groups" wrote:
>>
>>Please post the code that calls the sub.
>>>
>>Thanks,
>>>
>>Seth Rowe
>>>
>>vitorjo l wrote:
>>>
>>>Hello.
>>>>
>>>I have 2 forms (Form1 and Form2). When i call the Sub placed in
>>>form1 from
>>>form2, i get the error "object reference not set to an instance
>>>of an object"
>>>!
>>>What can i do to solve the problem?
>>>Thanks
>>>>

Sep 22 '06 #9
What I see is that you do not show the form BringToFront does not make
a control a top-level control, and it does not raise the Paint event.

So with the knowledge of the last post, try following

- Check, if you can run the sub from form2 alone. Implement a button to
show what you want and make a test like this.
- If this does not work, first correct the sub until you are able to
let it run.
- After that, first show the new form and then let sub run from
form1...

Daniel

Sep 22 '06 #10

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

Similar topics

6
2726
by: Shaun Fleming | last post by:
I've been trying to make this simple script compatible across various browsers. It works for IE 6.0 and NS 7 but doesnt work with Opera (I have version 7.11). This is what is supposed to happen: when the user clicks a button in the main window, a dialog window pops up. In the dialog the user enters a university to search for. When the string is submitted, the dialog then shows all the matches found in the database. The user picks one and...
9
1760
by: Marina | last post by:
Here is the problem. If 2 different properties on the same (or different) control are bound to the same data column, changing the Text property and calling EndCurrentEdit discards the new value. Changing a custom property and calling EndCurrentEdit accepts the new value, stores it in the datasoure and behaves normally. Here is a reproduceable example: First, extend Textbox: Public Class MyTextBox Inherits TextBox
2
6864
by: Mike | last post by:
I am trying to open a search results form based on the input from a prompt form. I am using the following code: --- Begin Code --- Private Sub btnSearch_Click() 'Dim Variable and assign data Dim srce As String, fstnme As String, lstnme As String, bidnum As String srce = Me.Source_Control If Not IsNull(Me.Text18) Then
7
2101
by: Andrew Christiansen | last post by:
Hey everyone. I have Visual Basic .NET 2003 and am trying to show images on a treeview control. I have the imagelist on the form filled with images, and have the ImageList property of the treeview control set to the imagelist containing the images I want to be displayed next to each node. It seems that no matter what I do there will be no images displayed next to the nodes during runtime. I tried creating nodes during designtime using...
7
2648
by: Frank Maxey | last post by:
I am fairly new to VB.Net and am having a curious problem. I have an entry dialog form called from a main form. The calling form needs to check the DialogResult field for an OK response. In my button service in the dialog form, I have: Private Sub btnSave_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles btnSave.Click
8
6459
by: koorb | last post by:
I am starting a program from a module with the Sub main procedure and I want it to display two forms for the program's interface, but when I run the program both forms just open and then program closes. Dim FORM1 As New Form1 Dim FORM2 As New form2 Sub main() FORM1.Show() FORM2.Show()
14
3270
by: Altman | last post by:
Ok I have a control that is inherited from another class. In the child I put msgbox(me.name) in the load event. What always pops up is the name of the parent class and not the name of the instance of the object. WHY? Also if I can figure this out I'm hoping that I can put this in the load event of the parent and still get it to work.
1
3529
by: DS | last post by:
I seem to have run into another strange anomaly with the monthCalendar control. I want to display 6 months at time with either the first half of the year (January-June) or the later half of the year (July-Dec) being rendered- depending on where todays date falls. I also want today's date to be selected. This poses a problem. Refer to the code below. Add a call to createCalendar() to your constructor (AFTER the InitializeComponents()...
14
3366
by: =?Utf-8?B?UHVjY2E=?= | last post by:
Hi, I'm using VS2005 and .net 2.0. I'm creating an application that has 3 forms. I want allow users to move forward and backward with the forms and retain the data users have entered. I thought I'll make the inactive forms invisible but this is creating a memory corruption problem when user close the form2 or form3 and not the formMain. My main form has a Next button which makes the main form invisible and starts a new form which I'll...
2
1014
by: Lyn | last post by:
Hi, I am using a form (FormA) to list the records in a recordset. In the FormA footer, I have an "Add" command button that opens a new form (FormB) modally which is used to input and save a new record to the table on which the recordset is based. On closing FormB after inputting a new record, I would like to refresh/requery the listing in FormA automatically so that it includes the new record. I don't seem to be able to get this to...
0
9571
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
10013
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
9960
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,...
1
7383
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
6655
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();...
0
5280
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
5424
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3533
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2807
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.