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

Search:

Type: Posts; User: jsiii

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    768

    Re: Strange CSS selector behavior

    Oh, I see. I didn't know validity affects CSS in this way. Lesson learned. Thanks :-)
  2. Replies
    2
    Views
    768

    Strange CSS selector behavior

    Why does not this work? I am puzzled.


    <style type="text/css">
    .test p {
    color: red;
    }
    </style>

    <p class="test">
  3. Replies
    2
    Views
    983

    Invalid Column Problem

    Hello... Let's say, I have a table with fields: Name, Born, Died and I want to select all people who were older than 100 when they died.

    But I cannot specify this condition in the WHERE clause...
  4. Replies
    13
    Views
    2,525

    Re: Get the position of Window object

    It works, thanks a lot :-)

    Funny (or maybe sad) part of the story is that Microsoft Visual Studio's code autocomplete feature suggests screenX and screenY for window object. Yet, their own browser...
  5. Replies
    13
    Views
    2,525

    Get the position of Window object

    I need to know coordinates of current window. I tried self.screenX (and Y). Although it is not in standards it works well in FF. But IE7 does not support it.

    Is there another way how to get a...
  6. Replies
    6
    Views
    1,021

    Re: Table row heights

    Well, thanks for your help guys. But I think there is a small misunderstanding. I think I caused it with those three rows. So please, let me restate the problem:

    Lets say, you have table with two...
  7. Replies
    6
    Views
    1,021

    Re: Table row heights

    Oh no, I do not have 100+50+50, I have 50+50+auto and I thought it should adjust to 100% total.

    But never mind, I will try your suggestion.

    Update: Your suggestion does not work at all, it...
  8. Replies
    6
    Views
    1,021

    Table row heights

    Hello, what I want to do is a table with three rows like this:

    ---------------------------------------------------
    ROW 1
    ---------------------------------------------------


    ROW 2
  9. Replies
    0
    Views
    1,127

    PowerBuilder problem

    Hello,

    I am trying to modify my MS SQL 2005 database by PowerDesigner model using PowerDesigner built-in Modify feature.

    PD however seems to have problems reverse engineering the database.

    I...
  10. Replies
    0
    Views
    818

    Netbeans and MySql problem

    Hello, I have a problem like this:

    I am using NetBeans 5.5 and MySQL Server 5.0 as a database, I managed to install the driver and register the MySql in the IDE so that I am able to make a...
  11. Replies
    2
    Views
    902

    Re: Keyboard shortcut

    This seems to be what I need thanks.
  12. Re: Need help for C# coding in windows application

    I hope this is what you need... The complete solution is in attachment



    // This enables and disables Up and Down buttons when item selection is changed
    private void...
  13. Replies
    2
    Views
    902

    Keyboard shortcut

    This question may seem silly. I really tried looking for an answer myself but have not found anything. Maybe it is so trivial that nobody cared to write about it yet :-)

    Well... I have the form...
  14. Replies
    1
    Views
    848

    Re: ActiveX component can't create object

    Oh my, I am stupid... I even answered myself in the question. The DLL needs to be registered with regsvr32 lib.dll command. Sorry for posting this :-(
  15. Replies
    1
    Views
    848

    ActiveX component can't create object

    Hello I am using custom third party DLL library. Provided sample code is only in C++.

    I found a code like this

    IStatus status;
    status.BindDefault();
    I guess this is something like

    ...
  16. Replies
    1
    Views
    1,212

    DataGrid not populated

    Hello, I have one simple form with one DataGrid... I have Access database I connect using ADODB.

    I connect like this:



    Dim DbConnection As ADODB.Connection
    Set DbConnection = New...
  17. Replies
    1
    Views
    768

    Suggest COM port please

    I was looking for a COM port control to replace MSComm. The only thing I need is that it supports more than 16 COMs.

    It would be nice if it would be free, optimally OpenSource or cheap. But any...
  18. Replies
    2
    Views
    2,365

    Re: Wildcards in XML attributes?

    Thanks :-)
  19. Replies
    2
    Views
    2,365

    Wildcards in XML attributes?

    Hello, is there something like wildcards for Xpath evaluation? I mean something like:


    /configuration/appSettings/add[@key="VCOM-*"]

    Notice that asterisk. I need to select all elements that...
  20. Thread: MSComm Control

    by jsiii
    Replies
    4
    Views
    2,053

    Re: MSComm Control

    is there any free alternative?
  21. Replies
    3
    Views
    3,252

    Re: 115200 bps baud rate

    Funny, this really works... but the 115200 is not in the list of supported baud rates, and any value that is not there creates error when used.

    Not only the MSComm control is stupid and buggy. It...
  22. Replies
    5
    Views
    1,259

    Re: Dowload from Internet and save to local

    The component was not listed there so what I really needed was the name of the file.

    I already found out. It is MSINET.OCX located in System32 directory.

    But thanks anyway ;-)
  23. Replies
    5
    Views
    1,259

    Re: Dowload from Internet and save to local

    Where do I find the Inet control? Thx
  24. Thread: Function Keys

    by jsiii
    Replies
    5
    Views
    1,165

    Re: Function Keys

    First of all, I must say Thank you oh Hannes The Great. Thanks a lot for your time.

    I however am afraid that VB lost again :-(

    With your solution I cannot make F10 work (it just does not do...
  25. Thread: Function Keys

    by jsiii
    Replies
    5
    Views
    1,165

    Re: Function Keys

    Thanks for your help. I have managed to make your example work but the problem is that events from F10 are still passed on and Main Menu still gets focus when F10 is pressed. I have commented out...
Results 1 to 25 of 94
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured