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

Search:

Type: Posts; User: Clearcode

Page 1 of 48 1 2 3 4

Search: Search took 1.30 seconds.

  1. Replies
    8
    Views
    1,161

    Re: Printing Vertically

    It (the above linked code) does support both Landscape and also Spanning across page...
  2. Replies
    34
    Views
    50,376

    Re: MVP Summit 2007 - The Experience

    I also have no problem with my image being plastered all over the internet...
  3. Replies
    34
    Views
    50,376

    Re: MVP Summit 2007 - The Experience

    I don't have a CG shirt either - so there'll be two of us out o uniform.
    Although it could be argued that my Ireland ugby shirt is my de facto uniform.
  4. Replies
    34
    Views
    50,376

    Re: MVP Summit 2007 - The Experience

    I have just bought a socket adaptor in a luggage store on 3rd and Stewart called Bergman Luggage - in case anyone else is looking for such a thing ;-)
  5. Replies
    101
    Views
    7,164

    Re: Microsoft MVPs - summit question

    I'm in the Hilton on (6th and University) but given that it's now 06:20 (supid jet lag) I guess I'd better get something to eat before going out sightseeing ;-)

    Duncan aka Merrion aka Clearcode...
  6. Replies
    8
    Views
    1,044

    Re: Keyboard Problem

    I'm afraid not as the operating system has no way of telling if the input came from the keyboard or the car dreader - the latter is just emulating the keyboard input..
  7. Replies
    6
    Views
    1,305

    Re: Printing problem

    There are to ways to center a picture in a rectangle - the first is to stretch the picture to fill the rectangle and the second is to offset the top and left parts of the picture so it is centred in...
  8. Replies
    10
    Views
    9,275

    Re: PrinterQueueWatch .NET component

    Do you think I'll be able to do it with this component?


    Yup - in the JobWritten() event if e.Job.Printed = True then update your printed status to true.
  9. Replies
    10
    Views
    9,275

    Re: PrinterQueueWatch .NET component

    Sorry to revive a really old thread but you might be interested to know that the component is now open source and royalty free...enjoy.
  10. Replies
    1
    Views
    3,063

    Re: EventVB - Release F

    Folks - the eventvb project is now hosted on GotDotNet - all the source code of the latest release included.
  11. Replies
    0
    Views
    2,700

    PrintQueueWatch.NET release 2.0.1

    Merrion Computing Ltd announce release 2.0.1 of the PrintQueueWatch.NET component

    This .NET component facilitates the monitoring of printer queues from any .NET programming language e.g. C#,...
  12. SQL Server - How to get the name of the logged in user?

    How do I get the name of the user executing a stored proc in the T-SQL in that proc?
    e.g.



    ALTER PROCEDURE dbo.TakeOnClient
    (
    @Id uniqueidentifier
    )
  13. Replies
    11
    Views
    7,986

    Re: Moving prints jobs between printer queues

    I have (at last) finsihed documenting the EMF spoolfile format - you can get the details here
  14. Re: Running and controling a console app asynchronously

    What would you use to directly control SQL Server (or Sybase XI)?
    I can't use SQLDMO as that is not a distributable component.

    (The reason I am making this code is to have a database installer...
  15. Re: Running and controling a console app asynchronously

    unfortunately one of the commands I am passing in is "exit" which causes ISQL to exit.
    At this point the process is no longer executing but due to the asynchronous nature of the process it might...
  16. Running and controling a console app asynchronously

    I have written a program which reads it sql scripts and passes them to the command line to be executed by OSQL.exe

    The testbed code is like:-



    Dim _DDLExecutor As New...
  17. Replies
    1
    Views
    789

    [Access] Join to IN RANGE ?

    OK - I have a table wich includes a date of birth.
    In a query I have a derived field Years Old : DateDiff("yyyy", [date of birth], Now)

    How do I join this to a table [Age ranges] which has fields...
  18. Replies
    9
    Views
    2,926

    Re: Make my form Scrollable

    The EventVB_H.dll is wrtitten in VB6.0 - and the code for ther most recent version is attached to this thread

    (I would put it here as well, but at 215kb it is too big - the limit is 100k)
  19. Replies
    11
    Views
    7,986

    Re: Moving prints jobs between printer queues

    I'd imagine you will have to use SetJob to pause the print job, then set the landscape flag in the job's DEVMODE structure then unpause it again.
  20. RemotingConfiguration.RegisterWellKnownClientType - Multiple servers?

    I have a service that runs on each print server in a network and it registers a well known service type which is in charge of monitoring various aspects of that server. These are wrapped up in a...
  21. Re: Printer setting code does not 'seem' to work properly

    You need to check that your printer supports the new paper size before changing the value - use the DeviceCapabilities API call with the index DC_PAPERS
  22. Thread: ScrollBars

    by Clearcode
    Replies
    6
    Views
    1,336

    Re: ScrollBars

    You can change the background colour of the scrollbar by subclassing the window and responding to the WM_CTLCOLORSCROLLBAR message.
  23. Replies
    4
    Views
    1,431

    Re: intercepting a print job

    There's articles on how to do this in Visual Basic on my website articles section
  24. Re: determine if someone request for the printer

    Yes - this is a difficult process but is documented in several articles on my website
  25. Replies
    4
    Views
    7,123

    Then you need to get the latest version of your...

    Then you need to get the latest version of your printer driver and, if the problem persists, contact the driver manufacturer.
Results 1 to 25 of 1198
Page 1 of 48 1 2 3 4





Click Here to Expand Forum to Full Width

Featured