Search results for query: *

  1. C

    Question How to make DataGridView loads data faster ? (4000+ records)

    Hi, thanks for replying. I'm using MySQL Connector .Net, we can download it from MySQL sites. Here's part of my code : Private Sub IsiDgvSearch_Search() With DgvSearch .Rows.Clear() Dim CountLBObjDt As Integer = GetLBObjDt.Rows.Count If CountLBObjDt =...
  2. C

    Question How to make DataGridView loads data faster ? (4000+ records)

    Hi, I am making a small POS program using VB.Net and MySQL as the database. There's more than 4000 items so far and still increasing. It could be 1000 items more. So, at the Transaction form, I want to call a form which contain all items information a Dialog Form. It worked perfectly when only...
  3. C

    Question Why the receipt didn't print like what I want ??

    Hi all, I got a problem. I'm making a small POS program. I'm using EPSON TM-U220 Printer for receipt printer. There's a few fonts that the driver gives : FontA11, FontA12, FontA11[254], FontB11, control, controlA, etc.. I use FontA11. When I tried to print it with Ms. Word, it printed...
  4. C

    Question ProgressBar Problem

    Yes, i am thinking to use picture box to make it looks like in the picture that I attached. I am not a very pro programmer right now, so I really can't make my own control. Can u show me some simple code? Or is there any link for me to learn to make my own control? Especially progressbar...
  5. C

    Question ProgressBar Problem

    Hi Bobby, thanks for answering. I'm sorry I'm still newbie, so in XP we can't do it ? Could u explain more about it? When u said to write myown control, do u mean to use picturebar ? Thank you very much.
  6. C

    Question ProgressBar Problem

    Hi, I want to make a ProgressBar with text inside it and I want to make the ProgressBar not using bars. Sample in the picture : I can make the text inside the ProgressBar with CreateGraphics and DrawString, but I still can't make the progressbar not using bars. Please help me. Thanks in...
  7. C

    Question Text inside ProgressBar's Problem.

    Hi, This is my code : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Gr As Graphics = ProgressBar1.CreateGraphics Dim Percent As String = "" For I As Integer = 0 To 100 Percent = I & "%"...
  8. C

    Question What is the Font for receipt usually ?

    Epson TM-U220 Receipt Printer's Problem Hi, Right now, I am making a small POS application using Vb.Net for my father's store. I just bought Epson Printer TM-U220D. The printer's working perfectly. But, I have a problem with the font. I've tried every fonts that Windows has with font size 9 and...
  9. C

    Question Database Query help

    Here's what I would do : Dim StrToday as String = Format(Now, "dd/MM/yyyy") ... Dim cmd As OleDbCommand = New OleDbCommand("DELETE FROM Table1 Where EndDate < " & StrToday & " ;", con) .... In MySQL you need to reverse the date, from : "dd/MM/yyyy" become "yyyy/MM/dd". I don't know in Access...
  10. C

    Question How to focus on the very last word in the TextBox ?

    Thank you. I'll try it later on. :D
  11. C

    Answered How to make file readonly programatically?

    Thanks you. It really helps. :D
  12. C

    Answered How to make file readonly programatically?

    Hi, I am making a program to save it to (.txt). I am making it using System.IO. So far, my program can save the file already. But, I don't know how to make it readonly programatically. Please help me. Thanks in Advance. Regards,
  13. C

    Question How to focus on the very last word in the TextBox ?

    I make the TextBox1 properties become multiline and has vertical scroll. This is my code : Button1_Click : For I as Integer = 1 To 100 TextBox1.Text &= I & VbCrLf TextBox1.SelectionStart = TextBox.TextLength TextBox1.ScrollToCaret() TextBox1.Refresh() Threading.Thread.Sleep(1) Next I...
  14. C

    Question What is the Font for receipt usually ?

    Hi Trahair, Where can I find the Epson fonts ? Is it in the CD ?
  15. C

    Question What is the Font for receipt usually ?

    Hi, I am really confuse right now. I am making an application for retail shop (POS), I am using an EPSON printer TM-U220. It's a dot matrix printer. These days, I collected some receipt from other store as samples. I count the columns, most of them have 40 columns. I've tried every font that my...
  16. C

    show form random location

    spam ?? Did u mean 'spawn' ? Use timer, set to 2 seconds interval (2000). And use random function. Peace Out.
  17. C

    Opening a Dialog from another Dialog

    well, that's funny. That problem doesn't occur to me ? Could u show me the code ? Peace Out.
  18. C

    How to search a word in a block of text

    U can use 'Contains'. If txtbox1.Text.Contains(txtbox2.Text) Then Msgbox (txtbo2.Text & " Found !!") End If
  19. C

    Question find button?

    I don't understand what you wanna do, bro. Could you repeat what you wanna ask and be more detail. And what do you mean by "fetched" ? Regards, Nb. are you from singapore ?
  20. C

    Question How to make my MySQL Server more secure ?

    Hi, How to make my MySQL Server more secure beside putting password on it. From : MySqlConnectionString = "Database=dbtest;hostname=localhost;userid=admin;" Become : MySqlConnectionString = "Database=dbtest;hostname=localhost;userid=admin;password=gagigugego;" I am making an application...
Back
Top