Search results for query: *

  • Users: a8le
  • Order by date
  1. A

    1-2-3's of making a toolbar

    hi, so far i have found one thread on the net with a working example. it's not perfect but works... Creating a (Dockable) Application Desktop Toolbar - VBForums could you take this help a few steps further?... 1) displaying some information on it (maybe total ram used?) 2) give it the ability...
  2. A

    1-2-3's of making a toolbar

    so i created a form with a fixed dialog border style and have tried everything, but it's still not a "bar". what am i doing wrong?
  3. A

    text to speech, tts

    Hi johnH, once again, thank you for the "duh" enlightment. :)
  4. A

    text to speech, tts

    same for a control... acsx? it's still grayed out.
  5. A

    text to speech, tts

    system.speech is grayed out for me. because my project is a web project and not a forms project? thanx though.
  6. 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...
  7. A

    1-2-3's of making a toolbar

    Thanks for the reply cjard. I'll get started with that. And will come back with my results.
  8. 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...
  9. A

    Period at end of every line

    thnx JOHN Its been a while so I but I got everything working right with this... If saveFileDialog1.ShowDialog() = DialogResult.OK Then oMyStream = saveFileDialog1.OpenFile() Dim oWrite As New StreamWriter(oMyStream) For Each LineInput As String In tbx_main.Lines ‘Core Code, add periods to...
  10. 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...
  11. A

    Mass Approve using a Checkbox

    Well, I gave in and used this as a workaround if this helps anyone... Front End: Text='<%# DataBinder.Eval(Container, "DataItem.PrimaryUniqueID") %>' Back End: Dim PrimaryUniqueID As String = ckbxMassApprove.Text.ToString -Thuan
  12. 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...
  13. A

    youtube embed to the back

    I figured it out... I did something like this and it worked: #divM1{ position:relative; z-index:2; } #div2 { position:absolute; top:0; z-index:3; } I simply put the contents of primary div into the holder div div1+divM=divM1, then I put div2 into divM1... <divM1> ...div1_contents...
  14. A

    youtube embed to the back

    anyone? i'll take any suggestions...
  15. 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...
  16. A

    close a window... IE7

    Hey John, Thanks for the reply, but that didn't work. I eventually found this thread... http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=962189&SiteID=1 and thought of a solution specific for my code. Best Regards, a8le.
  17. 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...
  18. A

    bad word filtering asp.net

    Hi JohnhH, Okay, it doesn't work, but i realized that i don't need it... filtering singular words is fine. Thank you, a8le.
  19. A

    bad word filtering asp.net

    Okay back... another question... right now the filter only checks for single words and not phrases. What do I need to change?
  20. A

    bad word filtering asp.net

    Hi JohnH, Thank you for the help and words of wisdom. I got it working! Here's the code for others: Public Function CheckString(ByVal InputString As String) As String Dim r As Regex Dim element As String Dim output As String Dim eLength...
Back
Top