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!

Search results for query: *

  • Users: mtrasp
  • Content: Threads
  • Order by date
  1. 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]
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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)) {...
  8. mtrasp

    how can i change into switch statement

    HI please help me how can i change following code into switch statement if ($operatingsystem eq "170") { $Folder = "winvista"; $Readme = "readme_winvista.txt"; } elsif ($operatingsystem eq "173") { $Folder =...
  9. mtrasp

    open a directory and get the .inf files

    Hi I am unable to set the path and get the values from one directory..below is the my code $filespec = "$Path\\*.inf"; @INFFiles = `dir /b $filespec`; foreach $infFile (@INFFiles) { open(INF, "<$Path\\$infFile") || writelog(logdie,"Could not open $Path\\$infFile")...
  10. mtrasp

    sessions in asp page

    Hi i am working on asp application. i did some thing wrong about sessions <%@ Language="VBScript" %> <% Option Explicit %> <% Response.Buffer = True%> <% i have one asp page work.asp in that i have code and session like this if something Then iscopy=True else iscopy=False End...
  11. mtrasp

    role of perl in classical asp application

    hi we have one asp application written in vbscript language. my manager told me that learn perl script because we are using perl in backend processing. i am not understanding where we can use perl in asp application .please give me some idea where we can use perl in asp application
  12. mtrasp

    Invalid use of Null: 'Cint

    Hi i am getting this error Invalid use of Null : Cint in line 2 i.e If rs.Fields("CurrentInstallID").Value = "0". please help me what may be the problem This is my code: If Not IsNull(rs.Fields("BuildOutputComponentID").Value) then If rs.Fields("CurrentInstallID").Value = "0" _ Or...
  13. mtrasp

    FILESPIDER FAILED TO RUN error message displays

    This is partial code of my page1.asp when customer try to push the kit to Done state he is getting following error for some kits The error is “FILESPIDER FAILED TO RUN” error message Displays .please tell me the what may be the error ? Case "donekit": 'push the kit to "DONE" state...
  14. mtrasp

    Delete button is not working in application

    hi i am new to asp application . i need to fix one bug .it is really confusing me . Delete button is not working on application(which one is customers are using) . i have tried in my local development DEV server it is working fine.but in main application (customers are using) delete button is...

Part and Inventory Search

Back
Top