473,785 Members | 2,290 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Printing a list box

Please could someone tell me what is wrong.
Ther error is:
An unhandled exception of type 'System.NullRef erenceException ' occurred in
microsoft.visua lbasic.dll

Additional information: Object variable or With block variable not set.

I am trying to print the contents of a list box on another form.

This is the sub, and the highlighted line is where it is falling over.
Private Sub PrintDoco_Print Page(ByVal sender As System.Object, ByVal e
As System.Drawing. Printing.PrintP ageEventArgs) Handles PrintDoco.Print Page

'm_CurrentPage += 1

Dim max As Integer
Dim n As Integer
max = lstData.count *************** *************** ***********
MsgBox(max, , "Test")
For n = 0 To max - 1
e.Graphics.Draw String(lstData. item.count(), New Font("arial",
12, FontStyle.Regul ar), Brushes.Black, 200, 200 + n * 45)
Next

e.HasMorePages = False

End Sub

This is the code for both forms :

Imports System.Manageme nt
Imports System.Drawing. Printing
Imports System
Imports System.Drawing. Drawing2D
Imports System.Windows. Forms
Imports System.Drawing

Public Class Print
Inherits System.Windows. Forms.Form
#Region " Windows Form Designer generated code "
#End Region
Private WithEvents PrintDoco As New PrintDocument
Private m_CurrentPage As Integer

Private Sub Print_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

With Me.cboPrinters
For Each s As String In PrinterSettings .InstalledPrint ers
.Items.Add(s)
Next s
If .Items.Count > 0 Then
.SelectedIndex = 0
Else
MessageBox.Show ("No printers installed, quitting!",
Application.Pro ductName, MessageBoxButto ns.OK, MessageBoxIcon. Exclamation)
Me.Close()
End If
End With
'PrintDoco.Docu mentName = "Unknown"

AddHandler PrintDoco.Print Page, AddressOf PrintDoco_Print Page
m_CurrentPage = 0
End Sub

Private Sub cboPrinters_Sel ectedIndexChang ed(ByVal sender As
System.Object, ByVal e As System.EventArg s) Handles
cboPrinters.Sel ectedIndexChang ed
If Me.cboPrinters. SelectedIndex <> -1 Then
PrintDoco.Print erSettings.Prin terName = Me.cboPrinters. Text
End If
End Sub

Private Sub PrintDoco_Print Page(ByVal sender As System.Object, ByVal e
As System.Drawing. Printing.PrintP ageEventArgs) Handles PrintDoco.Print Page

'm_CurrentPage += 1

Dim max As Integer
Dim n As Integer
max = lstData.count
MsgBox(max, , "Test")
For n = 0 To max - 1
e.Graphics.Draw String(lstData. item.count(), New Font("arial",
12, FontStyle.Regul ar), Brushes.Black, 200, 200 + n * 45)
Next

e.HasMorePages = False

End Sub

Private Sub btnPrint_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnPrint.Click

PrintDoco.Print ()
'lstData.Focus( )
'lstData.Select All()
'lstData.Show()
Me.Close()
End Sub

Private Sub btnPreview_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnPreview.Clic k
MsgBox("Into preview")
m_CurrentPage = 0
Dim ppdlg As ExtendedPrintPr eviewDialog

With (ppdlg)
.Document = PrintDoco
.WindowState = FormWindowState .Maximized
.ShowDialog()
.Dispose()
End With
MsgBox("Out of Preview")
End Sub

