Search results for query: *

  • Users: a8le
  • Content: Threads
  • Order by date
  1. A

    text to speech, tts

    Hi all, I am stuck augmenting my site with tts. I have read numerous tutorials and search the web for weeks now and still can't get anything to work. So far this is what I have done... Added a reference to: Interop.SpeechLib.dll Imported: SpeechLib Made an instance of the voice: Dim voice As...
  2. A

    1-2-3's of making a toolbar

    Hi all, I am thinking about make a toolbar like... the quick launch toolbar, with autohide, top position (opposite of start/task bar), skinnable, etc. Is this possible? I need it to work with XP and Vista. I am using Visual Studio 2008, VB.NET. If it is can someone lead me in the right...
  3. A

    Period at end of every line

    I am in need of a way to put a period at the end of every line in any document but the output will always be a text document. So this is my plan... 1) Put a multiline textbox on form available for copy and paste of content from original file. 2) On button click... Use regex to find end of line...
  4. A

    Mass Approve using a Checkbox

    Hi all, I am trying to write a mass approve script for my site, similar to deleting all unwanted email using: a repeater (not a datagrid), a checkbox in each indexItem, and a button. Psuedo/Logic: 1) Load Repeater with list of "UNmoderated" items 2) Put a checkbox inside the repeaters...
  5. A

    youtube embed to the back

    Hi all, I am adding a new feature to one of my sites, which will allow users to post YouTube videos onto the site. Thats all said and done... My problem is I have a small version of the video on the frontpage of the site. The video is width=50 height=38, as you can see that actually too small...
  6. A

    close a window... IE7

    Hi all, I have a little piece of code that closes a pop-up after some scripts have run... Page.RegisterStartupScript("Close", "<script language=javascript>window.close(); </script>") Which works fine in IE6, but with IE7... I get a prompt confirming that I want to close it... very annoying...
  7. A

    bad word filtering asp.net

    Hi all, I am trying to upgrade my bad words filter, which is this: Page_Load... Dim xmlDocPath As String = MapPath("BadWordsList.xml") Dim xmlReader As XmlTextReader = New XmlTextReader(xmlDocPath) While...
  8. A

    character count

    Hi all, I am looking to add "a character counter" to my pages with textboxes. I have tried multiple solutions: http://www.neowin.net/forum/lofiversion/index.php/t305615.html http://www.codeproject.com/aspnet/TextBoxCounter.asp?df=100&forumid=247992&exp=0&select=1393971...
  9. A

    image from link

    Hi all, So, I have it to where people can upload images to my site from their hard drives (file system)... which is working. Now, I am looking to make it possible for them upload from a web link... If they do this... the images will mostly come from another site, so i would like to give the...
  10. A

    surf program

    Hi all, I am looking to write a program that will cycle through my websites and give me a alert if one is down. I am doing this to check and make sure that all of my websites are up. I guess the only real requirement is that each time a website is displayed, it has to be a non-cached page...
  11. A

    refreshing datagrid without refreshing the page

    hi all, is there a way to refresh a datagrid on a usercontrol (ascx) without refreshing the whole page? -a8le
  12. A

    numbering a repeater rows

    hi all, is there a simple way to number repeater rows? for example my repeater displays.... comments on a blog... comment one comment two comment three etc... i want it to be... 1) comment one 2) comment two 3) comment three and so forth i would appreciate any advice, thanx in...
  13. A

    adding a poll to a blog

    Hi all, I have a blog table... myBlog(Table) BlogID (primary key) Text(varchar 8000) Date(datetime) that has another associated table... myBlogRatings(Table2) RatingID (primary key) Rating (float) RatersIP (varchar 15) BlogID (foreign key) but now I want to be able to attach a...
  14. A

    refresh button /// or /// reload of page

    hi all, i have a procedure that adds unique rows into a sql server table... my problem is after hitting the button, the data is entered without any problems, but if i then hit the refresh button (F5), the same (but unique... increment of 1 on ID) data is entered again, giving me a second...
  15. A

    comparing stored ip address

    hi all, what is the best way to compare stored ip addresses with the current "request.userhostaddress" ipaddress. i am trying to ensure that users don't do something more than once... prevent abuse. WHAT I HAVE TRIED SO FAR.... my SQL logic... 1)pass in 2 params, 1-myContentID &...
  16. A

    storing an ip

    currently i am trying to store user ip address for a control i am developing but when i store the ip's in SQL Server 2000... all i get is the first digit. the test ip is 127.0.0.1, so all i get is "1" for all my ip's. upon submit i have a label displaying the ip's and it shows "127.0.0.1"...
  17. A

    conversion help

    hi all, why doesn't this work?... Dim datExpiryDate As Date = Convert.ToDateTime(Null.SetNull(datExpiryDate)) I get this error... Value of type 'Date' cannot be converted to 'System.Reflection.PropertyInfo'. Thanks in advance, a8le
  18. A

    the date

    hi all, how can i ensure that when i do a date stamp that the date used is the one on the server and not the client? for example the the user might live in california and accessing the webpage on dec. 16th @ 11:00 pm, and the server is in new york? the time according to the server would be...
  19. A

    setting focus to textbox

    hi all, i recently launched a new website (http://www.noteful.com), and everything is mostly working except for one thing. the search (on this page) feature doesn't work right. after putting in the text and simply hitting the "enter" key my RSS launches. the site is coded in vb.net/asp.net...
  20. A

    file out an RSS.xml file

    hi all, I am considering to sydicate the content from my BLOG db. Can you guys suggest has to how to do this? Presently, I am thinking of doing it this way... Upon submit, i use a function this: Public Sub RSS() Dim oFile As System.IO.File Dim oWrite As System.IO.StreamWriter oWrite...
Back
Top