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 TouchToneTommy 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: *

  • Users: autumnEND
  • Content: Threads
  • Order by date
  1. autumnEND

    Help Outputting a large string 1 row at a time

    Hi, im trying to output a large string onto my report using crystal XI , each element in the strng is seperated by a comma : i am outputting to various formats, pdf, excel, word etc e.g string : this,is,a,long,string i need to get it to output as : + this + is + a + long + string however...
  2. autumnEND

    How to add commas to numbers!

    Hi, is there a way to add commas to numbers. Maybe a regular expression. Which would make numbers easier to read. for example: 111222333 to 111,222,333 12345 to 12,345 123 unchanged Any help would be greatly appreciated .I cant seem to find a solution. Thanks in advance .
  3. autumnEND

    Problem Referencing Controls in .net 2.0 . works in 1.1

    Hi, i am having a few problems migrating my app from .net 1.1 to 2.0. i have 2 user controls (ascx) and im trying to call a function from one of the controls. in 1.1 this is how i reference the other control templates.maintenance.ucExpandTree UcExpandTree =...
  4. autumnEND

    Replacing characters in a range between < and >

    Hi , i am using crystal XI and have generated a report from the data in an SQL database. This data contains html style tags. And i am wanting to remove them so they arent on display in the report. e.g. <P align=center>some content here </P> <P><STRONG>some content here</STRONG></P><P><STRONG>...
  5. autumnEND

    How to Detect if the browser has Java enabled Help!

    Hi, Im making a web app in c# asp.net and Im trying to detect weather or not the users browser has Java enabled! im aware of Request.Browser.JavaScript. But if i turn off active scripting and disable java in ie6 settings , the Request.Browser.JavaScript still gives a value of "True" and i was...
  6. autumnEND

    VBA To Replace the Content of the Document Footer

    Hi, i have a folder full of .wri document files , each document has a footer , what im wanting to do is loop through every document, change the footer to a value such as "new footer" and then output the document , with the changed footer. I allready have code that opens each document, searches...
  7. autumnEND

    Comma Seperated List String

    Im trying to build up a string using substrings, and if there are more than one substring seperate them with a comma. The maximum number of possible substrings is 7 Below is an example of how i get the string value if (Convert.ToInt32(dr["country_england"]) == 1) { strEng = "England"; } the...
  8. autumnEND

    Pagination Problem Word Macro vba

    I created a vba macro that opens a range of documents from a folder , and it checks for specific date in each document and if its incorrect changes the date and saves the new document with the new date . etc it works fine, other than when i open the new outputted document , the pagination isnt...
  9. autumnEND

    Word Macro Find Replace and save In Range of Files Help

    Hi ive created a macro to search through a folder containing documents of a specific format, im wanting to search through these files and change a date within the files. the document contains a release date Like : Release Apr 06 but it could be : Release May 06 so i need to search through...
  10. autumnEND

    Replace text using VB macro

    Hi ive created a macro to search through a folder containing documents, im wanting to search through the documents and change a date within the files. the document contains a release date Like : Release Apr 06 but it could be : Release May 06 so i need to search through the documents like...
  11. autumnEND

    Uploading anImage to a folder specific to username

    Hi, ive been trying to enable users to add images to a folder based on there user.identity.name so if the user is logged in as TEST when they add an image it would make a folder inside the images folder called TEST C:\\images\TEST also would there be a way to check if the folder was allready...
  12. autumnEND

    Replace Line Breaks In SQL Command

    Hi, is there a command which lets you change the line break from vbcrlf to <br> in the sql command? so once displayed on the web page in the grid view label. it will display the line breaks automatically. or is this something that i should only do on the html side of things and not in the sql...
  13. autumnEND

    how to use style tags inside a label?

    Im using a label to display articles posted by users on my site. if the user enters <strong> word </strong> im wanting it to convert the text around the strong tags to bold text. but i cant seem to find a way to do it. is there anyway to do this? any help would be appreciated thanks heres...
  14. autumnEND

    setting the image url of an image map

    Im trying to set the image url of an image map , the image map is stored within a datalist. It basically displays an avatar for the user who has posted the forum post. however if the user doesnt have an image uploaded on the database, when they write some news for there image, it displays the...
  15. autumnEND

    Select ISNull Problem

    Ive created the following code , to select items from my sql database. the field m.avatar is an image data type and is eithor NULL or contains data such as <system byte> etc im wanting to select the data from the database even if m.avatar is null or has data. And it wont seem to let me. The...
  16. autumnEND

    count() that returns 0 does not display

    Hello, ive been searching for a sulution to this but havent seen one anywhere. I want to display a news post, and next to it, the number of comments it has I have two tables, one for news post (news) and another for news comments(news_comments). the only problem is that if the news post does...
  17. autumnEND

    Forum | Message board

    Hi, Im wanting to add a forum | message board to my site . and i wondered if anyone knows any good free ones out there, that would work with asp net 2.0 and sql. I would like to code it myself but dont know where to begin. So i thought there might be some example code etc that someone knew...
  18. autumnEND

    Password Reset Complexity Settings

    Hi, i recently changed the password complexity as follows : <membership> <providers> <remove name="AspNetSqlMembershipProvider" /> <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0...
  19. autumnEND

    The page cannot be displayed / error

    Hi im new to asp net. ive made a web application that lets the user add content to the site, these details are stored in an sql database. When i tested it all on my pc it worked fine. But some users have said when trying to add content they sometimes get the error message : The page cannot be...
  20. autumnEND

    using a href link to open a pop up window?

    Is there an easy way that anyone knows to use a href link to open a new pop up window with say a width of 600px and a height of 700px. The link i am using as the href to open the page is: <a href='<%# "news_comments.aspx?newsID=" &Cstr( Eval("newsID"))%>view comments</a> Im using microsoft...

Part and Inventory Search

Back
Top