Search:

Type: Posts; User: doctrin13th

Page 1 of 8 1 2 3 4

Search: Search took 0.29 seconds.

  1. Replies
    4
    Views
    3,444

    Re: RTF Print Preview

    Or maybe using word application and its print preview BUT I would like to disable my program and give exclusive focus to the word app while in the print preview then close the word app if print...
  2. Replies
    4
    Views
    3,444

    RTF Print Preview

    Rich Text Format print preview code anyone???
  3. Replies
    0
    Views
    4,181

    Auto-close Word after printing

    I have this code (in print preview button) for opening a print preview and printing a Word doc:


    Dim wApp As Object
    Const wdAlertsNone = 0

    Set wApp = CreateObject("Word.Application")

    ...
  4. Replies
    15
    Views
    2,469

    Re: Other networking method???

    I only cited winsock as an example. Actually I'm just inquiring for a better method (if there's any). Thank you dee-u.

    Thanks guys, a lot.
  5. Replies
    15
    Views
    2,469

    Re: Other networking method???

    Thanks guys! It worked. But is there any other (better) method to access the db file. Maybe using winsock???
  6. Replies
    15
    Views
    2,469

    Re: Other networking method???

    If there are several unit connected, how can I determine the IP of the unit that has the database (i.e. if IP is set dynamically)?
  7. Replies
    15
    Views
    2,469

    Re: Other networking method???

    How? What should I do? I'm sorry I'm new to network programming. Bear with me please.
  8. Replies
    15
    Views
    2,469

    [RESOLVED] Other networking method???

    I have a working project that access a MS Access database file using ADODB thru network from another computer. I shared the folder of the database file. I mapped the shared folder in other PCs and...
  9. Replies
    2
    Views
    1,690

    Problem on ONLINE Exam!!!

    I've already made an exam application using VB6 and MS Access database. The admin project can be installed in one workstation and the client project in several workstations.

    I use very basic...
  10. Replies
    4
    Views
    2,172

    Re: BIOMETRICS ZKEM Question?

    Thank you Max!
    Yes I already did that. I already get the menu popping but I don't have any idea how to even start connecting, communicating and interacting with the physical device using the object
  11. Replies
    4
    Views
    2,172

    BIOMETRICS ZKEM Question?

    Hello good day!
    I'm new to biometrics programming.
    Can you give me a crash course on biometrics.
    I have this biometric device (ZKEM) which accept fingerprint input connected to the PC using LAN...
  12. Replies
    9
    Views
    4,557

    Re: ASPIRE Notebook error code 0xc000000f

    How to try the hard drive without an alternate laptop? can I try it in a desktop?
  13. Replies
    5
    Views
    1,559

    Re: How to: ID System

    do you have basic knowledge in database programming using ado? the saving and retrieving of data from a ms access database??
    if so, then all you have to learn is the transfer of those data to a ms...
  14. Replies
    9
    Views
    4,557

    Re: ASPIRE Notebook error code 0xc000000f

    i also first thought it is the hardware... is it a hopeless situation?
  15. Replies
    5
    Views
    1,559

    Re: How to: ID System

    I have developed an ID system for a client long time ago.
    I use MS Access database for the data and I use Excel worksheet for the ID template.
    The ID template consists of Autoshapes and Textboxes...
  16. Replies
    9
    Views
    4,557

    ASPIRE Notebook error code 0xc000000f

    My son accidentally hit my Acer Aspire laptop (Windows 7) with his toy (near the touchpad)
    Instantly it blackout. Then automatically restarted; however, from then on, it get stuck in the boot screen...
  17. Replies
    9
    Views
    8,635

    Re: DatePicker show Calendar?

    Thanks guys! It worked. I used krool's and follow bonnie west's (to set datepicker visibility to False)!
    BIG thanks!
  18. Re: Compile error: Variable not defined

    It is because technome is right, error object is called "Err" not "Error". After you corrected it, where was the error highlight now?
  19. Re: Standard Exe Form: A way to add Datapicker?

    DatePicker is not available on first launch of the program. You must add the Microsoft Windows Common Control 2.6.0. You can do this by selecting Components from the Project in the menu or pressing...
  20. Replies
    5
    Views
    1,256

    Re: Run-time error '42': Object required

    where does the error highlight?
  21. Re: Compile error: Variable not defined

    when the error window pops out, what line of code has the highlight?
  22. Replies
    9
    Views
    8,635

    Re: DatePicker show Calendar?

    Thank you for the response guys
    Actually, both your codes' result is exactly what I'm looking for (Bonnie West's and Krool's). However, when the calendar is displayed (dropped down) already, I want...
  23. Replies
    9
    Views
    8,635

    Re: DatePicker show Calendar?

    exactly what i need but just one more...I don't want to see the datepicker. only the calendar.

    what is UAC?
  24. Replies
    7
    Views
    821

    Re: Inconsistent? Runtime Error 5

    due to the lack of details on your given code (i.e. data type, values), I presumed the data type and value of the variables and I've come up to the following example for testing:


    Private Sub...
  25. Replies
    7
    Views
    821

    Re: Inconsistent? Runtime Error 5

    can you show the piece of code where the error occur?
  26. Replies
    9
    Views
    8,635

    [RESOLVED] DatePicker show Calendar?

    Can I force the date picker to show/display the calendar without the user clicking its dropdown button? any method or command?

    by the way I'm using date picker instead of monthview for a reason
    ...
  27. Replies
    1
    Views
    548

    Random Questions

    This maybe quite immature topic but many programmers overlook or neglect these...or just confuse (just like me :bigyello: )

    Here I go:...
  28. Replies
    12
    Views
    7,945

    Re: SelStart At Mouse Position

    Actually I'm developing my numeric textbox (ActiveX control) for custom behaviors and properties. Just like MartinLiss' numberbox but offers a choice whether to include digit grouping separator ",".
  29. Replies
    12
    Views
    7,945

    Re: SelStart At Mouse Position

    With two textboxes, focus to the other textbox (not the txtNum)
    Using this:
    (This is your code)


    Private Sub txtNum_GotFocus()
    Dim s As Integer
    Dim y As Integer
    s = Txtnum.SelStart
    y =...
  30. Replies
    12
    Views
    7,945

    Re: SelStart At Mouse Position

    Sam it doesn't seem to be accurate in position the caret to where I click
  31. Replies
    4
    Views
    818

    Re: Comparison question

    O I see. Thank you very much! Really help big time.
  32. Replies
    4
    Views
    818

    [RESOLVED] Comparison question

    What is the difference of

    If (rs.State And adStateOpen) = adStateOpen Then
    and

    If rs.State = adStateOpen Then

    What is the logic of the first premise?
  33. Replies
    12
    Views
    7,945

    Re: SelStart At Mouse Position

    Thank you! There's the idea.Very close! However, the problem is the length of the text is different when focused and when loses focus making the SelStart property variable.
  34. Replies
    12
    Views
    7,945

    Re: SelStart At Mouse Position

    Say the input text is "1500.5". I want the textbox to format "1500.5" to "1,500.50" when it loses focus and format back again to General Number ("1500.5") when it gets focused, but still I want the...
  35. Replies
    12
    Views
    7,945

    SelStart At Mouse Position

    I have a textbox "txtNum" with the following codes

    Private Sub txtNum_GotFocus()
    txtNum.Text = Format(txtNum.Text, "General Number")
    End Sub

    Private Sub txtNum_LostFocus()
    txtNum.Text =...
  36. Replies
    2
    Views
    795

    Re: Simplify Queries

    how about the picking of the just last payment in the payments table
  37. Replies
    2
    Views
    795

    Simplify Queries

    I have this code:


    Query = "SELECT account.acct_code,account.acct_name, account.acct_balance FROM account WHERE (account.acct_open = True)"

    Rs.Open Query, Cnx, adOpenForwardOnly,...
  38. Replies
    5
    Views
    803

    DB networking

    How can I access the server's database (MS access file) with the use of winsock and ADO?
    Currently I'm using network drive mapping and pointing to that mapped drive as the path to my database.
    I...
  39. Replies
    5
    Views
    5,684

    Re: Basic Network Practice?

    That's exactly what I think. So I asked.

    I thought that the application in the main PC (where the posting and modification of data in the database take place) is what I could call a server side...
  40. Re: How to Set which Option Button is True

    1. Put the 3 option buttons inside a Frame.
    2. In the Form_Load event, type Option2.Value = True (assuming the name of the option buttons 2 is Option2, and if you want it to be selected wen the...
Results 1 to 40 of 304
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width