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

Search:

Type: Posts; User: zoltan_ie

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: CMonthCalCtrl - How do you remove the blue oval?

    Thanks, thats very nice of you
  2. Re: CMonthCalCtrl - How do you remove the blue oval?

    MCS_NOTODAY removes the red highlighting of the current system/today date only.

    I want to remove the blue oval that shows which date has been selected by the user till the user selects a date
  3. CMonthCalCtrl - How do you remove the blue oval?

    As the title says, any ideas?
  4. Replies
    0
    Views
    894

    WebBrowser control (.NET 2.0)

    Is it just me? or am I doing something wrong?

    c_wbFavouriteA is a WebBrowser control

    if in my code I do this at some stage.....


    System.Uri siteUri = new System.Uri("http://www.yahoo.com");...
  5. Replies
    2
    Views
    687

    Re: Browsing file in a web directory

    ok, sorry.

    I forgot to say the application will not be running on the same network so that ain't gonna work.
  6. Replies
    2
    Views
    687

    Retrieving file names from a web directory

    I have a web server that has a directory containing xml files.

    I want to return to a GUI a list of the URLs for the files so that the user can select a xml file to load.

    How on earth do you do...
  7. DOM and creating a xsi:noNamespaceSchemaLocation attribute

    In my root node I want to put the attribute xsi:noNamespaceSchemaLocation so that I can get the document to validate

    I want this

    <CONTENT xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
  8. DOM and creating a xsi:noNamespaceSchemaLocation attribute

    In my root node I want to put the attribute xsi:noNamespaceSchemaLocation so that I can get the document to validate

    I want this

    <CONTENT xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
  9. Re: Distrbuted data input system using table row locks

    I've been reading around and I seem to get the impression that Row, Page & Table locks are only held for the duration of a transaction.

    The system I’m trying to investigate to see if it would...
  10. Re: Distrbuted data input system using table row locks

    Krzemo I'm pretty much of the same opinion

    Personally I believe a client/server architecture is the best appropriate where the server keeps record of who's got what and so no table row locks are...
  11. Distrbuted data input system using table row locks

    Has anyone developed a multi user system using database table row locks to manage the data that users are modifying? Say where someone has requested data in the system and the corresponding rows (in...
  12. Replies
    12
    Views
    1,495

    Re: header file of constants

    I guess the less code you write the clearer it looks and the easier it is to read.


    nope, it just looked neater
  13. Replies
    12
    Views
    1,495

    Re: header file of constants

    Yeah, I know how to get it done like that (all example given).
    But I don't like the way u have to access the constants



    Globals.HOURS_IN_DAY
    Constants.ATT_TYPE_STRING
    enum.nameofitem
  14. Replies
    12
    Views
    1,495

    header file of constants

    Hi,


    I'm a new user of .Net, and my background is from c++.
    I want to add to my C# project a Header of global constants.

    It there a way to do it, except of declaring it in a class? (I want...
  15. Re: MSXML -> XSLT -> and bloody \r\r\n and where do they come from?

    We figured that out this morning :) but thanks any way Boris.

    we figured out by see that the return from the transform had two pipes in it and then by testing different strings that had "\r\n",...
  16. Re: MSXML -> XSLT -> and bloody \r\r\n and where do they come from?

    Well thanks for actually trying it out

    and that comment
    >> * there is a newline in the result of xsl:value-of?
    is very interesting but I'd be surprised if it was, but I'll have to check that...
  17. MSXML -> XSLT -> and bloody \r\r\n and where do they come from?

    In my XSLT I want to convert an XML file in to text (csv) but a problem I'm getting is that when I want to put in a Carriage Return(\r) Line Feed(\n). No matter what I try I always get \r\r\n which...
  18. Re: How do you get the size of DOM (MSXML) object in memory?

    Nope, it won't work, but thanks anyway.

    That only works if your loading a DOM object from a file. I am creating a DOM document by using a SAX parser.

    We have huge XML file (500mb) and we want...
  19. How do you get the size of DOM (MSXML) object in memory?

    How do you get the size of DOM (MSXML) object in memory?

    Is it possible it get? or will I have to add all the sizeof() totals of each element (IXMLDOMNode, IXMLDOMAttribute, ...) I add to the DOM...
  20. How do you get the size of DOM (MSXML) object in memory?

    How do you get the size of DOM (MSXML) object in memory?

    Is it possible it get? or will I have to add all the sizeof() totals of each element (IXMLDOMNode, IXMLDOMAttribute, ...) I add to the...
  21. ODBC, SQL Server, "FOR XML" & Cursors error

    Hi,


    Has anybody had any luck using the Microsoft SQLServer ODBC drivers (Driver version: 03.81.9030, ODBC version : 03.52)

    to connect to a SQL Server 2000 database and passing in a SELECT...
  22. Replies
    1
    Views
    1,808

    MutliColumn Listbox

    How on earth do you added data to the different columns of a multi column Listbox?

    Any example would help as I can't find any anywhere
  23. very simple tutorials for EXSLT, where ??

    Can anyone recommend and good sites or books for showing how to do EXSLT?

    I've have used Google and I can't for the life of me get any of the XSLT extension from http://www.exslt.org/ to work (i'm...
  24. Replies
    2
    Views
    1,200

    I don't expect people do go off and work out...

    I don't expect people do go off and work out another way of doing it, I would just like people to post an example of a method they have used.

    I totally new to XSLT and it took me forever to find...
  25. Replies
    2
    Views
    1,200

    XSL/T and performing Filtering

    How do you filter out nodes which contain a value using a stop list? I have come across one example but I'm wondering is there any other way of doing it?


    <?xml version="1.0" encoding="UTF-8"?>...
Results 1 to 25 of 97
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured