• Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Can anyone please tell me why one of my error messages does not display?

    Which error message doesn't display?
  • Member Avatar for Mr.M
    Mr.M

    Began Watching Multicolumn Combobox with Column Header

    Hi, Im trying to use a multi column combobox from this thread [Here](http://www.codeproject.com/Articles/8619/Flat-MultiColumn-Combobox-with-Autocomplete) Just wondering if there's a way to show Column header from its datasource (sql) Can't find a …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Multicolumn Combobox with Column Header

    Please check this out: https://social.msdn.microsoft.com/Forums/en-US/c47e5a42-7fec-41ed-841a-742b96573d7a/how-do-you-set-the-column-heads-for-a-combobox?forum=isvvba And this: http://www.mrexcel.com/forum/excel-questions/10771-column-headings-combo-box.html
  • Member Avatar for Mr.M
    Mr.M

    Began Watching How to display tag to a label for a list of textbox and combobox

    Hi, There are 50+ textboxes and comboboxes on my form and I created a label to store the tag of each textbox or combobox as it is focused. This is …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to display tag to a label for a list of textbox and combobox

    What error does it throw?
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Remove listview Item and deduct value of Item from total

    That's great. I think you may now mark this question as solved then.
  • Member Avatar for Mr.M
    Mr.M

    Began Watching Remove listview Item and deduct value of Item from total

    Hi guys, I have a listview that displays "product Description" in the first column and "Product Price" in another column, after the "add" button is clicked on frmSales form. After …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Remove listview Item and deduct value of Item from total

    Try this. You will have to change the naming. I have a Label which is Label2 which acts as a Total price or (Current Total) and I'm using ListView4. For …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    Yeah I think that will be a problem, but I think (note sure if its possible) to let the server as a relay be the one that gets the time …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching GPS Tracker

    Hi, All Like to know how to create a TCP/IP listener for my cloud based mysql server. Am very much new to this process. Actually i have a GPS Tracker …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in GPS Tracker

    How the data is sent and received? Meaning which software used? Yours or third party software which is sending and receiving the coordinate.
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    Ok. But I'm a bit not sure if I keep the server as relay, if the communication between clients will be in real time.
  • Member Avatar for Mr.M
    Mr.M

    Began Watching fill DataGridView without form load event

    hi guys I was wondering whether it is possible to load items to the data grid view without having to do it in the form load event. if so, please …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in fill DataGridView without form load event

    This could really depends on when do you want to fill it, just as Jim had said. There are quite a number of ways you can achieve this. Could you …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    Thanks, just to answer your question on how and when will a server knows when to cut a connection, the server will keep some essential details of the clients like …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Ok pleasure is all mine.
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    Ok this now just sound more complex, as you said if the server establish connection and handing over to the clients to communicate the server won't have any control of …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    I think I need to try simplifying this. Suppose I have 10 clients that are connected to a server. NOTE1: A client can send data to a server and a …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Ow and another thing is that I did notice that you said at the first time the item should be compared between ListView1 and ListView3 then the second Time you …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Ok as I've said, I've managed to do this but there is just one problem I faced when doing this, after a lot of challenge trying to do this. The …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Ok. About my previous post, I think you can still use the ListView. I will work this out and I hope I will post back as you asked.
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to connect to a client using IP Address

    Thanks but, what I'm trying to say is that the server knows the clients IP address because I use "Client(index)" to support multiple clients, but now let's say there are …
  • Member Avatar for Mr.M
    Mr.M

    Created 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 …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching 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 …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in from textboxes to listview

    @Dj yes I agree, I posted the use new line early then later when I was in front of my pc I then noticed that its not working. But I …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in from textboxes to listview

    @DJ but there are situations where the items are retrieved somewhere maybe from a file or from a database then are added to a control, so I think we shouldn't …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in from textboxes to listview

    I've just worked with another project where the OP was also doing something similar except that, that's OP wanted to make more then one selections at the same time, as …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Meant in ListBox1 not ListView1
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    I've tried this out using the ListView but wasn't successful, then I change from ListView to ListBox which then I managed to do what you are trying to do. With …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in from textboxes to listview

    An example based on your above code will be: List1 = Me.lsv1.Items.Add(Me.txtDescription.Text & Vb.NewLine) List1 = Me.lsv1.Items.Add(Me.txtPrice.Text & Vb.NewLine) Something like this should help do what you intend to do.
  • Member Avatar for Mr.M
    Mr.M

    Began Watching from textboxes to listview

    Hi guys, I have a form called frmSales, with two textboxes and a list box. what I want to do is to fill the listview with product description from txtDescription …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in from textboxes to listview

    You need to add &VbNewLine at the end of the add statement so that when you click twice it will write the data on a new line below the previously …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching multiple listviews

    Hi i want to add items from multiple listviews to other Listview (Main Listview)when i click the same button each time select diffrent item from diffrent listview how can i …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in multiple listviews

    Well I didn't get your question straight, so I will try to break it down please correct me if I'm wrong. I think you want to transfer the selected data …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Help in downloading file from net in VB .NET

    Don't forget, if your question has been answered to mark it as solved.
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Help in downloading file from net in VB .NET

    The above is one URL address, it also have a very good example of how to use it.
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Help in downloading file from net in VB .NET

    https://msdn.microsoft.com/en-us/library/ez801hhe(v=vs.110).aspx
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Help in downloading file from net in VB .NET

    WebClient.DownloadFile seem to be easy to work with, have a look at it. stackoverflow.com/questions/4066082/download-file-in-vb-net-2010
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to make a Phone sending message

    Did you read the guide? Also you can google there are other SDKs that you can also use instead of OZEKI. But Ozeki also provides with customer care so you …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching Help in downloading file from net in VB .NET

    I have a file download code in vb .net but when i try to download any file (.rar in this case) everything downloads properly but when i open the .rar …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Help in downloading file from net in VB .NET

    This could be done by to many lost packets, or the way you receive and write the downloaded bytes so it would help if you can post your code here …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching How to make a Phone sending message

    Hi members I need some help over here. trying to make a software who send free msg to phone (messages of type like "you have 2 days left for payments) …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in How to make a Phone sending message

    This will require one of the two,(1) a deep knowledge and understanding of VOIP, with this knowledge you will be able to develop your our SDK or instead of developing …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching DBNETLIB] ConnectionOpen(Connect()).]SQL server

    how to fix [DBNETLIB] ConnectionOpen(Connect()).]SQL server http://i.gyazo.com/3e7e693141fd157da860907218fbb1a0.png this is UID and password of my SQL server I try to insert but this is the problem I get http://i.gyazo.com/c903e03c7d697b7b8c2c80933e99e376.png and this …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in DBNETLIB] ConnectionOpen(Connect()).]SQL server

    Are you sure the server you are trying to connect to is up and running? Also the server name are you sure matches with the name you entered? Is the …
  • Member Avatar for Mr.M
    Mr.M

    Began Watching WebBrowser return to specific link

    Hi, how to avoid the WebBrowser in Vb.net to go at specific website, then return to specific link Here the code I try, but got an error,expression does not produce …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in WebBrowser return to specific link

    Does the user have a place where s/he will enter the address or the browser retrieve the URL somewhere? If the user is the one entering the URL then you …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Textbox Should not enter the first character as dot

    Yes thanks, typed that while I was in a hurry.
  • Member Avatar for Mr.M
    Mr.M

    Began Watching Textbox Should not enter the first character as dot

    Hi.. I'm doing a project on Vb.net 2008.. There's a textbox called "Price" which requires validation.. The validation is that the textbox should not enter dot, special characters or alphabets …
  • Member Avatar for Mr.M
    Mr.M

    Replied To a Post in Textbox Should not enter the first character as dot

    Use this, its very simple. If txtPrice.Text.StartWith(".") Or Char.IsLetter(txtPrice.Text) Then ' The entered values are not allowed here, either a user entered a "." Or a user entered a letter …

The End.