Top 5 Best Binding Machines & Comparison

Top 5 Best Binding Machines & Comparison



Model
Price
Amazon Rating
Type of Binding Machine
Method of Punching
Punching Capacity
Binding Capacity
Fellowes Pulsar 300 Plastic Comb Binding Machine
Fellowes Pulsar 300
$100-200
4.4
Comb Binding
Manual
15 sheets
300 sheets with a 1-1/2" comb
GBC CombBind C20 Plastic Comb Binding Machine
GBC CombBind C20
$100-200
4.7
Comb Binding
Manual
20 sheets
330 sheets
Fellowes Pulsar E 300 Plastic Comb Binding Machine
Fellowes Pulsar E 300
$200-300
4.6
Comb Binding
Electric
15 sheets
300 sheets with a 1.5" comb
Akiles RubiCoil 4:1 Pitch Coil Binding Machine
Akiles RubiCoil
$100-200
N/A
Coil Binding
Manual
10 sheets
N/A
GBC ProClick P50 Wire Binding Machine
GBC ProClick P50
$50-100
4.1
Wire Binding
Manual
6 sheets
100 sheets



We have tabulated the necessary purchasing criteria of binding machine in the table above. You can get a quick overview of the recommended binding machines by comparing the price and Amazon rating.

Click the model name to visit our review of that binding machine.

Click the binding machine price to check current Amazon pricing and in-stock conditions.

Question by Brian D: binding and exporting a database with my application in Visual Basic Express so that I can read write?
What I am trying to do is be able to move things around (picture files), on a Form that I made in VB and furthermore associate file strings to them. I will have an opendialogbox with them as the user has to click on them and selects a file that is then assigned to the picture file. Also the user is able to dynamically create and drag the pictures around the form and leave it wherever they want to. The problem I am having, and thinking that I might need a database because after the file is closed, it is opened again, I want to have the points (locations on the form), for the specific pictures as well as the file associated with them loaded up so that everything looks as it did before they closed it. Now I am wondering if I need a whole elaborate database for that. In the end this application has to be able to be transported to their machine and executed. Thus this means that the database has to go with it. Any ideas? Sample code? Will an XML file work better?
This is the general idea for the input into the MSSQL. Let me know if this is all needed…

Public Sub Save(ByVal bwavfile() As Byte)

Dim DBInsertCmd As SqlClient.SqlCommand
Dim sSQL As String
Dim strConn As String

strConn = “”
DBInsertCmd = New SqlClient.SqlCommand
DBInsertCmd.Connection = New SqlClient.SqlConnection(strConn)

Dim strBase64WavFile As String = Convert.ToBase64String(bwavfile)

sSQL = “INSERT INTO wavfiles(filename, soundfile) values (@filename, ” &_
“@bwavfile)”
DBInsertCmd.CommandText = sSQL
With DBInsertCmd.Parameters
.Clear()
.Add(”@filename”, Me.TextBox2.Text)
.Add(”@bwavfile”, strBase64WavFile)
End With

DBInsertCmd.Connection.Open()
Try
DBInsertCmd.ExecuteNonQuery()
MessageBox.Show(”Wav File Saved”)
Catch oExcept As Exception
MessageBox.Show(oExcept.Message)
End Try

DBInsertCmd.Connection.Close()
DBInsertCmd = Nothing
End Sub
I am trying to understand the pieces more precicely and know more of what I really need and do not or even if I need this whole scheme. Perhaps if you have a simple working example about the saving of dynamic data creation to file, I would be very happy to see it.

Thanks much,

Brian

Best answer:

Answer by Jake Cigar
You’re not getting any good responses because no serious programmers use VB. Perhaps you should find a Microsoft forum.

Add your own answer in the comments!

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • NewsVine
  • Reddit
  • StumbleUpon
  • Google Bookmarks
  • Yahoo! Buzz
  • Twitter
  • Technorati
  • Live
  • LinkedIn
  • MySpace
  • MySpace

What I am trying to do is be able to move things around (picture files), on a Form that I made in VB and furthermore associate file strings to them. I will have an opendialogbox with them as the user has to click on them and selects a file that is then assigned to the picture file. Also the user is able to dynamically create and drag the pictures around the form and leave it wherever they want to. The problem I am having, and thinking that I might need a database because after the file is closed, it is opened again, I want to have the points (locations on the form), for the specific pictures as well as the file associated with them loaded up so that everything looks as it did before they closed it. Now I am wondering if I need a whole elaborate database for that. In the end this application has to be able to be transported to their machine and executed. Thus this means that the database has to go with it. Any ideas? Sample code? Will an XML file work better?
This is the general idea for the input into the MSSQL. Let me know if this is all needed…

Public Sub Save(ByVal bwavfile() As Byte)

Dim DBInsertCmd As SqlClient.SqlCommand
Dim sSQL As String
Dim strConn As String

strConn = “”
DBInsertCmd = New SqlClient.SqlCommand
DBInsertCmd.Connection = New SqlClient.SqlConnection(strConn)

Dim strBase64WavFile As String = Convert.ToBase64String(bwavfile)

sSQL = “INSERT INTO wavfiles(filename, soundfile) values (@filename, ” &_
“@bwavfile)”
DBInsertCmd.CommandText = sSQL
With DBInsertCmd.Parameters
.Clear()
.Add(”@filename”, Me.TextBox2.Text)
.Add(”@bwavfile”, strBase64WavFile)
End With

DBInsertCmd.Connection.Open()
Try
DBInsertCmd.ExecuteNonQuery()
MessageBox.Show(”Wav File Saved”)
Catch oExcept As Exception
MessageBox.Show(oExcept.Message)
End Try

DBInsertCmd.Connection.Close()
DBInsertCmd = Nothing
End Sub
I am trying to understand the pieces more precicely and know more of what I really need and do not or even if I need this whole scheme. Perhaps if you have a simple working example about the saving of dynamic data creation to file, I would be very happy to see it.

Thanks much,

Brian

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • NewsVine
  • Reddit
  • StumbleUpon
  • Google Bookmarks
  • Yahoo! Buzz
  • Twitter
  • Technorati
  • Live
  • LinkedIn
  • MySpace
  • MySpace

Powered by Yahoo! Answers

Powered by WP Robot

Powered by Yahoo! Answers

Powered by WP Robot