-
Created Help with QoS Settings
Hi guys, i was told that with the right settings of Qos in my router, i can prioritize the internet speed between online gaming or watching videos or browsing etc.. … -
Began Watching Help with QoS Settings
Hi guys, i was told that with the right settings of Qos in my router, i can prioritize the internet speed between online gaming or watching videos or browsing etc.. … -
Replied To a Post in Program compiles doesn't run, need some help
Please post the new code. -
Began Watching Digital Persona Fingerprint 4500
I have recently purchased Digital Persona Fingerprint 4500 device for development of attendence system. i have installed properly installed SDK and its works. could you guide me how to connect … -
Replied To a Post in Digital Persona Fingerprint 4500
Create your database >> connect your device >> open serialport >> read data >> store data. usually there's a manual accompanied with this device and i'm sure there's developer section … -
Began Watching Program compiles doesn't run, need some help
Right now I'm having a problem getting my program to run, it compiles with no errors. The only previous error I had was that it stated reached end of file … -
Replied To a Post in Program compiles doesn't run, need some help
Replace while (end = false) With while (end == false) Or while (!end) -
Began Watching Getting errors in my java program
Getting errors in my java program.Please retify my program errors,Explain the mistakes? class Cine { double t=70.00; String i="CINEPOLIS"; String j="HAPPY"; { public void worldCine(); { System.out.println("Ticket rate:" +t); } … -
Replied To a Post in Getting errors in my java program
Your "errors" are both logical errors and syntax errors Syntax errors: -when you write a method, you can't use the semicolon, just open the curly braces then write your code … -
Replied To a Post in VB.NET - Simple Game
Thank you for your notes. As a game concept: i didn't work that much on that part but still everything is editable (variables, level etc..) and yes you are right … -
Began Watching Controlling Form by Custom control
I'm creating a custom control panel to replace the top border control panel/box. I start with a panel that docks at top of form, and add 3 pictureboxes, with light … -
Replied To a Post in Controlling Form by Custom control
Use Form.ActiveForm 'close button Form.ActiveForm.Close() 'maximize button Form.ActiveForm.WindowState = FormWindowState.Maximized 'minimize button Form.ActiveForm.WindowState = FormWindowState.Minimized -
Edited VB.NET - Simple Game
Here's a simple game code, open a new vb project and copy paste this code and hit run. the game contains 3 levels, all you have to do is to … -
Created VB.NET - Simple Game
Here's a simple game code, open a new vb project and copy paste this code and hit run. the game contains 3 levels, all you have to do is to … -
Began Watching VB.NET - Simple Game
Here's a simple game code, open a new vb project and copy paste this code and hit run. the game contains 3 levels, all you have to do is to … -
Began Watching How to make a custom run as admin dialog
Hi. I am making a Anti-Virus (almost complete) however I would like to know how to make a custom 'Run As Administrator' dialog. Before you tell me this isn't possible, … -
Replied To a Post in How to make a custom run as admin dialog
Create a fullscreen black form with low opacity and make it on top most then display your dialog above it. -
Replied To a Post in Running 2 commands one after the other??
Use this code twice My.Computer.Audio.Play(audio path, AudioPlayMode.WaitToComplete) -
Began Watching Running 2 commands one after the other??
I am a self-taught VB programmer and have found these forums invaluable. Usually the solution can be found here and I am happy - but this is causing me some … -
Replied To a Post in Running 2 commands one after the other??
Try to put this code in between System.Threading.Thread.Sleep(Time) -
Began Watching Exception when selecting Column Headers by mistake in DataGridView
When selecting from DataGridView as program line below: Diameter = DesignationsDataGridView.Rows(e.RowIndex).Cells(0).Value I get following exception message box:- System.ArgumentOutOfRangeException was unhandled Message="Index was out of range. Must be non-negative and less … -
Replied To a Post in Exception when selecting Column Headers by mistake in DataGridView
If e.RowIndex.ToString > -1 Then Diameter = DesignationsDataGridView.Rows(e.RowIndex).Cells(0).Value endif -
Began Watching Set Lvw = Me.Controls(Lst & "ListView")
this line is throwing error "type mismatch" where lst is parameter as string/... plzz help -
Replied To a Post in Set Lvw = Me.Controls(Lst & "ListView")
what are you trying to do? explain more. -
Began Watching No data exists for the row/column.
hi guys, I wanted to get a result of a certain field by passing a month and year parameter to access database,the day parameter isn't important.So i used this query … -
Replied To a Post in No data exists for the row/column.
when you use the getdata methode it collect the values in your query, your "fuel/litre" is no longer there. instead use this code to get your item Dim qry As … -
Replied To a Post in MIRAFE RFID with vb2010
[Click Here](https://www.youtube.com/watch?v=OAkbDbZn2cw) -
Replied To a Post in MIRAFE RFID with vb2010
Ok try this Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load SerialPort1.PortName = "COM1" SerialPort1.BaudRate = 19200 SerialPort1.Parity = IO.Ports.Parity.None SerialPort1.StopBits = IO.Ports.StopBits.One … -
Began Watching My vb'10 .exe file cannot be run by others computer which didn't install vb
I had created a window application, finish debug and it work perfectly in my computer. I then copy a whole folder includes the .exe file to another computer which doesn't … -
Replied To a Post in My vb'10 .exe file cannot be run by others computer which didn't install vb
You need to create the installer (go to your project properties then go to publish - publish wizard) then on the user machine double click on the installer. also make … -
Replied To a Post in MIRAFE RFID with vb2010
hmm..your code seems legit, but you didn't tell what's the error vb gives you and at what line -
Replied To a Post in MIRAFE RFID with vb2010
Yesit does. where is your dataReceived(reading) code? please post it here -
Replied To a Post in MIRAFE RFID with vb2010
what if your device is assigned to com9 port and you are trying to open it on com1 and com2..for that you have to make sure what port it is, … -
Began Watching MIRAFE RFID with vb2010
hi... I have problem where I could not read 1k Mifare tag with vb2010 . I use the reader cr038 from here http://www.cytron.com.my/viewProduct.php?pcode=RFID-ICRW-CR038&name=Mifare%20Reader/Writer%20CR038 ... based on the datasheet(user manual) given … -
Replied To a Post in MIRAFE RFID with vb2010
Before reading Mifare Were you able to connect to it? -
Began Watching What is the difference between MessageBox.Show and MsgBox
Who can tell me the difference between MessageBox.Show and MsgBox in VB.NET? -
Replied To a Post in What is the difference between MessageBox.Show and MsgBox
MsgBox is the default one, you show a string and wait for the user to click the msgbox button in Messagebox.show you can add a custom buttons and icon etc.. … -
Replied To a Post in Mifare Read and Write
Everything you need is in the code file, but first try to understand it [Click Here](http://www.tutorialspoint.com/vb.net/vb.net_subs.htm) [Click Here](http://www.dotnetperls.com/sub) -
Replied To a Post in saving records to access 2007 database
Dim cmd As New OleDbCommand cmd.Connection = connection cmd.CommandType = CommandType.Text cmd.CommandText = "DELETE FROM Table WHERE ColumnName =" & String & "" connection.Open() cmd.ExecuteNonQuery() connection.Close() -
Replied To a Post in Mifare Read and Write
try the code in the file "MifareCardProg_1.txt" if you get any errors post it here -
Replied To a Post in Mifare Read and Write
That's it, copy the code and paste it in your vb project and you should add a reference to this "ModWinsCard64.SCARD". now pay attention to this code Private Sub InitMenu() … -
Began Watching Mifare Read and Write
Dear all, I need help on programming Mifare cards. I want to be able to read and write to a 1k mifare card. I bought a ACR1281U dual reader and … -
Replied To a Post in Mifare Read and Write
usually a product like this comes with a software disc or you can download it from their website..if thats not the case, is there any part in that documentation that … -
Began Watching saving records to access 2007 database
I am working on a project to create a front end in vb 2010 for an access database. It is adding the records in vb but not saving them in … -
Replied To a Post in saving records to access 2007 database
Read [this](http://www.daniweb.com/software-development/vbnet/threads/475373/adding-data-in-access-database) -
Replied To a Post in ??? how do i run a (webpage) from inside my (vb.net) program ???
lol, hope so :D good luck -
Replied To a Post in Making timer reset to 45:00 minutes?
since this thread is solved, daniweb members will visit this thread rarely so i recomand you start a new one. and i dont know the answer to your last question. … -
Replied To a Post in MSSQL
No it's not, that's what you are missing you need to declare the connection string -
Began Watching Need Ideas!
Ok, guys. I just got done with a major project that took up most of my free time. I'm DONE AND SO BORED NOW. I need Ideas! I specialize in … -
Replied To a Post in Need Ideas!
i once did a pos for a delivery company, they take orders over the phone so i included a caller id in the pos, you can try something like that..just …
The End.