User Profile

Collapse

Profile Sidebar

Collapse
Esmael
Esmael
Last Activity: Jan 17 '08, 02:05 AM
Joined: Feb 5 '07
Location: Quezon City,Philippines
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Esmael
    replied to Excel Automation-With Visual Basic 6
    Thanx for the comments killer42,

    actually this code was properly indented in my source ... sorry if i just copy ang paste it here... i know the burden of aligning it... specially the logic. But thank you... sorri i still dont know how to attached code here...hehehehe he


    Happy New Year
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to ADO security warning
    Hi...

    Thanx for the effort.I appreciate it. I'ved already fixed it myself....



    Have a great day....
    See more | Go to post

    Leave a comment:


  • Esmael
    started a topic ADO security warning

    ADO security warning

    Hi...


    I have an ASP-VBSCRIPT/ASP CLASSIC program the problem is when am tryng to retrieve the data for example for editing... no data was displayed but i can view it from the list and its on my database.
    withOut the error below, it works well. can anyone tell me what do i need to do with this?





    ADO Security Warning:
    This website uses a data provider that may be
    ...
    See more | Go to post

  • Esmael
    replied to Back up database using VB
    HI... what version of VB? what database are you using?...
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to Excel Automation-With Visual Basic 6
    HI...


    I'ved done my first step... i manage to decreased its memory usage... but still need more...



    is there anyone who can help me with this....?


    thank you ....
    See more | Go to post

    Leave a comment:


  • Hi...


    sample source code.

    /*************** *************** *************** *************** *****/
    Private Sub SetStatBar()
    Dim panels As Panel

    'Status Bar
    SB.Move 100, 100, 800, 300
    SB.panels(1).Te xt = "DTR System ..."
    SB.panels(8).Te xt = "Today is: " & Format$(Now, " DDDD, MMMM dd,yyyy ")
    With SB.panels...
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to VB6 with Access 2000
    Hi Callsupport1... .


    Yeah... i also encountered that problem when am starting on VB...
    Your idea is correct... its because of the MS Access version.

    You dont have to do anything more on your given codes... all you have to do is to changed your referenced:


    If you are referencing to
    Microsoft DAO 3.5 Object library

    changed to:
    Microsoft DAO 3.6...
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to Excel Automation-With Visual Basic 6
    I cant find were to attached my attachment!!! That module is fully functional... all i need is to know how to re-write that code. It eats a lot of memory. My PC memory is 2Gig , but if it runs on the lower memory it stop. maybe that is one of the limitation of excel...


    Due to business also i cant focus on this one...i believed you could help me.

    Thank YOu!...
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to Combolists
    Hi...


    From database how do you relate thos two tables...!?
    relationship?
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to Excel Automation-With Visual Basic 6
    Hi...

    From VB 6 using text box, i have two option of searching Lease No Column C on excel and Group Name column L. so from VB6 the program will read from the Excel File A and copy its summary sheets and add new tabs with name "summary 2" and transfer all the data to Excel File B same format with Excel File A.... but this one is a blank.... so the data from excel A-Copy by the program to write it to excel B.
    ...
    See more | Go to post

    Leave a comment:


  • Esmael
    started a topic Excel Automation-With Visual Basic 6

    Excel Automation-With Visual Basic 6

    [LEFT]
    Hi to all,

    /*************** **************/
    OS-WIn XP SP2
    VB6 SP6
    /*************** **************/

    Is their anyone who can help me with this:

    Source code written on VB6.

    Description:
    When this procedure is fired. It will read and seach from an excel file and locate the INPUTTED text as search item. Searching will start from Column 'L' to 'Z' and from...
    See more | Go to post
    Last edited by Killer42; Jul 4 '07, 02:29 AM. Reason: Added [CODE=vb] tag. Oops! Removed because message became empty.

  • Esmael
    replied to help
    Hi...


    It is more like Time Keeping System! actually i'ved done one. can u pls add more specification to your program description...



    GoodLuck!
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to can i make my own query in vb6?
    Hi...

    Yes...yes...yes ...



    GoodLuck......
    See more | Go to post

    Leave a comment:


  • Hi....

    Are you familiar with ARRAYS... i think this can solve your problem....
    A dynamic arrays can solve your problem... and since your adding and adding an entry Use Redim for your array... i hope you get my idea...


    One more thing i dont regularly visit this site because am usually bz....


    GoodLuck.......
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to List.Listcount property not working
    Hi...

    I try to evaluate that in my PC... but i dont see any problem...
    Heres my code:

    If LstGroups.ListC ount > 0 Then
    For i = 0 To LstGroups.ListC ount - 1
    Debug.Print i
    Next i
    End If


    On my Immediate window i successfully see the output from 0-14 of 15 records... and it has no error...

    What was the error message?...
    See more | Go to post

    Leave a comment:


  • Esmael
    started a topic SDK for hamster

    SDK for hamster

    HI to all...

    I have a DTR system that is already working using a Barcode as input...but am modifyng it to Finger Scanner... Is there anyone here who know where can i get an SDK for Hamster(By NITGEN)?





    Thanx...
    See more | Go to post

  • Esmael
    started a topic SDK for Hamster (by NITGEN)

    SDK for Hamster (by NITGEN)

    Hi to ALL,

    I have a DTR system that works using BarCode... and now am modifyng it for Hamster(Finger print scanner)... i'ved seach and downloaded many samples/Trial version SDK from the internet but none of them works fine...
    is there anyone who can help me?

    Million thanx to all....
    See more | Go to post

  • Esmael
    replied to KeyPress Function
    Hi....

    If you still dont get it...
    I have her a simple code to display the equivalent keyascii from the keyboard:
    as an example i use the form for demo.

    Create new project from VB...
    and from the form properties - Keypreview set it to TRUE

    Private Sub Form_KeyPress(K eyAscii As Integer)
    MsgBox KeyAscii
    End Sub


    NOTE:
    A-Z=65-122...
    See more | Go to post

    Leave a comment:


  • Esmael
    replied to taskbar
    Hi.. to all...

    Thank you for the idea willakawill,killer42 and to ALL in the community.

    I hope there is someOne who can help me on my Finger Print Scanner (DTR SYSTEM) Project... this project was originally develop for barcode and its working already... but the company asked me to modify it for FingerPrint for my DTR system modification... i need a free SDK source code?

    OS-WIN XP
    Prog. Language-VIsual...
    See more | Go to post

    Leave a comment:


  • Esmael
    started a topic taskbar

    taskbar

    Hi to all...



    Hi... is there anyone who can help me...?
    I have a program that locks a taskbar; the problem is if the user press the WINDOWS key it pop-ups a menu from start.

    I want to lock also the pop-up menu from start button... and disabled also the ALT+TAB ...Using VB6. is there anyone her knows how to do that?



    Thanx....
    See more | Go to post
No activity results to display
Show More
Working...