 |
 | Thanks Rechard,
I just started developing WCF Services,can we self host these service which are using named pipes binding?
Is this binding any way related to IIS version I have on the machine too(I have IIS 5.1 only)?
I read from Msdn saying(NamedPipe Activation require IIS 7.0).... |
|
 | As far as I am aware, IIS5.1 is Windows XP and Windows XP does not support what you want to achieve. Your choice is to upgrade to an operating system that does support what you want to achieve. |
|
 | Hi all.
when I using header('location:'.$url) then it redirect to url another, cannot get message from this url. how to when to get data when use header('location:'.$url) ???
thanks
nothing |
|
 | aa_zz. Please clear by your question, I can't understand it. Would you please elaborate it a little bit more |
|
 | Somebody can name TOP WEB technologies are using in USA? What gain fast positions on the WEB technology? What need to know at soon time? |
|
 | I guess as the rest of the world HTML
What do you mean? |
|

|
Hi,
I have struggled with word wrap for long file names in a table. I use a class where I now implemented everything I can think has something to do with word wrap. It works in chrome but neither in Firefox or IE. How to do this?
.wraptext
{
word-wrap: break-word; /* Internet Explorer 5.5+ */
max-width: 450px;
mso-word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-all;
-ms-word-wrap: break-word;
word-wrap: break-word; /* Internet Explorer 5.5+ */
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
}
|
|
|
|
 | Not knowing what string you were using or what you expected to see, I just put some lorem ipsum within a table and changed the css class to:
.wraptext
{
word-wrap: normal; /* Internet Explorer 5.5+ */
width: 450px;
mso-word-wrap: normal;
-ms-word-break: normal;
word-break:... |
|
 | I always want a word to break when it exceeds the maximum width. The normal break did not work. |
|
 | Give me an idea of the content you are trying to use and what you want it to look like.
vbmike |
|
 | any long word breaked in a table cell. |
|
 | Just so I understand so I can experiment, you want the word within the cell to wrap when the word gets over 450 but the cell may be bigger?
vbmike |
|
 | I did som experiments my self. If you have an width on a table or cell in a table it wont word wrap. However, if you create a paragraph in your cell it will wrap.
Strange behavior. especially when it works in chrome. |
|
 | Well, I suppose that you will have to use paragraph tag for your text. I tried that with some text within a paragraph tag in a fixed width table and your css code above and it wraps the text at max-width specified when the table is wider regardless of browser for me. Opera, Safari, Chrome,... |
|
 | Break word is understood by most, if not all, modern CSS3 enabled browsers. But to make it effective, use a div tag with or without an ID name, then reference that div or the div's ID with a width size, then when you use that break word to another element within the hierachy then it will do what... |
|
 | That is not more efficient than any other solution.
The only conclusion that I can draw from this matter is that:
word-wrap: break-word; will break words when it enters its containers boundery.
However, for most browsers this do not work for a table cells boundary
The boundary is set... |
|
 | I neglected to ask poster but I don't think HTML5/CSS3 is being used. I find div's way more effective than table architecture. At least once I had the ah-ha moment.
vbmike |
|
 | They say that tables are "old hat". But I say, they still to this day serve a purpose. And CodeProject, the website you are using right now, is an example of their continued use.
But yes, you are right, div's are effective and most suitable for manipulation
From the OP's... |
|
 | This dose not work. normal do not break words. look at my later answer to this question. |
|
 | I have the same problem. |
|
 | I did it on the server-side instead. Not a good solution but a workaround |
|
 | Sorry to add a comment after so long but I found this little bit on a css site and it works pretty well with your situation I would think....at least in my testing on my system. May have something to do with the hyphens settings being added...
-ms-word-break: break-all;
word-break:... |
|
 | This dose not work for tables in all browser see previous discussion |
|
 | Ok, good luck. I don't use tables for much anymore.
vbmike |
|
 | Hello everyone,
i'm facing this issue in crystal report my web site is deployed on server and i'm accessing it on another system
Crystal Reports ActiveX Designer error '80043ae3'
Invalid TLV record.
please provide me necessary component for this issue.
... |
|
 |