Search results for query: *

  • Users: ICW
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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() { }...
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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
  11. 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...
  12. I

    SQL Connection string in app.config file

    Hi I have added an app.config file and put my connection string into it. below is the content of the app.config file. <?xml version="1.0" encoding="utf-8" ?> <configuration> <connectionStrings> <add name="DatabaseConnection" connectionString="Data Source=ICWSQL2K;Initial Catalog= HACardio;user...
  13. I

    connection string from a text file

    :confused: Hi I have created a small data access app. I want to pull the connection string for the SQL database from a text file. But I am getting it a bit wrong can anyone help at all Dim connStr As String = "" Dim SqlConnection1 As SqlConnection = New SqlConnection Dim sr As New...
  14. I

    mousedown, mousemove

    Hi, I am trying to get my image to move when I hold the mouse down and drag it. I have some code which sort of works but the image is very judddery and not at all smooth when being dragged. Can anyone help? See code below; ----------------------------- Private Sub PicImageSingle_MouseDown(ByVal...
  15. I

    Newbie trying to print

    Hi, I have 3 images on my form and I have created 3 buttons in order to print the 3 images. The images are called; picimage, picimage2, picimage3 and the buttons are btnsmallPrint1, btnsmallPrint2, btnsmallPrint3 i.e. When i click on "btnsmallPrint1" it prints off picimage1 along with a...
Back
Top