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 strongm 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: *

  • Users: aniket
  • Order by date
  1. aniket

    Help--ODBC, Access 2000, SQL Server, Windows 2000

    This error is may be because there is a conflict between the database version and the ODBC driver version. Save the access database to older version and try to run the ASP page again.
  2. aniket

    Add Bitmap to Button Via API?!?

    i think this link should help www.beesknees.freeserve.co.uk/articles/hooks.html this is a nice explanation of integrating bitmaps in title bars , i used this as a guide to get bitmap in menus, buttons. hope it helps aniket
  3. aniket

    Subclassing Menu Help

    u need to look for "context menus"
  4. aniket

    Copying an enhanced metafile to the clipboard

    i have not tried anything with emf but, i tried copying and pasting of bitmaps anywhere i like using the following functions + some others of the same category Private Declare Function CreateCompatibleDC Lib "gdi32" Alias "CreateCompatibleDC" (ByVal hdc As Long) As Long...
  5. aniket

    vb and web server

    hope this will help example for "connect" taken from vbapi.com example --------- to Download the main page of this web site (http://www.vbapi.com/index.html). This example supports a very crude implementation of HyperText Transport Protocol (HTTP), sending a request to the server...
  6. aniket

    show tooltiptext

    use setcursorpos()to place the cursor automatically on u r control and get its tooltiptext aniket
  7. aniket

    Urgently in need of C code for. ...read inside??

    to split the data ,couldnt we use a structure to store data into the file and a structure to retreive data,then we could have "structure.name" as "bill gates" e.g of struct---- struct names { int num; char name[20]; char compname[20]; }; struct names a; the record will be...
  8. aniket

    Counting file names in a directory that match a pattern

    the answer is findfirst() and findnext() functions in include file "dir.h"
  9. aniket

    Intercepting Windows sequrity box

    hello jmarler, sir could u please elaborate on the statement "but if you want to monitor all processes, then you will need to move the CallBack function into a C++ DLL (the code is not that complicated though)." i am trying to set up a hook to monitor all processes , but i know very...
  10. aniket

    How to create a graph at runtime

    hi TheMuppeteer , i used "segate crystal reports8.0" to create a dynamic report, it even supports report variables try it, hopefully thats what u wanted please post u r reply if it helped aniket
  11. aniket

    Convert mult-color bitmap to monochrom bitmap

    hello kbs sorry the above solution is incomplete i forgot that you need to save the mon bmp to a file bye
  12. aniket

    Intercepting key strokes

    hello alt255, i dont know if this reply is of any help,i dont have the setup of 2 comps. i think sendkeys() function could be of some use here.i had used it to send whatever i typed to Notepad,but have never tried using it on a network. aniket
  13. aniket

    Convert mult-color bitmap to monochrom bitmap

    hello jbs, this is the solution you wanted this small program converts the bitmap set as a background image of Form1 to Monochrome. what more you can see it happening, good question buddy aniket Private Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, ByVal x As Long...
  14. aniket

    FTP

    do visit the vb win32api forum.to do the above mentioned job win32 API is the answer.
  15. aniket

    Is a program running?

    hello fella you are right on your info with findwindow() you must be knowing that a handle to a window can change but the clss from which it is derived always remains the same. to get the classname of a window use Getclassname() win32api call Public Declare Function GetClassName Lib...

Part and Inventory Search

Back
Top