Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. icu222much

    XML / XSD Validation Issue

    Didn't I provide the schemaLocation by saying xsi:schemaLocation="mallSchema.xsd" ? I don't understand the second error either as I already declared <xs:element name="collection"> in my schema. For the third point, I just copied what I found online at W3Schools, and I still receive an error.
  2. icu222much

    XML / XSD Validation Issue

    Error in XML document: 8:37 - SchemaLocation: schemaLocation value = 'mallSchema.xsd' must have even number of URI's. 8:37 - cvc-elt.1: Cannot find the declaration of element 'collection'. Error in XML document: 4:65 - argetNamespace.2: Expecting no namespace, but the schema document has a...
  3. icu222much

    XML / XSD Validation Issue

    I've created a XML + Schema and am trying to validate it but I keep on receiving errors that I do not understand. I believe I have done what w3schools has done, but for some reason it is not valid. XML <collection xmlns="http://www.w3schools.com"...
  4. icu222much

    Change Background Colour

    I actually did not call the function inside the body tag. Instead, I called the function within the body tag. I did: [code] <body onLoad="changeByColour()"> {/code] Would this still have the same effect you speak of?
  5. icu222much

    Change Background Colour

    Is there a reason why my first approach did not work? From my understanding, document.write() will write any text to the page thus I can do <b>Hi</b> and it will display bold Hi.
  6. icu222much

    Change Background Colour

    I am wondering how I would change the background colour of a document. The following is my approach, but it does not seem to work: function changeBgColour() { document.write("<body bgcolor=#00FF00>"); } I found out that the proper way is: function changeBgColour() { document.bgColor =...
  7. icu222much

    Change Table Properties (PowerPoint)

    I have tried using the Watch Window approach too see which properties I can use. I also tried to Google up examples to see if there are other solutions. I cannot find any.
  8. icu222much

    Change Table Properties (PowerPoint)

    SkipVought: I took a look at the link you provided but I do not see how it relates to my problem. Fumei: I am sorry that I do not have the same forum philosophy as you do. If you would like to continue this conversation, please PM me instead of filling up this thread with your nagging :P
  9. icu222much

    Change Table Properties (PowerPoint)

    Fumei, I auctually try to be as nice as I can with my post. I only reply to posts when I have something to say. I don't want to bump a post just to say thank-you because I don't want to take up the top slots of the forum when someone else really needs help with their coding. If I happen to find...
  10. icu222much

    Reposition Table (PowerPoint)

    I auctually got it to work. I used the following code: mySlide.Shapes(i).Left = X mySlide.Shapes(i).Top = Y
  11. icu222much

    Change Table Properties (PowerPoint)

    I am looking for a way to change the margin, font size, and the border width of the table once I have created the table. At the moment, I have code tha goes through each cell and changes these properties. However, once I start having over 50+ cells per table, it starts to take PowerPoint a...
  12. icu222much

    Reposition Table (PowerPoint)

    I have created a table in VBA and I was wondering how I am able to reposition it once I have created it? I am unable to properly position the table when I create it because of the requirements of my project.
  13. icu222much

    Drop-Down List - Get The Arrow Always Show (Excel)

    I have created a drop down list in excel and I am wondering how I can always get the arrow to show - even when it is not the active cell?
  14. icu222much

    Conditional Lock-Out Cell (Excel)

    I have a table where the user needs to fill in a group of fields via drop-down menus. If the user selects 'Yes' in certain menus, they will need to fill in additional information in the adjacent cell. To prevent confusion as to when they need to fill in the adjacent cells, I wanted to...
  15. icu222much

    Powerpoint - Change Date Format

    Hi PHV Your code works beautifully. Thank you.
  16. icu222much

    Powerpoint - Change Date Format

    Sorry about not posting my code. I am at home right now so I do not have my code available. But this is pretty much the gist of it: myDate = myWorkSheet.Cells(x, y).Value myDate = Format(Date, "mmmm d, yyyy") What happens is that I am copying data from an Excel spreadsheet to a Powerpoint...
  17. icu222much

    Powerpoint - Change Date Format

    I have a date in a specific format, and I would like to change it to another format. For example, I have the date "15/3/2010" and I would like to convert it to "March 15, 2010". I have tried using "myDate = Format(Date, "mmmm d, yyyy")", but it seems to only return the current date in specified...
  18. icu222much

    Convert Powerpoint Code To Excel

    I have a file where it extracts data from an Excel file, and formats it to create a PowerPoint Presentation. I have coding in my Excel file that deals with extracting the necessary data, and coding in the PowerPoint file that deals with formatting the data. The problem is that now I am suppose...
  19. icu222much

    Resize-to-fit Table Columns

    I have a table in PowerPoint with several rows and columns of data. I would like to resize selected columns so the width of the column does not exceed the width of the longest data - in otherwords make the column width the perfect fit. I am wondering how I would go abouts in doing this? Below...
  20. icu222much

    (PP) Resize Table Column

    I have a table in PowerPoint with several rows and columns of data. I would like to resize selected columns so the width of the column does not exceed the width of the longest data - in otherwords make the column width the perfect fit. I am wondering how I would go abouts in doing this? Below...

Part and Inventory Search

Back
Top