Search:

Type: Posts; User: James Stanich

Page 1 of 13 1 2 3 4

Search: Search took 0.98 seconds.

  1. Replies
    4
    Views
    4,495

    Re: combobox gotfocus

    jargraj

    This is for VB. You are looking for Excel. Go try posting in the VBA area.
  2. Replies
    13
    Views
    1,675

    Re: Msflexgrid

    Dim str_ROW_DATA as String

    str_ROW_DATA = RST!FIELD1 & vbtab & RST!FIELD2

    Me.MsflexGrid1.AddItem str_ROW_DATA

    You can put this in a loop for each record to add to the grid...

    BTW: vbtab...
  3. Replies
    13
    Views
    1,114

    Re: Well - Merry Freakin' Christmas

    4 years later, and I cannot remember what the hell CC is for...
  4. Replies
    2
    Views
    668

    Re: ??? Set Default Email Client ???

    Damn, I forgot all about that. Yes it has been awhile...

    Thanks again.
  5. Replies
    10
    Views
    1,489

    Re: ??? GPS Mapping component ???

    Doing quite well. Yes I am back.

    Looking at your suggestions now. I have been struggling with this for awhile, and cannot "stumble" across a solution...
  6. Replies
    10
    Views
    1,489

    ??? GPS Mapping component ???

    Does anyone know of a GPS mapping component? I want the ability to let user record GPS coordinates then auto plot them using Visual Basic.

    Any ideas?
  7. Replies
    2
    Views
    668

    ??? Set Default Email Client ???

    Is there a way, through Visual Basic, to set the default email client of a users system?


    Thanks in advance :)
  8. Replies
    4
    Views
    540

    Re: XP Style Progress Bars

    If running application on XP platform, you cn create a mainifest file which applies an XP theme to your app. Note: This trick only works on XP.
  9. Replies
    19
    Views
    1,041

    Re: Where's the 'Any Key'

    What the hell does that mean?
  10. Replies
    105
    Views
    7,758

    Re: Designing a Form

    See attached design...
  11. Replies
    2
    Views
    1,006

    Well

    This is what I discovered and use for these situations:

    http://abstractvb.com/downloads/imagecal.asp
  12. Replies
    23
    Views
    2,081

    Well

    7 months? Digging up old threads?
  13. Replies
    20
    Views
    1,017

    Well

    Why not store the MouseCol in a variable.

    Then sort on that column based on the variable...

    Does this make sense?
  14. Replies
    9
    Views
    1,026

    Well

    Reference to the Microsoft Outlook Library - on mine 9.0
  15. Well

    I agree, but how small would all those controls be if it had to shrink (resize) everything to a 640 x 480 display?
  16. Well

    Another way...



    Msgbox FormatNumber(30892457245)
  17. Well

    Develop at least 800x600, then check to see if system has higher resolution. If so change the system resolution to 800x600, not your application. Then change it back when your application exits?...
  18. Well

    Use Microsoft Visual Studio Installer. I have used it to install apps on Win 2k and XP and have not run into any problems with the installer packages... just with my applications

    :rolleyes:
  19. Replies
    9
    Views
    1,026

    Well

    '*******************************************************************************
    ' SENDMESSAGETHRUEXPRESS (SUB)
    '
    ' DESCRIPTION:
    ' ACTUALLY SEND THE EMAIL MESSAGE THRU EXPRESS...
  20. Replies
    2
    Views
    804

    Well

    Try this:

    Add an Image control to your form, with a small bmp inside.

    Then try this...



    Me.MSFlexGrid1.Row=1
  21. Replies
    11
    Views
    734

    Well

    Not sure if the datacontrols allow for this but if you are pulling info from a database...

    SPECIFY THE SORT ORDER



    ORDER BY [FIELDNAME]
  22. Well

    FormatNumber(1000,2)
  23. Replies
    11
    Views
    734

    Well

    Specify the softing order in the query...
  24. Well

    try...



    Me.DK_F.Recordset.MoveLast
    Me.DK_F.Recordset.MoveFirst
    Me.DK_F.Refresh
    Me.DK_F.RecordSource = Query
  25. Well

    Just disable the menu item in question.... :p
  26. Well

    Refresh the datacontrol...
  27. Well

    Try:



    Dim myOlSel As Outlook.Selection
    Dim olExp, olCurrentFolder
    Dim x As Integer
    Set olExp = Outlook.ActiveExplorer
    Set olCurrentFolder = olExp.CurrentFolder
    MsgBox “Folder “...
  28. Replies
    17
    Views
    29,962

    Well

    Am I really? :cool:

    Thanks...
  29. Replies
    3
    Views
    472

    Well

    When creating, or switching between the forms, can you maximize the form to be active? Will this eliminate the issue?
  30. Replies
    5
    Views
    3,542

    Well

    AutoRedraw = True

    Me.Refresh

    Are you using the LOCKWINDOWUPDATE API call anywhere in your code?
  31. Well

    Basic usage :



    AddCustomToolTip Me.DTPicker1(0), "MIN Date : " & Date, Me



    Me.DTPicker1(0) = The control to set
  32. Well

    What is "cmbServer"?
  33. Well

    So is it working correctly now??
  34. Replies
    4
    Views
    836

    Well

    Check out Emailing thru Winsock
  35. Replies
    13
    Views
    1,114

    Well - Merry Freakin' Christmas

    Happy Ho-Ho to all....

    CC here I come... ;)
  36. Well

    SetParent API ... ;)
  37. Replies
    6
    Views
    1,030

    Re: YAHOO!

    You are welcome. Merry Christmas. ;)
  38. Replies
    6
    Views
    1,030

    Well

    Took awhile, but I foundthis site...

    LOOK HERE
  39. Replies
    18
    Views
    1,446

    Well

    The AnimateWindow function enables you to produce special effects when showing or hiding windows. There are three types of animation: roll, slide, and alpha-blended fade.

    REQUIRES WIN 98 or LATER...
  40. Well

    'In general section
    Private Declare Function GetTickCount& Lib "kernel32" ()
    Private Sub Form_Load()
    'KPD-Team 1998
    'URL: http://www.allapi.net/
    'E-Mail: KPDTeam@Allapi.net
    'Get...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width