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 SkipVought 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: *

  1. mtrasp

    Missing File Open Dialog Filter Drop down in system

    This is windows application written in C#.operating System is win7
  2. mtrasp

    Missing File Open Dialog Filter Drop down in system

    one of my end user is trying to attach xlsx files but strangely she is missing filter drop down in her system. where can i change the settings in Operating System to see the filter drop down  Missing filter drop down as showed in below image [Filter Drop down missing]
  3. mtrasp

    Resize the pop up window

    HyperLink myweek = new HyperLink(); myweek.Text = "week"; myweek.NavigateUrl = "Summary.aspx"; cell.Controls.Add(myweek); above hyperlink is creating dynamically in conrtrol. When I click on the hyperlink it is opening pop up window...
  4. mtrasp

    Record set filter in asp

    Thank you very much for your valuable time .I am using sql server 2005 I am trying to do below way please suggest me If am wrong CREATE PROCEDURE dbo.sp_selectbuilds ( @ComponentID int, @ReleaseNameID int, @ProductGroupID int, @OSGroupID int ) AS IF @Componentid = 0 BEGIN...
  5. mtrasp

    Record set filter in asp

    Hi Thank you for your reply as you said I am applying dq.ComponentID <> 0 to the where condition But I am not getting any records. CREATE PROCEDURE dbo.sp_selectbuilds ( @ComponentID int, @ReleaseNameID int, @ProductGroupID int, @OSGroupID int ) AS SELECT DISTINCT...
  6. mtrasp

    Record set filter in asp

    Thank you for considering my problem. below is the source from "sp_selectbuilds" CREATE PROCEDURE dbo.sp_selectbuilds ( @ComponentID int, @ReleaseNameID int, @ProductGroupID int, @OSGroupID int ) AS DECLARE @DriverRequest TABLE ( Row int identity(1,1)...
  7. mtrasp

    Record set filter in asp

    Can anyone please tell me how can i filter record set.I have dropdownlist . I am selecting releasenumber,productgroupid,osgroupid and Componentid . but Componentid is by default 0.it is displaying builds by executing below stored procedure . my problme is it is displaying lot of unwanted...
  8. mtrasp

    String Comparison in sql server 2005

    Thank you for your valuable suggestion can u please see the below one.. Instead of creating new Table can i use Temporary Table. below code is executing in while loop in one stored procedure.. ----stored procedure starts here---- while () DECLARE @VistaLimit VARCHAR(20) DECLARE @Win7Limit...
  9. mtrasp

    String Comparison in sql server 2005

    Thank you very much for your valuable Help. I am trying to implement what ever you said in my problem Really Thank You verymuch Yours sincerely mtr
  10. mtrasp

    String Comparison in sql server 2005

    Thank you for your reply DECLARE @Win7Limit VARCHAR(20) DECLARE @VistaWin7Limit VARCHAR(20) DECLARE @RelName VARCHAR(20) SET @VistaLimit = 15.14 SET @Win7Limit = 15.15 SET @VistaWin7Limit = 15.16 SELECT @RelName = [Name] FROM Table WHERE NameID = 3956 IF...
  11. mtrasp

    String Comparison in sql server 2005

    DECLARE @VistaLimit VARCHAR(20) DECLARE @Win7Limit VARCHAR(20) DECLARE @VistaWin7Limit VARCHAR(20) DECLARE @RelName VARCHAR(20) SELECT @RelName = [Name] FROM Table name WHERE ReleaseNameID = 3956 ProductGroupID = 30 IF @RelName <=15.14 BEGIN print...
  12. mtrasp

    syntax help for if statement

    Thank you very much for your reply can i write like this ? i.e with out Else . If condition Then ... ElseIf condition Then ... ElseIf condition Then ... End If
  13. mtrasp

    syntax help for if statement

    hi can i write if statement with out else in asp code is working fine but ia m not sure using if statement with out else . can we use if statement with out else i.e if --elseif--elseif--endif please help me below is my code array=15.16 or 15.12win7 or 15.win7 or 15.18 win7 or .......etc i...
  14. mtrasp

    Type mismatch cint error

    Hi Thank you for your reply. there are many values are coming into this page. those values are only integers so no problem i am getting error with 15.12win7 and 15.win7. if relase name is 15.12win7 i am using If CInt(array(0)) >= 15 And cint(left(array(1),2))>=16 it is working fine . when the...
  15. mtrasp

    Type mismatch cint error

    Hi i am getting mismatch type error .please help me how can i write if condition to satisfy all the conditions if the releasename is 15.16 in asp page then array(0)=15 and array(1)=16 is not showing any error but if the releasename is 15.12win7 or 15.win7 it is showing error how can i...
  16. mtrasp

    what is happening in this code

    hi , iam new to perl i am trying to understand this code please tell me more about this code .what i need to learn to understand this code my $sql = "exec pr_SelectPhysicalLocation $Build,$operatingsystem"; if ($mydb->Sql($sql)) {...
  17. mtrasp

    how can i change into switch statement

    Thanks Trojan my perl version is v5.8.8 once again thank you for your GREAT Help
  18. mtrasp

    how can i change into switch statement

    HI Kevin, Thank you verymuch for your suggestion.i am unable to find your switch statement syntax in other post?
  19. mtrasp

    how can i change into switch statement

    Hi Trojan, Thank you very much for your valuable time.i am debugging with new code.Thanks alot
  20. mtrasp

    how can i change into switch statement

    HI Trojan, I am new to perl scripting can you please tell me more about look up table . i have default value $Folder = "win2k_xp"; $Readme = "readme_2k_xp.txt"; where can i put these two default values .in look up table or in else statement? my boss is asking me to write in switch statement...

Part and Inventory Search

Back
Top