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

Search:

Type: Posts; User: JPicasso_00

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: Do you think performance at work really count these days??

    Why would a customer care how a piece of software is written?

    If they cared, they would be software developers, or they would at least develop internally. Pretty and functional SHOULD be the two...
  2. Replies
    6
    Views
    797

    Re: design issue with static vars

    Well, I don't see _xmlDoc defined anywhere is why I ask.

    When I did a quick example, the first new runs the Init function,
    and the Init function never gets called again.
    However, I check versus...
  3. Replies
    6
    Views
    797

    Re: design issue with static vars

    What is _xmlDoc?


    are you referring to one of the static xml documents?
  4. Is there a way to instantiate by name?

    I'd like to avoid switch/case statements and/or keeping track of some sort of indexing array/collection.

    I need to be able to do something like:



    public Iclasstype makeObject(string...
  5. Replies
    1
    Views
    1,221

    Re: Help needs with DataGridView in C#

    (I didn't open your project)

    But what exactly do you want to do?

    You want to draw lines in the cells?
  6. Re: When a Form is an MDI Child, it consumes some keyboard events i dont want consumi

    Unable to reproduce. C#, 2005

    I'm able to create a MDI, with textboxes, then create children, with textboxes.
    cut/paste/copy all work fine.

    Is there something else you have running in the...
  7. Replies
    1
    Views
    613

    Re: How to read a dll.

    If the file is really a text file disguised as a .dll, then yeah, it should work.

    If the file is really a C# dll, then nooooo, you will need to reference the file, create the object you need and...
  8. My provider? I provide for myself...

    My provider? I provide for myself thankyouverymuch.
  9. Thread: Copy right

    by JPicasso_00
    Replies
    5
    Views
    620

    If you recieved a salary while writing a program...

    If you recieved a salary while writing a program it is my understanding that it belongs to the company that hired you.

    If they want to give out copies to sister companies or if it's really bad,...
  10. Replies
    3
    Views
    575

    You're lucky it wasn't Qurack magazine... The...

    You're lucky it wasn't Qurack magazine...

    The first one is free, but they don't allow you to quit, ever.
  11. Get it in writing. The original scope of the...

    Get it in writing. The original scope of the job,
    and what changes will cost. Then, arrange for incremental payoffs, when you hit certain milestones, 1/3 down, 1/3 when data gathering is running...
  12. Replies
    2,373
    Views
    1,563,789

    I spilled coffee all over my shirt today. I...

    I spilled coffee all over my shirt today.

    I was going to check the time on my watch and I was holding the cup. The truly stupid part is that I don't wear watches, it was just going to be part of...
  13. Replies
    1,366
    Views
    118,522

    What was the question?

    What was the question?
  14. Replies
    3
    Views
    975

    Add a tag to the html like

    Add a tag to the html like <insert the tags here>
    The web browser will ig nore it.

    At the time of viewing, use a replace function to
    change the <insert the tags here>, tag
    with html code the...
  15. Thread: Dao

    by JPicasso_00
    Replies
    6
    Views
    817

    Using DAO to get into an Access database? Set...

    Using DAO to get into an Access database?

    Set reference in project to MS DAO 3.6 Object Library.

    ------------------------------------------------------------------
    Dim DB1 as DAO.database
    Dim...
  16. Re: How 2 get a handle to a .ExE application ?

    you can't.

    Windows assigns handles when an exe is launched.
    Use API calls FindWindow to get the handle.
  17. Replies
    2
    Views
    702

    Re: Grid Control Selection

    The grid itself will not keep track of these things...
    at least not to my knowledge..

    You'd have to set up your own way to keep track,
    2-d array or somthing, and then change the cell back color...
  18. Replies
    2
    Views
    1,211

    Re: IE6 and shdocvw.dll

    Yeah, that's the problem. We don't overwrite the shdocvw.dll.
    Our application merely uses it to display generated htm files.
    We require users to have IE4.0 or greater, guess we might
    have to...
  19. Replies
    2
    Views
    1,211

    IE6 and shdocvw.dll

    Our application uses the shdocvw.dll and users
    have been reporting that IE6.0 becomes unusable
    when installing our programs..

    I see that lalchak had some problems with these
    two and was...
  20. Replies
    1
    Views
    451

    Re: selection code

    if cboLabourType.listindex &gt;= 9 or cboLabourType.listindex &lt;=14 then
    if val(txtoitemID.text) &lt;= 202 then
    Msgbox "Your order item number must be greater than 202"
    else
    'Run code for...
  21. Replies
    5
    Views
    700

    Re: Discussion Boards

    Partial to www.freevbcode.com myself.
  22. Replies
    9
    Views
    1,476

    Re: Search Database Problem

    Does your SQL statement work in Access?
    The best way to debug SQL statements in Access is to copy them into the
    qurey builder or compose them there to begin with and copy the SQL text out of it.
    ...
  23. Re: problems with word object in vb program

    I'm no VBA guru, but try re-setting your document object after you finish your .SaveAs command,
    use the .activedocuments
    There might be a problem with the .Open part also.. I always used the...
  24. Replies
    2
    Views
    655

    Re: problems with word object in vb

    I'm not a VBA guru by any means, but when I checked out the macro
    that VBA was creating, I got this:

    set docu = wdobj.ActiveDocument
    docu.SaveAs FileName:="c:\junk\Testmacro.htm",...
  25. Re: Getting data from the latest Access record

    Use movelast method to get to your last record...
    then assing the data you want to transfer down into variables..
    then use rs.AddNew method to make a new record.
    rs will be pointing to the new...
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured