Search results for query: *

  • Users: ICW
  • Order by date
  1. I

    How to check for file name

    Anyone at all?
  2. I

    How to check for file name

    last time i id homework was about 25 years ago:O) I'm a 43 year old stressed worker, being given projects and deadlines that are a bit beyond what i can do by myself, hence the need to learn quickly. Thanks In advance if anyone can help
  3. I

    How to check for file name

    I have some code (see below) in my SSIS package. Can anyone show me how to create a variable in the code that has the Vaue "HEADER" and then to only do the file.move stuff if the filename contains the string "HEADER". I know what i want to do but lack programming skills to write the syntax. If...
  4. I

    how to Disable play during buffering

    thanks a lot
  5. I

    how to Disable play during buffering

    Hi All Can anyone tell me the setting to make my windows media control wait while it buffers. Thanks Private Sub AxWindowsMediaPlayer1_Buffering(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_BufferingEvent) Handles AxWindowsMediaPlayer1.Buffering ' Here disable WMP play during...
  6. I

    AxWindowsMediaPlayer - buffering and looping

    Mental Hard - you're GREAT!! The looping works fine now. Re - the buffering bit i'm not quite sure where to put it, could you show me where in the code below? Private Sub lvwfiles_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles lvwfiles.DoubleClick 'If...
  7. I

    AxWindowsMediaPlayer - buffering and looping

    Hi I'm a novice so any help will be gratefully received. I have a project with the following control AxWMPLib.AxWindowsMediaPlayer which allows me to see avi files in my app. Is there a way in the code I can get it to ; 1. Force it not to play until it has buffered the whole file (this is coz I...
  8. I

    SqlDataReader.Read - If Then

    Thanks for the reply. Are you saying that If dr.Read() means 'If you can read a value'
  9. I

    SqlDataReader.Read - If Then

    Hi, I need help with an if/then I have some code pulling out the top line from a sql query (see below) Dim comd As SqlCommand = SqlConnection1.CreateCommand comd.CommandType = CommandType.Text comd.CommandText = "Select top 1...
  10. I

    onclick event to navigate to web page

    thanks a lot ;o)
  11. I

    onclick event to navigate to web page

    Hi, The title say's it all really. I have a ASP page with a button (button1) and I want users to click on it and have their browser navigate to www.mysite.com. I need the code to go inside this handler. ----------------------------------- function Button1_onclick() { }...
  12. I

    turning off tabbing for labels?

    Hi I want to set the tab order of my windows form. I can see that the view menu has a tab order function. My problem is that I am seemingly unable to turn off tabbing for labels. the properties of each label do not seem to have a "TabStop" feature. thanks ICW
  13. I

    Help required with printing

    I should point out that I am not a programmer, I dabble from time to time and consequently forget how to do anything in between each time.... Any ways here's the rub I have 6 images called PicImage1, PicImage2 etc etc they are being displayed in in two rows in picboxes on the form. A user...
  14. I

    hyperlink link to email address

    How on earth do I set up a hyperlink to link to an email address so that the user can send me an email (using their own email client and smtp settings) but i just want to pop open their default email client and stuff it with my email address and in the header to put something like "XYZ - Admin...
  15. I

    asp.net 2.0 master pages

    thanks a lot
  16. I

    adding users to roles asp.net 2.0

    Hi I have a website where people are invited to create a login to view some free stuff. They can then optionally pay to view a page that contains lots of training videos. I have created "Basic User" and "Paid User" roles. The videos page load event checks to make sure the user is in the "Paid...
  17. I

    asp.net 2.0 master pages

    Is it possible to add a master page after I have created a few pages and then link them retrospectively as opposed to creating the master page first? I can't see how to do this, I have added a master page but I cannot get my other pages to see/use it. thanks ICW
  18. I

    Password Recovery Email text

    Hi I am using ASP.NET 2.0 I am quite new. But have been enjoying the learnvisualstudio.net videos sent with the Microsoft Action Pack. I have been experimenting with the Membership and password recovery. When I choose password recovery I get an email back to my inbox with a new password...
  19. I

    SQL Connection string in app.config file

    thanks, I have it fixed now. through dynamic properties.
  20. I

    SQL Connection string in app.config file

    I have tried various cases. Doesn't seem to make a difference. Where can i access dynamic properties from within the form? thanks icw
Back
Top