J Trahair
Well-known member
Hi everyone. My project in CFNet 2.0 tells me to add an assembly:
I am familiar with adding resources eg. System.IO, but when I do this for System.IO.Ports.Parity, the error message stays.
Here's what I have at the top of my form:
etc.
Please can anyone point me in the right direction. Thank you.
HTML:
Error 1 Reference required to assembly 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the type 'System.IO.Ports.Parity'. Add one to your project.
I am familiar with adding resources eg. System.IO, but when I do this for System.IO.Ports.Parity, the error message stays.
Here's what I have at the top of my form:
HTML:
Option Explicit On
Imports Microsoft.VisualBasic
Imports System.Collections
Imports System.Drawing.Rectangle
Imports System.IO
Imports System.IO.Ports.Parity
Imports System.Runtime.InteropServices
Imports System.Text
Public Class Tickets
Inherits System.Windows.Forms.Form
Private streamToPrint As StreamReader
Private gblnSkipDataReader As Boolean
Public gstrLoggedInAs As String = ""
Please can anyone point me in the right direction. Thank you.