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

Search:

Type: Posts; User: Confucius

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    551

    Set the ControlBox property to False, but that's...

    Set the ControlBox property to False, but that's going to disable your Minimize and Maximize as well.
  2. Replies
    6
    Views
    741

    My take is that I've been burned by assumptions...

    My take is that I've been burned by assumptions enough to know that just when you think it's taken care of......it's not!

    Just when your customer(s) tell you they're all on WINNT, they're...
  3. Replies
    2
    Views
    601

    If you only have one Image Control, you don't...

    If you only have one Image Control, you don't need to reference it using an index. You only need to index the image list contained therein:

    Try something like

    imgLight.ListImages(Index).Picture...
  4. Replies
    2
    Views
    1,407

    The problem seems to be with user being logged on...

    The problem seems to be with user being logged on as Limited/Restricted user.

    When the app is installed with admin rights, the app registers and runs correctly.

    When the user switches to...
  5. Replies
    2
    Views
    1,407

    Failed to load commondialog....

    Hi,

    I have a user that has converted from WINNT to WINDOWS XP and they are getting the following error:

    Run-Time error 372:

    Failed to load control CommonDialog from 'comdlg32.ocx'. Version...
  6. How the heck were you able to display a...

    How the heck were you able to display a messagebox from a DLL? Are there other components to the DLL you're not showing?
  7. Replies
    0
    Views
    420

    Keeping track of dowloaded files

    Hi,

    In VBScript, how can I keep track of how many times a file has been downloaded?
  8. Replies
    579
    Views
    648,415

    Thanks Duman, I'll give it a shot.

    Thanks Duman, I'll give it a shot.
  9. Replies
    579
    Views
    648,415

    Babu, I posted this earlier on the main page,...

    Babu,

    I posted this earlier on the main page, I'm hoping you may be able to help me with this. I looked through your responses and didn't find anything that matched this problem:


    Can you pass...
  10. Replies
    3
    Views
    566

    I don't think KeyDown traps the enter key. Try...

    I don't think KeyDown traps the enter key. Try the KeyPress event:

    If KeyAscii = vbKeyReturn then
    PicOpslaan_Click
    End If
  11. Replies
    5
    Views
    1,050

    Unfortunately, yes. The main report gathers...

    Unfortunately, yes.

    The main report gathers info. from different tables, the subreport gathers the many to one counts and dollar values that I need to then use in my calculation for subtracting...
  12. Replies
    5
    Views
    1,050

    Oops, I meant formula field instead of variable....

    Oops, I meant formula field instead of variable.

    The problem is that my main report does not have access to the subreport's formulas that I can see nor vice versa.
  13. Replies
    5
    Views
    1,050

    Crystal Reports - SubReport

    Can you pass a variable from a SubReport back to a main report?

    I have a report with tables with one to many relationship. Header table with many detail records. The subreport is currently...
  14. Replies
    2
    Views
    636

    Here's an example using a textbox where user has...

    Here's an example using a textbox where user has highlighted a certain portion of the textbox for dragging:

    On the Text1 control's Mouse Up event:



    If Text1.SelStart > 0 Then
    ...
  15. Replies
    3
    Views
    770

    What about using a timer with a boolean?

    What about using a timer with a boolean?
  16. Replies
    6
    Views
    892

    I don't know if this may be the problem but: ...

    I don't know if this may be the problem but:

    Memo fields allow up to 65,535 characters.
    If you are manipulating the data through DAO and only text and numbers are being stored in it, then the...
  17. Replies
    6
    Views
    892

    What is your field's datatype?

    What is your field's datatype?
  18. Replies
    6
    Views
    892

    You need to use Text-16 for your field's...

    You need to use Text-16 for your field's datatype.

    Don't let the 16 scare you, it's capable of 4000 as I am currently using it.

    That is assuming you are using SQL Server. ;)
  19. Replies
    2
    Views
    522

    Are you sure the container is the same for both...

    Are you sure the container is the same for both objects?

    What about hiding one when the other is in focus?
  20. Replies
    3
    Views
    770

    Sonnyzhang, This might help. Not sure if it's...

    Sonnyzhang,

    This might help. Not sure if it's exactly what you're looking for.




    'Declaration of Synchronizing Windows applications
    Public Const PROCESS_ALL_ACCESS = 2035711 '(&H1F0FFF)...
  21. Replies
    3
    Views
    774

    Me three.

    Me three.
  22. Replies
    5
    Views
    920

    One solution is to save the compiled date in an...

    One solution is to save the compiled date in an INI file or Registry in an encrypted format.

    On form load, compare the date to the encrypted date last stored and if it is less than the encrypted...
  23. Replies
    18
    Views
    1,795

    There's a price to pay for ease of programming...

    There's a price to pay for ease of programming when using VB and you just found one of many in comparison to C++

    Interpretive languages like VB, REXX, etc. have many flaws in comparison with more...
  24. Replies
    18
    Views
    1,795

    You have to remember how a function works. Until...

    You have to remember how a function works.
    Until you run it and pass it something then how is it going to know that what you are passing is valid or not? It's just code waiting for an action. There...
  25. Replies
    18
    Views
    1,795

    I don't think the compiler cares what you are...

    I don't think the compiler cares what you are passing a function. All it cares about is IF you are passing one or not and whether or not it requires one.

    This is also true in your code.
    Try a...
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured