-
Replied To a Post in What's the correct way to write this query
Any Help with this? My problem is retrieving data of the same username in the third or so record. eg. for the above example I want to display/retrieve the second … -
Marked Solved Status for Allow multi thread connection
Hi Dw. I'm deeply in need of your help, I'm having a problem that is giving me a very serious problem with my code. My program is a multithreaded program … -
Gave Reputation to pritaeas in Allow multi thread connection
Is `conn` perhaps a global variable? When you are trying to access the same variable over multiple threads, such errors are bound to happen. It would be more straightforward for … -
Replied To a Post in Allow multi thread connection
Yes my `conn` is a global variable. But the error just occure even if I run one app. About your suggestion of every thread to have it's own connection. I … -
Edited Allow multi thread connection
Hi Dw. I'm deeply in need of your help, I'm having a problem that is giving me a very serious problem with my code. My program is a multithreaded program … -
Created Allow multi thread connection
Hi Dw. I'm deeply in need of your help, I'm having a problem that is giving me a very serious problem with my code. My program is a multithreaded program … -
Began Watching Allow multi thread connection
Hi Dw. I'm deeply in need of your help, I'm having a problem that is giving me a very serious problem with my code. My program is a multithreaded program … -
Marked Solved Status for How to connect to a client using IP Address
Hi Dw. I'm developing a Client Server application. At the moment I can connect the two and send data. The main aim is to make a server as a core … -
Replied To a Post in How to connect to a client using IP Address
Ok Thanks to everyone. When I was developing another client server chat app I came across an answer to this problem. The solution is that you are able to send … -
Marked Solved Status for Wait for process to finish
Hi Dw. I have a project that uses Process to marge some files, now because the merging can take quite sometime I've used BackgroundWork. The main problem I'm facing is … -
Marked Solved Status for How to send each line via Winsock
Hi Dw. I'm having a client server which the server read a text file line by line and send each line to the client upon client connection. The problem I'm … -
Marked Solved Status for Split and assign each line to variables
Hi Dw. I'm trying to read a text file. This text file has a multiply lines and what I want is that I want to separate each line or should … -
Marked Solved Status for How to remove database connection
Hi Dw. I have a timer that in every 600 interval access the database and the database I'm using is MS Access database. The problem I have is that with … -
Marked Solved Status for Prevent socket clients from freezing GUI
Hi Dw. I am developing a client server multi-thread application. This application uses signals(certain messages as signals), in order to perform a task for a client. For instance if a … -
Marked Solved Status for Working with MySQL
Hi Dw. I'm a bit stuck with a lot of confusion here. I'm developing a client/server applications which communicates to each other, my project is a multi-thread based and I'm … -
Marked Solved Status for Path cannot be empty error
Hi Dw. I'm trying to install MySQL and its my first time to install MySQL. I've downloaded the latest version which is version 5.7.12 and when I try to install … -
Replied To a Post in Path cannot be empty error
Thank you a million times. This all turns out to be the miner action I did at first which produced this error. For someone who might as well experience the … -
Replied To a Post in Path cannot be empty error
Well I don't know whats the problem with this. Ive redownloaded the installer and tried it, got same problem, unInstalled the previous but Still when I try to install this … -
Replied To a Post in What's the correct way to write this query
> Unrelated suggestion - in some databases Ow you mean in the `where` section? Thanks about that didn't know of it. -
Replied To a Post in What's the correct way to write this query
Yes I have some other columns which are unique as well. I have a Status which is unique. This what Happens I have a table like this: ---------------------------------------------------------------------------- username|BookedUser|Amount|Status|RefNo|DueDate |Id … -
Created What's the correct way to write this query
Hi Dw. What is the correct way to write an sql query like this? `"select * from MyTable where username ='username' And password ='Password'"` in vb.net. My problem is that … -
Began Watching What's the correct way to write this query
Hi Dw. What is the correct way to write an sql query like this? `"select * from MyTable where username ='username' And password ='Password'"` in vb.net. My problem is that … -
Replied To a Post in Path cannot be empty error
I downloaded it there, but downloaded the offline install. Well will try redownloading it again if this continues then I will download the older version and see, -
Began Watching How to transfer funds in a form
Hello every one. I have a form in VB.Net, as attached, I need to code the OK button. The Transfer From combobox and Transfer To combobox get all there values … -
Replied To a Post in How to transfer funds in a form
The first step is to declare an integer variable which will hold the amount of which you will deduct (minus) the amount to be transferred. Also you need to convert … -
Replied To a Post in Path cannot be empty error
Oops sorry I miss typed it when typing here, it ProgramData there's no s. -
Replied To a Post in Student Enrolment Form in PHP and MYSQL
I don't see enrol button here. Also state exactly what's giving you problem in which line so that it will be a bit easier for us to help you, as … -
Created Path cannot be empty error
Hi Dw. I'm trying to install MySQL and its my first time to install MySQL. I've downloaded the latest version which is version 5.7.12 and when I try to install … -
Began Watching Path cannot be empty error
Hi Dw. I'm trying to install MySQL and its my first time to install MySQL. I've downloaded the latest version which is version 5.7.12 and when I try to install … -
Began Watching Student Enrolment Form in PHP and MYSQL
I have a database in mysql which contains of four tables (Student, Units, Offering and Enrols_in) and i want to create an enrolment page where students can enrol in units … -
Replied To a Post in Student Enrolment Form in PHP and MYSQL
Well you say you are confused in enrol button but show nothing, also the number of pages depends on how you design your system(site). That means if certain things you … -
Began Watching Combine two database fields into one label in vb.net
Can anyone please help me about binding 2 fields from the database and combine them in a label? here's the situation: I have an ms access database with First Name, … -
Replied To a Post in Combine two database fields into one label in vb.net
Post your code of how you retrieve the data from your ms access then we can see from there. -
Began Watching Row Count of MS Access in vb.net
Can anyone please tell me how do I get the total row in my ms access table and put in my label.text at vb.net? -
Replied To a Post in Row Count of MS Access in vb.net
This is how I did it. Sub countR() ConnDB() Dim sql As String = "select COUNT (*) FROM register" Dim cmd As New OleDbCommand(sql, conn) dr = cmd.ExecuteReader() While (dr.Read()) … -
Began Watching How to break up the string into smaller strings in VB
How to break up the string into smaller strings. I am using VB I have the following string which I want to break it up on <br/> Dim s As … -
Replied To a Post in How to break up the string into smaller strings in VB
Just as Minimalist has said. Or another way is to now use the `.Trim("br>")` to remove the `br>` or use the replace as well like `. Replace("br>","")` at your code … -
Began Watching Error CA2213: Change Dispose Method to call Close or Dispose on this field
Good Morning group! I've made some minor changes to my coding (to open a log file, write to it and then close it) and now I'm getting an error that … -
Replied To a Post in Error CA2213: Change Dispose Method to call Close or Dispose on this field
Which code part is highlighted during this error? -
Replied To a Post in Working with MySQL
Oops Page Not Found. -
Replied To a Post in Working with MySQL
I've saw that mysql.exe command line tool under bin folder. I opened it and typed help and it showed many options. What must I do first, followed by what with … -
Replied To a Post in Working with MySQL
Ok thank. So I guess I will need both of my apps which is client and server. The server app should/can be installed on the same machine with the MySQL … -
Replied To a Post in Working with MySQL
Ok thanks. I've downloaded and installed MySQL server v5 32bit, its only has 2 command line apps, one named Shell and another is client. Is this the right tool and … -
Replied To a Post in Working with MySQL
.NET client library you are referring to MySQL .Net connector? -
Created Working with MySQL
Hi Dw. I'm a bit stuck with a lot of confusion here. I'm developing a client/server applications which communicates to each other, my project is a multi-thread based and I'm … -
Began Watching Working with MySQL
Hi Dw. I'm a bit stuck with a lot of confusion here. I'm developing a client/server applications which communicates to each other, my project is a multi-thread based and I'm … -
Replied To a Post in insert items from CheckedListBox to table in database
Cool. If your question/problem has been solved, you can mark it as solved. -
Replied To a Post in insert items from CheckedListBox to table in database
Ow well I notice that on your insert code you want to add each CheckListBox item on its own fields. That can be achieved but not how you are trying. … -
Replied To a Post in insert items from CheckedListBox to table in database
If you want to save them into same field on a database then you will need to add a delimiter to separate them like John:Sam:Steve Where in a CheckListBox its … -
Replied To a Post in insert items from CheckedListBox to table in database
Your image has a very low quality. I don't see a thing there. Please copy & past it here it will be easy to read it.
The End.