Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PraveenMenon

    Listview resizing question

    Dear Matt, Try this API Substituted function, created by Randy Birch at the www.mvps.org/vbnet/. '======================================================= ' Copyright ©1996-2003 VBnet, Randy Birch, All Rights Reserved. Private Declare Function SendMessage Lib "user32" Alias...
  2. PraveenMenon

    Your Thoughts Please!!!

    Dear Matt, Hope you are doing fine and good. I just thought you needed a few words. I really dont think the questions you posted were obscure, but i really think the gurus here answer question that are 100% known to them, but some times to completely reply a thread, it needs a bit research...
  3. PraveenMenon

    Valediction

    I think, i 've tried my maximum, to help you people out of problems, now i think its time to say gudbye.. dont know why i feel so, but i think there are numerous exceptional people here who can always do the job u need... I've researched on your problems and i've done my best to solve them.. i...
  4. PraveenMenon

    PictureClip control (.GraphicCell())

    Absolutely Adoozer... The cols property and the rows property determines the graphic cell... Sorry i was away for some time, didn't get time to respond to y'r post.. All the Best Praveen Menon pcmin@rediffmail.com
  5. PraveenMenon

    Command Button

    and Tek-Tips is for software professionals... All the Best Praveen Menon pcmin@rediffmail.com
  6. PraveenMenon

    Stop Endless Loop

    Why should there be a doevents inside a timer with a short interval and this short code? Is this the real code inside the loop? All the Best Praveen Menon pcmin@rediffmail.com
  7. PraveenMenon

    Vanishing values... Why!!!

    How many times i'll have to post this? txtisComment.Text = adoRecordset.fields("isComment") & "" All the Best Praveen Menon pcmin@rediffmail.com
  8. PraveenMenon

    How create a unique file name in VB 6?

    I have a function for u cl8855 .. try it, and let me know.. '========================================================== 'API Private Declare Function GetTempFileName Lib "kernel32" Alias "GetTempFileNameA" (ByVal lpszPath As String, ByVal lpPrefixString As String, ByVal...
  9. PraveenMenon

    can you make "odd shape" forms in vb?

    True strong.. i was concerned about the event getting fired, even tho we want the code to be executed when we click the mouse and drag the form to a new place.. But in my POV, everything that results in firing unwanted code is bulky... Just a thot.. All the Best Praveen Menon pcmin@rediffmail.com
  10. PraveenMenon

    Detect when mouse leaves control region

    http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=34339&strZipAccessCode=our%5F343394255 http://www.planetsourcecode.com/vb/scripts/ShowZip.asp?lngWId=1&lngCodeId=40793&strZipAccessCode=odif407931111 All the Best Praveen Menon pcmin@rediffmail.com
  11. PraveenMenon

    can you make "odd shape" forms in vb?

    Mouse move event fires when ever u move the mouse inside the form. not necessary that the mouse button is pressed.. All the Best Praveen Menon pcmin@rediffmail.com
  12. PraveenMenon

    Processing a recordset

    Kavius, >>(reading from memory is faster than reading from database to memory then reading from memory). Please can i have more on the statement? May be u have some links as well for me.. Thanks. All the Best Praveen Menon pcmin@rediffmail.com
  13. PraveenMenon

    can you make "odd shape" forms in vb?

    strongm, aint this sub supposed to be in the form_mousedown event? Form_MouseMove is gonna be pretty expensive, i suppose... Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) Dim lngReturnValue As Long If Button = 1 Then Call...
  14. PraveenMenon

    can you make "odd shape" forms in vb?

    GDI32 comes with windows... it is a system file.. like user32.dll All the Best Praveen Menon pcmin@rediffmail.com
  15. PraveenMenon

    ...What About "Odd Shaped" Buttons In VB...

    Odd shaping? i've experimented a lot on this... http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=32607&lngWId=1 All the Best Praveen Menon pcmin@rediffmail.com
  16. PraveenMenon

    Focus Problem

    Set the tabstop to false in the property window of the control.. All the Best Praveen Menon pcmin@rediffmail.com
  17. PraveenMenon

    Send mail W/O an SMTP and Streaming

    John, thanx for the suggestion... But this is not for the use in our company, its a client located somewhere like in "Atlantic Ocean" i gus... All the Best Praveen Menon pcmin@rediffmail.com
  18. PraveenMenon

    can you make "odd shape" forms in vb?

    1) U want this to create idd shaped forms .... http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=27643&lngWId=1 2) Regarding screen resolution, i will never suggest it, bcos u seldom can restore completely the original settings once u change the screen resolution.. here u...
  19. PraveenMenon

    Navigate record sets

    If u are opening the rst by executing an SQL statement, (as in "Cn.Execute strSQL"), the recordset returned is forward only. Anyway still i feel zemp is right.. post the code! All the Best Praveen Menon pcmin@rediffmail.com
  20. PraveenMenon

    SQL Query to find records with a certain number of recurrances

    select empname,count(*) from empLate where count(*)>4 group by empname order by count(*) All the Best Praveen Menon pcmin@rediffmail.com

Part and Inventory Search

Back
Top