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

Search:

Type: Posts; User: jerry.gadd

Page 1 of 5 1 2 3 4

Search: Search took 0.13 seconds.

  1. XML Data island & Client side XSLT in HTML

    Does any one know if it is possible to embedd both XML and XSL Data Islands in a HTML page, and then use JavaScript to transform the XML using the XSL and display the results in the document?
  2. Replies
    0
    Views
    1,202

    PrettyPrint DOM

    I am looking for a way to prettyprint a DOM but to another DOM!
    Apply indent formatting, but inside the DOM!

    I got as far as the code below, but this did not work!



    Dim xmlDoc As New...
  3. Replies
    0
    Views
    2,791

    PrettyPrint XML DOM

    I have an XML DOM, which I want to format indented into another DOM...

    I want to keep every thing in memory and stream if possible!

    What I thought might work is as follows



    Dim xmlDoc As...
  4. Re: CreateProcess and redirect StdOut to a text file

    I dont want to use Shell, as I want to be able to test for System Errors!
    i.e. CreateProcess throws LastError for things like "File not found" and other system errors etc...

    CreateProcess does...
  5. CreateProcess and redirect StdOut to a text file

    I am using CreateProcess to execute a command line call
    I want to redirect the StdOut and StdErr to a text file
    All the examples I can find show how to send StdOut to a pipe, by using CreatePipe...
  6. Re: FileSystemObject Folder.Delete returns "Path not found" for really long paths

    That looks like it might work..
    I will try it tomorrow and let you know the result
    Thanks
  7. Re: FileSystemObject Folder.Delete returns "Path not found" for really long paths

    Hmm, interesting.

    The problem comes from that the folder is on a network drive.
    They were created on a share, which was shallow.
    However I need to access them from a lower level share, and this...
  8. Re: FileSystemObject Folder.Delete returns "Path not found" for really long paths

    Thanks for your quick replies, however they do not solve my problem as,
    I have tried ShortPath, but it still does not work as the paths of the files under the folder i am trying to delete push it...
  9. FileSystemObject Folder.Delete returns "Path not found" for really long paths

    I have this code which i run with different values for sPath



    Dim oFSO As new Scripting.FileSystemObject
    Dim oFolder As Scripting.Folder
    Set oFolder = oFSO.GetFolder(sPath)
    Call...
  10. Re: Read filenames from text file ... problem

    I have fixed the problem now,
    I would appear that it was related to the difference between unix and windows endofline characters!
  11. Read filenames from text file ... problem

    Hi guys,

    The code below does not seam to work properly, even though all the files specified except "image_.png" do exists, the output from the code bellow only show me that the last file exists!...
  12. Replies
    1
    Views
    736

    Re: URGENT subclassing an ImageCombo

    Ok i figured it out shoudl not subtract -1 from ctlIndex
    and should test if ctrlIndex > -1
  13. Replies
    1
    Views
    736

    URGENT subclassing an ImageCombo

    I have a UserControl, which I have subclassed.
    I am trying to catch when an ImageCombo dropdown is closedup

    Here is a copy of the subclass function


    Const WM_COMMAND = &H111
    Const...
  14. Replies
    2
    Views
    802

    Re: Howto Overlay Icons without ImageList

    I have a classmodule in which i want to store all the functionality to handle my icons
    I do not realy want to have to pass it an imagelist as i am not sure i will always have an imagelist available...
  15. Re: URGENT - Need to trap when control on a UserControl on an MDI form loses focus

    it is infact not a real dropdown,
    I am in fact simply making visible a VSFlexGrid and placing it.
    It is this VSFLexGrid that is not receiving lostfous event
  16. URGENT - Need to trap when control on a UserControl on an MDI form loses focus

    I am writing a UserControl, which I then have put on another UserControl which is being displayed in a third party applications MDI Form
    My problem is that I have a customdrawn dropdown on my first...
  17. How to give a Bitmap transparency and store it in a ImageList

    I am extracting a bitmap from an applications API into a IPictureDisp.
    I now want to put this into an ImageList for later use.
    But first I want to give it a transparent background.

    I believe...
  18. Replies
    2
    Views
    802

    Howto Overlay Icons without ImageList

    I have two icons (IPictureDisp) which i need to overlay to create a third.

    I know I can do this with use of an ImageList, However I need to do this in a ClassModule, which has no access to the...
  19. Re: Need to convert image format on the fly prior to display

    Could you suggest an applet?
  20. Need to convert image format on the fly prior to display

    I have a networked Multimedia Device that has a very limited Unix OS
    But it does have a webserver.

    I am trying to write a webpage for it that will be able to control it remotely.

    To do that I...
  21. Replies
    5
    Views
    810

    Re: How to Join Images together (URGENT)

    Thanks but it didn't work!

    Here is the code


    Set IPic1 = ImageList1.ListImages.Item(0).Picture
    Call Picture1.PaintPicture(IPic1, 0, 0, 8, 16, 0, 0, 8, 16, vbSrcCopy)
    Set IPic2 =...
  22. Replies
    5
    Views
    810

    Re: How to Join Images together (URGENT)

    My source images are 16x16 each, I need code to join the two together so that the result is a new image 32x16
  23. Re: Need to add three or more Icons to a ListItem (URGENT)

    If I can add the Images together some how?
    Could I then put the new image into the ImageList, and use this as the Icon?
  24. Replies
    5
    Views
    810

    How to Join Images together (URGENT)

    I have images in an ImageList
    I need to create a new Image which is a combination of two other images, side by side, as described below

    Image1 (#) + Image2 (@) = Image3 (#@)
  25. Re: Need to add three or more Icons to a ListItem (URGENT)

    I need the Icons to be next to each other in column 1 along with the Text
    For example,

    ### TextA
    ### TextB
    #### TextC

    where # represents an icon.

    I am not sure I understand all the...
Results 1 to 25 of 123
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured