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

Search:

Type: Posts; User: Ravi Kiran

Page 1 of 30 1 2 3 4

Search: Search took 0.25 seconds.

  1. Replies
    4
    Views
    2,364

    Re: Scheduled Task with DIWriteJpg method

    There may be something wrong with the way you are using the Command$ env variable or something wrong in the style of parsing the arguments.

    just for testing see if it runs ok when the file-paths...
  2. Replies
    4
    Views
    2,364

    Re: Scheduled Task with DIWriteJpg method

    There may be something wrong with the way you are using the Command$ env variable or something wrong in the style of parsing the arguments.

    just for testing see if it runs ok when the path doesnot...
  3. Replies
    5
    Views
    1,280

    Re: Paint an irregular shape

    Check the API FloodFill and ExtFloodFill. They allow you to fill a region of DC with a color specified by the border...

    RK
  4. Re: How to know if my class is declared "WithEvents"?

    If you are interesed in the solution only!, a round about way may be used. This class will have a public function using which some internal variable can be set to true; And when this variable is...
  5. Thread: DBGrid

    by Ravi Kiran
    Replies
    1
    Views
    665

    Re: DBGrid

    Change the RecordSource property of the data control with an SQL that is based on the value entered in the text, then give a refresh on both the Data control and DB Grid... it should mostly work
    ...
  6. Replies
    3
    Views
    542

    Re: DCOM and NT server 4

    it is not clear as to what is the exact environment? what got me was the line : "When I had SP 3 on my server it worked fine, but I had to update to SP4 in order to return UDTs from the exe server"...
  7. Replies
    4
    Views
    530

    Re: Undo for Text

    just a thought :

    How do you do multiple-levels of "undo", like
    Word or VB-dev-env?

    RK
  8. Re: HELP on How to Add data to a MSAcess Dbase Table?:)

    I will not give you the code..for i think it is your class-test!

    You must first decide to use ADO or DAO for data access technology.
    Then you must decide to use either data-bound controls based...
  9. Replies
    3
    Views
    1,779

    Re: database BOF and EOF

    private sub command1_click()
    if not data2.recordset.Eof then
    data2.recordset.movenext
    end if
    end sub
  10. Re: How to Distribute an application with database?

    From what i know (hope I am not wrong, i am writing this from Oracle background), only Access DBs can be distributed free. Sql Server is not free and the your client need to purchase his (sql server)...
  11. Replies
    1
    Views
    1,966

    Re: GetSetting / SetSetting

    I presume this could be the cause (not sure though)

    The registry key used by VB's function is
    H_key_Current_user\Software\VB and VBA Settings
    and under this your own section & key-value pairs...
  12. Replies
    3
    Views
    594

    Re: Printing Textfile

    just the otherday some one asked about how to print to LPT1. see this and you may get an idea...
  13. Replies
    2
    Views
    584

    Re: importing into contacts in Outlook

    Use Print # function and see it works

    RK
  14. Replies
    2
    Views
    507

    Re: Problems with Picture object in memory

    Picture box actually has 2 things!.. One picture and another Image.. Try using the .Image property it may work

    it is something to do with 2 DCs and internal management for easy blitting, overlays...
  15. Replies
    1
    Views
    575

    Re: printing image from IIS app. on server

    obviously "strAppPath" is not containing a valid value... Your assumption probably is not valid in the case of client-request from the browser
    (however i cannot tell you how to correct for the rest...
  16. Replies
    1
    Views
    588

    Re: Message Boxes in VB

    Not possible directly

    unless you are very conversent with creating hooks and tapping the wm_create event for the dialog window etc.. I have seen some code which will set the display position for...
  17. Replies
    2
    Views
    561

    Re: Object Problems

    added to the other post:

    Or your instance vehiclesComMonDict is not a Collection. only it is a collection is vehiclesComMonDict.Item(..) is valid.

    may be just call
    ...
  18. Replies
    1
    Views
    900

    Re: Date Difference

    VB's method is a nice way this info can be depicted. Otherwise how else can you divide a certain number of days of difference, between 2 dates, into dd/mm/yy format?

    What month are you going to...
  19. Replies
    2
    Views
    819

    Re: Merging 2 Text files

    1. Read both into seperate buffers and concatenate them and print again. You can have a different name for the new file, if you wish

    or
    2. Read the secong file into a buffer. Open the first file...
  20. Replies
    6
    Views
    799

    Re: licence question

    I once developed a multi-user tracking machanism (not for licensing, but something else)... It had all the things which other posts are suggesting like network file-share, binary file & not text file...
  21. Replies
    1
    Views
    683

    Re: deriving a new class

    In Vb 6.0, i think the only way is via "implements" directive. (i understand it is now different in Vb.net )

    So if you have a class Class1, only way a class2 is derived from it is by including the...
  22. Replies
    1
    Views
    1,115

    Re: How to pause program execution

    What kind of pause are you looking at?
    There is a sleep api which will sleep for the specified period of time

    in declarations..
    public Declare Sub Sleep Lib "kernel32" _
    Alias "Sleep" (byval...
  23. Thread: VB .NET

    by Ravi Kiran
    Replies
    3
    Views
    841

    Re: VB .NET

    There is a complete forum on the VB.Net issues at this site. check it. click on forum index and scroll down you should see it..

    RK
  24. Replies
    1
    Views
    753

    Re: Matrix/Grid?

    Have a structure or a class with 2 values and have a 2D array of this structure or class.
    Use MSFlexgrid to show the images and you can show a bmp in the cell

    RK
  25. Replies
    1
    Views
    592

    Re: Dumping Data

    there may be a need for different style op cleaning up.. as a general rule, cleanup, the moment its work is done!.. even if it is a global instance etc.. unless there is a specific need to have an...
Results 1 to 25 of 729
Page 1 of 30 1 2 3 4





Click Here to Expand Forum to Full Width

Featured