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

Search:

Type: Posts; User: Akim

Page 1 of 10 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    1,587

    Re: Handling Keypress Or KeyDown Events

    That's not exactly what you need, but might guide you in the right direction (handling keypress for combobox):


    Protected Overrides Function ProcessDialogKey(ByVal keyData As...
  2. Replies
    173
    Views
    16,002

    Re: Pictures of CodeGurus

    Well... I don't have a picture, but this one will work (I don't do HTML though) :D

    http://home.earthlink.net/~azubarchuk/coder_bigcat.jpg
  3. Replies
    2
    Views
    687

    Re: Order Entry - Control Question?

    There are too many factors involve to decide what to use.
    You have to think of your order entry form from user's point.
    Will that be convenient for users to use that form?
  4. Replies
    4
    Views
    914

    Well, it's a "little" difficult to figure out...

    Well, it's a "little" difficult to figure out what you guys want.
    But in the example that I had in my previous post, I gave you a general idea...
    Here is another small sample app (attached)....
  5. Thread: 2 forms in vb.net

    by Akim
    Replies
    1
    Views
    621

    Re: 2 forms in vb.net

    http://www.codeguru.com/forum/showthread.php?s=&threadid=207381
  6. Replies
    4
    Views
    914

    http://www.codeguru.com/forum/showthread.php?s=&th...

    http://www.codeguru.com/forum/showthread.php?s=&threadid=203140&perpage=30&pagenumber=1

    Scroll to the bottom
  7. Re: how to insert table into a cell of another table using word object

    Open MS Word;
    start recording a macro;
    insert a table into the cell of the table created;
    Stop recording your macro;
    open Word's VB Editor;
    find your macro module;
    BINGO! You have a ready to...
  8. Replies
    6
    Views
    1,044

    Re: Thnx....Urgent help..how to query...where clause in DBASE database

    I've never worked with Dbase, but can you try:
    "Select table1.* from table1 where table1.field ='aaa'"..

    I'm just curious if that change anything.
  9. Replies
    3
    Views
    748

    Re: how do you delete a file?

    FileSystemObject has DeleteFile method
  10. Thread: ole problem

    by Akim
    Replies
    3
    Views
    751

    Re: ole problem

    OLE1.SourceDoc = App.Path & "\YourWordDoc.doc"
    OLE1.CreateEmbed OLE1.SourceDoc

    If that's what you need.
  11. Replies
    33
    Views
    5,857

    nolc, I haven't worked with MDI much, but in...

    nolc,

    I haven't worked with MDI much, but in your case you can consider your MDI parent as a Sub main (set it as startup form).
    Just declare Form1 as public.

    P.S. Honestly, I've never worked...
  12. Replies
    8
    Views
    1,200

    You can still use INSERT INTO...

    You can still use

    INSERT INTO tblHistoryEmployees
    SELECT tblEmployees.*
    FROM tblEmployees

    if you have your fldDate Default value set to Now(), you'll get a correct date.

    As for your 2nd...
  13. Replies
    33
    Views
    5,857

    My apologies!

    nolc,

    Thanks for returning my attention to this topic.
    I want to apologize for the "bad" code that I have previously posted! I should've seen that there has to be a better way!
    I have an excuse...
  14. Replies
    13
    Views
    1,444

    Pyro, If you want to to assign a " to a...

    Pyro,

    If you want to to assign a " to a string, you have to include it into "" :


    Dim mystring As String
    mystring = """"
    MsgBox mystring

    If you want to assign your HTML string to VB...
  15. Replies
    13
    Views
    1,444

    If I understand you correctly, you want to do...

    If I understand you correctly, you want to do something like that:


    Dim strHTML As String
    Dim iFileNumber As Integer

    'Some HTML code...

    strHTML = strHTML & "<a href = """ &...
  16. Replies
    8
    Views
    1,200

    That's very simple. He just needs to create...

    That's very simple. He just needs to create fldDate with a Defaul Value "Now()"
  17. Replies
    2
    Views
    1,063

    Re: ASP - Turn off taskbar/status bar in IE

    Well, maybe I'm wrong, but you can't turn taskbar/status bar off, untill you use 'href'.
  18. Thread: ?

    by Akim
    Replies
    4
    Views
    760

    Can I answer for Cimperiali? Thanks :) Yes,...

    Can I answer for Cimperiali? Thanks :)

    Yes, it is possible. (Cimperiali will provide a code. I hope he will) ;)

    P.S. I'm in a good mod, sorry Cimp :)
  19. Replies
    3
    Views
    1,118

    Obviously, that's the easiest way ;)

    Obviously, that's the easiest way ;)
  20. Thread: MkDir(....)

    by Akim
    Replies
    2
    Views
    1,114

    Re: MkDir(....)

    You can try the following:


    If objFileSystemObject.FolderExists("c:\tifprintertext") = false Then objFileSystemObject.CreateFolder "c:\tifprintertext"

    Edit: You'll have to declare...
  21. Thread: SQL Query Help

    by Akim
    Replies
    3
    Views
    768

    Re: SQL Query Help

    I guess, that's what you need:
    http://www.codeguru.com/forum/showthread.php?s=&threadid=205624
  22. Thread: Software Updates

    by Akim
    Replies
    6
    Views
    823

    Re: Software Updates

    Scott,
    If all users are on the same network, you can write a small .BAT that'll copy your new.exe

    It's only one line. Something like:
    xcopy \\server\update\new.exe c:\progra~1\YourApp /s/e/h/i/q
  23. Replies
    3
    Views
    1,118

    Re: Adjusting Screen Resolution

    Q: What if client's monitor/video card doesn't support your app's resolution?

    You'll have to write a function that'll scale your app (form and controls). Well, that'd be an efficient way of doing...
  24. Replies
    4
    Views
    807

    Yeah, I forgot about stars :)

    nt
  25. Replies
    4
    Views
    807

    Re: An intersting poll...

    Indeed :)
Results 1 to 25 of 236
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured