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

Search results for query: *

  • Users: shiggyshag
  • Content: Threads
  • Order by date
  1. shiggyshag

    Postback on DDL with confirm

    Hi I have a Datagrid with a dropdownlist. When a change occurs I would like it to popup a confirm box yes/no or ok/cancel (anything like that) and if they select no it doesnt postback if they say yes then it does Any ideas please. Cheers
  2. shiggyshag

    FormsAuthentication multi login

    HI I have a 2 stage login process: The first one is fLogin.aspx which checks the login name and password if this is succesfull it redirects to fMemorableInfo.aspx which shows 3 dropdowns (you know what I mean) if they are succesfull they redirect to fMain.aspx if not they stay for 3 attempts...
  3. shiggyshag

    HIde Label

    HI I use the below to hide a button when I print my page but it doesnt work for labels what should I use? document.Form1.Label2.style.visibility = "hidden"; Cheers
  4. shiggyshag

    Group Select Option

    Hi Is it possible to have a select dropdown which can have catagories with arrows So lets say Search Enginee -> (drops down say Yahoo, google etc) Newspapers -> (drops down say Sun, Times etc) Radio (no dropdown but can select it) etc Hope I have made my self clear Cheers
  5. shiggyshag

    Group select dropdown

    Hi Is it possible to have a select dropdown which can have catagories with arrows So lets say Search Enginee -> (drops down say Yahoo, google etc) Newspapers -> (drops down say Sun, Times etc) Radio (no dropdown but can select it) etc Hope I have made my self clear Cheers
  6. shiggyshag

    Trigger Help Please

    Hi I have a table where all the columns are updated even if there is no change to some of the columns from an SP Now I have the following trigger but because I update all the columns it runs can I check the values are different then run it if they are? ALTER TRIGGER TriggerContacts ON...
  7. shiggyshag

    outlook problem

    Hi I use the below code on my machine and works great when i put this on another machine i get errors any ideas. Dim myApp As New Outlook.Application Dim myItem As Outlook.MailItem Set myItem = myApp.CreateItem(olMailItem) -- error here Cheers
  8. shiggyshag

    Datagrid duplicates

    Hi I have a datagrid that I fill from an SQL table. What I need to do is highlight any duplicate rows on surname so if there are two Smith's they both would be highlighted say red. Any Ideas on this Please Cheers
  9. shiggyshag

    SQl Trigger and Session

    Hi Not sure where to post this so I will try here. I have an asp.net form which makes changes to a table via a stored procedure this then runs an sql trigger but I want to pass an asp.net seesion to the trigger so it can add this to the table. Any ideas on how to do this? Cheers
  10. shiggyshag

    Trigger Help Please

    HI I think Triggers are what I need but not sure how to use them in the following case. I have a table called tContacts, now when any field on that tabel is changed I would like to add that into tContactHistory table so I get the ContactID, ColumnName, oldValue, NewValue is this possible. Any...
  11. shiggyshag

    SP Problem or is it me

    Ok I have a table with the following Columns ItemNumber, Hk, Uk, Sg, Eu, Status Now Hk Uk Sg Eu can be either 1 or 0 Ok so in my sp I would like to return all Items where the Status is 'Avaiable' and Where Hk or Uk or Sq or Eu Are 0 Hope that makes sense any help would be great Cheers
  12. shiggyshag

    Update table from tabel with Where

    Hi I have a table which i need to update from some datat in another table but both need to have a where clause So I need to update Table1 where contactID = @ContactID From Table2 Where solID = @SolID below is what I have I just can not figure out how to selest a where in from ALTER PROCEDURE...
  13. shiggyshag

    Test recieving

    Hi I wish to test that my exchange and firewall are all working by sending an email to them. But i dont want to change my MX record until i know that they are working correctly. Is there a good way to ensure they are working? Cheers
  14. shiggyshag

    Find Data Record

    HI How do i find a specific row in my dataset/datatable and the bind that to my Datagrid? I want to find the ContactID and bind to that? Cheers
  15. shiggyshag

    load into frame

    HI I have a modal window that submits to its self to do a search if succesfull I want it to load a new page in a frames page. I have a nav frame and a main1 frame in main1 frame i have a top and bottom frame the modal window is opened from the top frame I want my new page to open in the main1...
  16. shiggyshag

    Help with EXEC String Please

    HI Im using the below ALTER PROCEDURE dbo.StoredProcedure1 (@SiteID int, @PlotNumber int) AS Declare @tablename VarChar(50) Declare @SQLCommand VarChar(200) set @tablename = (SELECT TableName FROM dbo.tSite WHERE (SiteID = @SiteID)) SET @SQLCommand = 'UPDATE dbo.' + rtrim(@tablename) + '...
  17. shiggyshag

    Defaults form

    Hi There I am going to have a form where you setup the defaults for the programme ie set the default for the file type either bmp or jpg. so you select bmp and Apply then I need this to be remebered every time the app starts up and sets a flag ie public filetype as string = "bmp" how do i go...
  18. shiggyshag

    Crystal Report text field

    HI I have a simple Crystal Report with two TextObjects one is cSurname The other is cForename. All i want to do is when I open it from a vb.net form is pass the values of the surname and forename that are on the vb.net form. Please Help Cheers
  19. shiggyshag

    Link to a dBase file

    Hi I have an access project connecting to an SQL server Database. I now need to connect to a single table in a dBase file how do I do this? Please any help would be great Cheers
  20. shiggyshag

    Playing DVD's

    Hi I wish to play a DVD/Vob in a VB.net form is it possible if so how do I go about this. Thank you

Part and Inventory Search

Back
Top