CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: daniel50096230

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    122

    Datagridview Checkbox

    Hi all,

    I have the following codes:



    Private Sub dgCustomerPackage_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles...
  2. Replies
    4
    Views
    163

    Random Sort

    Hi all,

    Good day. I am facing a problem here in sorting. I has a list of ID selected from database. The list of ID is the following:

    AH
    AJ
    AP
    AW
    AZ
  3. Check External Application is Minimize or Show

    I have the following codes:





    Public Class uiKeyLogger
    <Flags()> _
    Private Enum SHOW_WINDOW As Integer
    SW_HIDE = 0
  4. Replies
    4
    Views
    259

    Re: Password Decrypte

    Hi, I tried but it won't works..
  5. Replies
    4
    Views
    259

    Re: Password Decrypte

    Hi, sorry that I can't get what you means.
  6. Replies
    4
    Views
    259

    Password Decrypte

    Hi, I has the following codes to encrypte the password user enter:



    Public Function fnEncrypt(ByVal sString As String, ByVal lLEn As Long) As String
    Dim I As Long
    Dim...
  7. Replies
    1
    Views
    274

    Alphanumeric Password

    Hi everyone,

    I has a textbox for user to enter their password. How can I check whether the password meet the security requirement where the password must be combination of alphabetic and numeric?...
  8. Report Viewer Button set Printer Name programmatically

    Hi,

    Can we set the printer name automatically when user click on the Report Viewer button so that the report can print automatically without choosing the printer.

    The printer name was set in my...
  9. Replies
    3
    Views
    549

    Re: RDLC Auto Print By Page

    I had found the solution.Thanks.
  10. Replies
    3
    Views
    549

    Re: RDLC Auto Print By Page

    This is because we are printing the pages into a card printer, so everytime they print a page, they are required to insert Customer Card into the printer to print it. That why I need to prompt a...
  11. Replies
    3
    Views
    549

    [RESOLVED] RDLC Auto Print By Page

    Hi,

    I has codes below to print the rdlc report automatically and it works well.



    Sub sbAutoSendToPrinter(ByVal pstrCardMessage As String, ByVal pstrLocalReport As LocalReport)
    ...
  12. datatable read sql server xml data type

    Hi all, I have something below stored in my sql server 2008 xml datatype column:

    <Product_ID>A</Product_ID><Product_Name>Oil</Product_Name>


    How can i read the xml from sql server into...
  13. Replies
    3
    Views
    316

    Array problem

    I have the following code:




    Dim aaa As New List(Of String())
    Dim dt as Datatable
  14. Replies
    1
    Views
    574

    Vb.net double click open a file

    I have the following codes:



    Dim wb As New XLWorkbook()
    Dim ws As Object = wb.Worksheets.Add("Cont")
    wb.SaveAs("C:\Users\cmchong\Desktop\b.xlsx")


    How should I do if I want my vb.net...
  15. Datatable convert to xml and export to excel

    May I know is there anyone did this before? I have the code below:




    Private Function FnReadWeeklyConsumption(ByVal pstrSheetName As String, _
    ...
  16. Replies
    4
    Views
    374

    Re: Report Viewer Problem

    hi,hannesthegreat, any idea? Really appreciate if you have any idea or suggestion....
  17. Replies
    4
    Views
    374

    Re: Report Viewer Problem

    Microsoft Report Viewer..I am thinking whether there is a way to change the background color to white or totally cover it with rdlc.
  18. Replies
    4
    Views
    374

    Report Viewer Problem

    Please refer to my attachment of the picture of my report. How can I cover the gray area(circled) with my whole report or change the color to white instead of gray?29975
  19. Replies
    2
    Views
    429

    Re: Progress Bar Running

    I tried your code, but how can I embedded my progress bar codes into the thread so that the bar will running?
  20. Replies
    2
    Views
    429

    Progress Bar Running

    I have the following code:




    Private Sub btnConfirm_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConfirm.Click
    Try
    CheckSignature()

    ...
  21. Replies
    5
    Views
    427

    Re: Remove user control

    Hi, I tried this:




    For introw = Me.SplitContainer1.Panel1.Controls.Count - 1 To 0
    If Me.SplitContainer1.Panel1.Controls(introw).GetType.ToString =...
  22. Replies
    5
    Views
    427

    Remove user control

    I have the following codes:



    For Each ctrl As Control In Me.SplitContainer1.Panel1.Controls
    If ctrl.GetType.ToString = "Adjustment.UI.ucSubApproval" Then
    ...
  23. Replies
    1
    Views
    724

    Datagridview change image

    I have the following code :






    Private Sub dgPackage_CellFormatting(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellFormattingEventArgs) Handles...
  24. Replies
    0
    Views
    630

    Datagridview mouse hover

    I have the code following:



    Private Sub dgPackage_CellToolTipTextNeeded(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs) Handles...
  25. Replies
    3
    Views
    1,858

    DataGridView Auto Number

    I had the following code :

    Dim row As Integer = 0
    For row = 0 To pdgvDataGridView.RowCount - 1
    pdgvDataGridView.Rows(row).Cells(0).Value = row + 1
    ...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width