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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by saintedmunds

  1. saintedmunds

    combine two fields

    Works great thank you
  2. saintedmunds

    combine two fields

    Hi I have a table with 3 fields ContactID Email Email2 I would like to get an SP to return the following ContactID Email 23 me@me.com;you@you.com but if they dont have a second email then just return ContactID Email 47 xx@xx.com I'm really not sure how to achieve this so...
  3. saintedmunds

    Fading

    Hi I have the timer set to enabled so when the form opens its already started. And the on the main form timer in closes this foem when it opens the next one so i didnt think i would need to stop it? Cheers
  4. saintedmunds

    Fading

    Sorry here you go. Main Form with panel: Public Class fMain Dim myfrm As Form Private Sub fMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load myfrm = My.Forms.fAvailable Me.cMainPanel.Controls.Clear() myfrm.TopLevel = False...
  5. saintedmunds

    Fading

    Hi This doesnt work when the form is in a panel. Cheers
  6. saintedmunds

    Fading

    Ok understand that How do i stop it when its in the right place? something like when x = 0?? Cheers
  7. saintedmunds

    Fading

    Hi Please could you tell me how I move a form? Cheers
  8. saintedmunds

    Fading

    Hi Im just putting together a Sales display and have 4 forms lets call them form1 form2 form3 and main in the main form I have a panel with a timer after 30 seconds it display the next form etc is there any way of getting the forms to fade in and out of the panel? or even to move a form from...
  9. saintedmunds

    Best way to add data to database

    Thank you for the quick reply. So would I load my data into a datatable in the loop and the use the sqlBulkCopy to updata the database? Cheers
  10. saintedmunds

    Best way to add data to database

    HI I have an app that sends out bulk emails from my Database. So it loops round sending the email and it either succedded or failed. Now I want to record this info in a database lets say table name EmailCampaignResults FieldNames ContactID CampaignID and Succedded(Bit/True 0r False) now i can...
  11. saintedmunds

    Sending emails and getting a return sent message

    Sorry for the delay I have gone down the route of a Thread and it seems to work quite well. If you would like to see what I came up with let me know and I will post it here. Thank you all.
  12. saintedmunds

    Format UK Mobile number

    Anyone?
  13. saintedmunds

    Format UK Mobile number

    This is what I have come up with Could it be made better? Private Sub cCheck_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cCheck.Click If CheckNumberFormat(cMobileNumber.Text) Then MsgBox("This is a mobile Number") ElseIf...
  14. saintedmunds

    Format UK Mobile number

    Hi Im trying to check the format of a mobil phone number and if its incorrect change it to the correct format. so lets say I have 07723 567432 I need to change it to 447723567432 I have no idea on regular expressions or if this is the way to go. Could some one point me in the right...
  15. saintedmunds

    Authenication timesout at 20 minutes

    Hi If your using IIS there is a timeout in there which default is 20 Cheers

Part and Inventory Search

Back
Top