Private Sub btnPrinterSetti ngs_Click(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles btnPrinterSetti ngs.Click

Dim pdlg As New PrintDialog
With pdlg
.Document = PrintDoco
.PrinterSetting s = PrintDoco.Print erSettings
.AllowPrintToFi le = False
If .ShowDialog() = DialogResult.OK Then
SelectPrinter(c boPrinters, .PrinterSetting s.PrinterName)
End If
.Dispose()
End With
End Sub

Private Sub btnPageSetup_Cl ick(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnPageSetup.Cl ick

Dim psdlg As New PageSetupDialog
With psdlg
.PrinterSetting s = PrintDoco.Print erSettings
.PageSettings = PrintDoco.Defau ltPageSettings
If .ShowDialog() = DialogResult.OK Then
.PageSettings.M argins =
PrinterUnitConv ert.Convert(.Pa geSettings.Marg ins,
PrinterUnit.Tho usandthsOfAnInc h, PrinterUnit.Hun dredthsOfAMilli meter)
SelectPrinter(c boPrinters, .PrinterSetting s.PrinterName)
End If
.Dispose()
End With
End Sub
'Public Shared Sub Main()
' Application.Ena bleVisualStyles ()
' Application.DoE vents()
' Application.Run (New Print)
'End Sub
Private Sub SelectPrinter(B yVal ComboBox As ComboBox, ByVal PrinterName
As String)
For i As Integer = 0 To ComboBox.Items. Count - 1
If ComboBox.Items( i).ToString() = PrinterName Then
ComboBox.Select edIndex = i
Exit For
End If
Next i
End Sub

End Class
Module Module1
Public lstData
Public PrintDoco
End Module

Public Class frmSystemInform ation
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

#End Region
Private PrintDoco As New PrintDocument

Private m_CurrentPage As Integer
Public frmPrint As Form

Private Sub cmdOperatingSys tem_Click(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles cmdOperatingSys tem.Click

Dim sClassname As String = "Win32_Operatin gSystem"
lstData.Items.C lear()
'grab the class
Dim oServices As New System.Manageme nt.ManagementCl ass(sClassname)
Dim oService As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each oService In oServices.GetIn stances
'Add to the list box
lstData.Items.A dd(oService("Na me"))
lstData.Items.A dd(oService("Ma nufacturer"))
lstData.Items.A dd(oService("Ve rsion"))
lstData.Items.A dd(oService("CS DVersion"))
Next
End Sub

Private Sub cmdNetwork_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdNetwork.Clic k
Dim mc As System.Manageme nt.ManagementCl ass
Dim objWMI As ManagementObjec t
mc = New ManagementClass ("Win32_Network AdapterConfigur ation")
lstData.Items.C lear()
Dim moc As ManagementObjec tCollection = mc.GetInstances ()
For Each objWMI In moc
If objWMI.Item("IP Enabled") = True Then
lstData.Items.A dd("MAC address is: " &
objWMI.Item("Ma cAddress").ToSt ring())
lstData.Items.A dd(objWMI("DNSH ostName"))
'lstData.Items. Add(objWMI("DNS Domain"))
lstData.Items.A dd(objWMI.Item( "MACAddress "))
lstData.Items.A dd(objWMI("Desc ription"))
End If
Next
End Sub

Private Sub cmdBIOS_Click(B yVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdBIOS.Click
Dim sClassname As String = "Win32_BIOS "
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Manufactur er",
objWMI("Manufac turer")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Version",
objWMI("Version ")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Serial Number",
objWMI("SerialN umber")))

Next
End Sub

Private Sub cmdProcessor_Cl ick(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdProcessor.Cl ick
Dim sClassname As String = "Win32_Processo r"
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Manufactur er",
objWMI("Manufac turer")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Maximum Clock
Speed", objWMI("MaxCloc kSpeed")))
Next
End Sub

Private Sub cmdDisks_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdDisks.Click
Dim sClassname As String = "Win32_LogicalD isk"
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Size",
objWMI("Size")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Free Space",
objWMI("FreeSpa ce")))
Next
End Sub

Private Sub cmdPrint_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdPrint.Click
Dim frmPrint As New Print

frmPrint.Show()
End Sub

End Class
Thanks
Jul 21 '05 #1
1 2089
Nick,

I think that when you want some help, you should first make a more simple
sample. This code you show now you can test, we miss all input, therefore
helping you is in my opinion almost impossible or there should be somebody
who has a lucky hit and than still it will be guessing in my opinion.

Probably by the way when you make that simple sample, you find the error
yourself.

Sorry could not give any help more,

Cor
"NickB" <Ni***@discussi ons.microsoft.c om>
Please could someone tell me what is wrong.
Ther error is:
An unhandled exception of type 'System.NullRef erenceException ' occurred in
microsoft.visua lbasic.dll

Additional information: Object variable or With block variable not set.

I am trying to print the contents of a list box on another form.

This is the sub, and the highlighted line is where it is falling over.
Private Sub PrintDoco_Print Page(ByVal sender As System.Object, ByVal e
As System.Drawing. Printing.PrintP ageEventArgs) Handles PrintDoco.Print Page

'm_CurrentPage += 1

Dim max As Integer
Dim n As Integer
max = lstData.count *************** *************** ***********
MsgBox(max, , "Test")
For n = 0 To max - 1
e.Graphics.Draw String(lstData. item.count(), New Font("arial",
12, FontStyle.Regul ar), Brushes.Black, 200, 200 + n * 45)
Next

e.HasMorePages = False

End Sub

This is the code for both forms :

Imports System.Manageme nt
Imports System.Drawing. Printing
Imports System
Imports System.Drawing. Drawing2D
Imports System.Windows. Forms
Imports System.Drawing

Public Class Print
Inherits System.Windows. Forms.Form
#Region " Windows Form Designer generated code "
#End Region
Private WithEvents PrintDoco As New PrintDocument
Private m_CurrentPage As Integer

Private Sub Print_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

With Me.cboPrinters
For Each s As String In PrinterSettings .InstalledPrint ers
.Items.Add(s)
Next s
If .Items.Count > 0 Then
.SelectedIndex = 0
Else
MessageBox.Show ("No printers installed, quitting!",
Application.Pro ductName, MessageBoxButto ns.OK, MessageBoxIcon. Exclamation)
Me.Close()
End If
End With
'PrintDoco.Docu mentName = "Unknown"

AddHandler PrintDoco.Print Page, AddressOf PrintDoco_Print Page
m_CurrentPage = 0
End Sub

Private Sub cboPrinters_Sel ectedIndexChang ed(ByVal sender As
System.Object, ByVal e As System.EventArg s) Handles
cboPrinters.Sel ectedIndexChang ed
If Me.cboPrinters. SelectedIndex <> -1 Then
PrintDoco.Print erSettings.Prin terName = Me.cboPrinters. Text
End If
End Sub

Private Sub PrintDoco_Print Page(ByVal sender As System.Object, ByVal e
As System.Drawing. Printing.PrintP ageEventArgs) Handles PrintDoco.Print Page

'm_CurrentPage += 1

Dim max As Integer
Dim n As Integer
max = lstData.count
MsgBox(max, , "Test")
For n = 0 To max - 1
e.Graphics.Draw String(lstData. item.count(), New Font("arial",
12, FontStyle.Regul ar), Brushes.Black, 200, 200 + n * 45)
Next

e.HasMorePages = False

End Sub

Private Sub btnPrint_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnPrint.Click

PrintDoco.Print ()
'lstData.Focus( )
'lstData.Select All()
'lstData.Show()
Me.Close()
End Sub

Private Sub btnPreview_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles btnPreview.Clic k
MsgBox("Into preview")
m_CurrentPage = 0
Dim ppdlg As ExtendedPrintPr eviewDialog

With (ppdlg)
.Document = PrintDoco
.WindowState = FormWindowState .Maximized
.ShowDialog()
.Dispose()
End With
MsgBox("Out of Preview")
End Sub

Private Sub btnPrinterSetti ngs_Click(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles btnPrinterSetti ngs.Click

Dim pdlg As New PrintDialog
With pdlg
.Document = PrintDoco
.PrinterSetting s = PrintDoco.Print erSettings
.AllowPrintToFi le = False
If .ShowDialog() = DialogResult.OK Then
SelectPrinter(c boPrinters, .PrinterSetting s.PrinterName)
End If
.Dispose()
End With
End Sub

Private Sub btnPageSetup_Cl ick(ByVal sender As System.Object, ByVal e
As
System.EventArg s) Handles btnPageSetup.Cl ick

Dim psdlg As New PageSetupDialog
With psdlg
.PrinterSetting s = PrintDoco.Print erSettings
.PageSettings = PrintDoco.Defau ltPageSettings
If .ShowDialog() = DialogResult.OK Then
.PageSettings.M argins =
PrinterUnitConv ert.Convert(.Pa geSettings.Marg ins,
PrinterUnit.Tho usandthsOfAnInc h, PrinterUnit.Hun dredthsOfAMilli meter)
SelectPrinter(c boPrinters, .PrinterSetting s.PrinterName)
End If
.Dispose()
End With
End Sub
'Public Shared Sub Main()
' Application.Ena bleVisualStyles ()
' Application.DoE vents()
' Application.Run (New Print)
'End Sub
Private Sub SelectPrinter(B yVal ComboBox As ComboBox, ByVal PrinterName
As String)
For i As Integer = 0 To ComboBox.Items. Count - 1
If ComboBox.Items( i).ToString() = PrinterName Then
ComboBox.Select edIndex = i
Exit For
End If
Next i
End Sub

End Class
Module Module1
Public lstData
Public PrintDoco
End Module

Public Class frmSystemInform ation
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

#End Region
Private PrintDoco As New PrintDocument

Private m_CurrentPage As Integer
Public frmPrint As Form

Private Sub cmdOperatingSys tem_Click(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles cmdOperatingSys tem.Click

Dim sClassname As String = "Win32_Operatin gSystem"
lstData.Items.C lear()
'grab the class
Dim oServices As New System.Manageme nt.ManagementCl ass(sClassname)
Dim oService As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each oService In oServices.GetIn stances
'Add to the list box
lstData.Items.A dd(oService("Na me"))
lstData.Items.A dd(oService("Ma nufacturer"))
lstData.Items.A dd(oService("Ve rsion"))
lstData.Items.A dd(oService("CS DVersion"))
Next
End Sub

Private Sub cmdNetwork_Clic k(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdNetwork.Clic k
Dim mc As System.Manageme nt.ManagementCl ass
Dim objWMI As ManagementObjec t
mc = New ManagementClass ("Win32_Network AdapterConfigur ation")
lstData.Items.C lear()
Dim moc As ManagementObjec tCollection = mc.GetInstances ()
For Each objWMI In moc
If objWMI.Item("IP Enabled") = True Then
lstData.Items.A dd("MAC address is: " &
objWMI.Item("Ma cAddress").ToSt ring())
lstData.Items.A dd(objWMI("DNSH ostName"))
'lstData.Items. Add(objWMI("DNS Domain"))
lstData.Items.A dd(objWMI.Item( "MACAddress "))
lstData.Items.A dd(objWMI("Desc ription"))
End If
Next
End Sub

Private Sub cmdBIOS_Click(B yVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdBIOS.Click
Dim sClassname As String = "Win32_BIOS "
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Manufactur er",
objWMI("Manufac turer")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Version",
objWMI("Version ")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Serial Number",
objWMI("SerialN umber")))

Next
End Sub

Private Sub cmdProcessor_Cl ick(ByVal sender As System.Object, ByVal e
As
System.EventArg s) Handles cmdProcessor.Cl ick
Dim sClassname As String = "Win32_Processo r"
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Manufactur er",
objWMI("Manufac turer")))
lstData.Items.A dd(String.Forma t("{0}:{1}", "Maximum Clock
Speed", objWMI("MaxCloc kSpeed")))
Next
End Sub

Private Sub cmdDisks_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdDisks.Click
Dim sClassname As String = "Win32_LogicalD isk"
lstData.Items.C lear()
'grab the class
Dim objWMISet As New System.Manageme nt.ManagementCl ass(sClassname)
Dim objWMI As System.Manageme nt.ManagementOb ject
'loop through the instances
For Each objWMI In objWMISet.GetIn stances
'Add to the list box
lstData.Items.A dd(String.Forma t("{0}:{1}", "Name",
objWMI("Name")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Size",
objWMI("Size")) )
lstData.Items.A dd(String.Forma t("{0}:{1}", "Free Space",
objWMI("FreeSpa ce")))
Next
End Sub

Private Sub cmdPrint_Click( ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles cmdPrint.Click
Dim frmPrint As New Print

frmPrint.Show()
End Sub

End Class
Thanks

Jul 21 '05 #2

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

Similar topics

4
4858
by: Jody Gelowitz | last post by:
I am having a problem with printing selected pages. Actually, the problem isn't with printing selected pages as it is more to do with having blank pages print for those pages that have not been selected. For example, if I were to have 5 pages with every second page printing, I would get the following results: Page 1 = Print OK Page 2 = Blank Page 3 = Print OK Page 4 = Blank
0
1296
by: ALMA_J_III | last post by:
Hi all! Customer will use HP LaserJet 4200TN printer for printing of invoices. 3 different versions of invoice on different color of paper should be to print. HP LaserJet 4200TN have 3 paper source trays. Maybe some from you have experience in printing to different trays of this printer. Crystalreport Report object has PrintOptions class and the next papersource properties:...
6
482
by: Bill | last post by:
Hi I am trying to get my listbox items to print if they stream past the one page mark. my code is working for one page of information (if the e.hasmorepages) is not there. But I am having trouble getting it to print on multiple pages. The second page will not print at all. Thanks in advance
1
393
by: NickB | last post by:
Please could someone tell me what is wrong. Ther error is: An unhandled exception of type 'System.NullReferenceException' occurred in microsoft.visualbasic.dll Additional information: Object variable or With block variable not set. I am trying to print the contents of a list box on another form. This is the sub, and the highlighted line is where it is falling over.
0
1694
by: Hank | last post by:
We have been printing pdf files through Adobe, from Access for several years. Adobe version 5.0 is currently installed. Recently we have received PDF files that were created under the Adobe 7.0 version. When trying to view a file manually Adobe 5.0 displays a pop up message: "This file may contain newer information than this viewer can support. It may not open or display correctly". There is a check box with the pop-up that says,...
3
1366
by: William Chang | last post by:
Is the different behavior between __repr__ and __str__ intentional when it comes to printing lists? Basically I want to print out a list with elements of my own class, but when I overwrite __str__, __str__ doesn't get called but if I overwrite __repr__, __repr__ will get called. Is this a bug? For example:
2
9976
by: Brad Pears | last post by:
I have a vb.net 2005 application and am using the print preview screen. This screen has a printer icon on it that the user can use to print the document currently being viewed. It uses the default printer settings to print. I wanted the print preview to appear the same for all users (i.e. a default page size of 8.5x14 (legal) and portrait mode). Many users have different printers as their default (plotters etc..) and I found that various...
4
16824
ADezii
by: ADezii | last post by:
Recently, there seems to be several questions specifically related to Printers and changing Printing characteristics for Forms and Reports. For this reason alone, I decided to dedicate this week's Tip to these Topics. The Tip will actually consist of several Tips which I feel are very useful for all Users, from Newbies to Experts. In order to utilize the code contained within these Tips, you must have Access 2002 or later. How can I...
1
13774
by: Glenn | last post by:
I am writing a program for field work that will use a receipt printer. I need to be able to adjust the page settings prior to printing depending on how much needs to be printed. I have been able to print to this printer but cannot figure out how to overwrite the page settings. Below is the code so far: Private Sub m_PrintDocument_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles...
0
9646
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
9484
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10350
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10157
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
10097
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
7505
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
6742
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();...
2
3658
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2887
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.