Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

murali_utr

@murali_utr
About
Posts
195
Topics
119
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Getting ASCII value for Characters?
    M murali_utr

    I want to mapping characters by based on ASCII Value.

    Have A Nice Day! Murali.M Blog

    C# com question

  • Getting ASCII value for Characters?
    M murali_utr

    its not comma, and ttf font not Unicode font. Alt+0130 is it value. How can I get the ascii value 130. third character in the string.

    Have A Nice Day! Murali.M Blog

    C# com question

  • Getting ASCII value for Characters?
    M murali_utr

    Need Convert character to ascii value. For character "‚" ascii value is 130 but I got 8218. string is "õí‚è‹". for (int i = 0; i < rtfSource.Text.Length; i++) { rtfSource.Select(i, 1); strTemp = rtfSource.SelectedText.ToString(); strChar = strTemp.Substring(0, 1); iCode = (int)strChar[0]; }

    Have A Nice Day! Murali.M Blog

    C# com question

  • ModalPopupExtender popup Problem
    M murali_utr

    Sorry for my English. Yes.

    Have A Nice Day! Murali.M Blog

    ASP.NET com help

  • ModalPopupExtender popup Problem
    M murali_utr

    Sorry for my English. Yes.

    Have A Nice Day! Murali.M Blog

    ASP.NET com help

  • ModalPopupExtender popup Problem
    M murali_utr

    Modalpopup have textbox, DropDownList, buttons. following is my button. my requirement is when I click this button popup will not close. suggestion please. Thanks in Advance!

    Have A Nice Day! Murali.M Blog

    ASP.NET com help

  • <asp:Textbox> Width is not working
    M murali_utr

    hi thanks for your reply. Problem is width is display in design time, but different size is shown in runtime.

    Have A Nice Day! Murali.M Blog

    ASP.NET com help

  • <asp:Textbox> Width is not working
    M murali_utr

    using multiline text box. trying to set width in px. but it's not working. Need Help. Thanks in Advance.

    Have A Nice Day! Murali.M Blog

    ASP.NET com help

  • PrintTicket in GetPrintJobInfoCollection?
    M murali_utr

    Here is my code. I Get the printticket from print job. I Need Printjob informations like copycount, media size, media type, duplex printing and other details. But I can default values from the printticket like copycount is always 1 and sometime no. of pages in job also comes 0. Now struggle with this problem. I Need Help to solve this problem. PrintServer myPrintServer = new PrintServer(@"\\MyMachine"); PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues(); foreach (PrintQueue pq in myPrintQueues) { if (pq.QueueStatus != PrintQueueStatus.Error) { foreach (PrintSystemJobInfo job in pq.GetPrintJobInfoCollection()) { if (bNewJob == true) { PrintTicket pt = job.HostingPrintQueue.CurrentJobSettings.CurrentPrintTicket; UpdateText("Current Copies : " + pt.CopyCount.Value.ToString()); UpdateText("Default Copies : " + dpt.CopyCount.Value.ToString()); UpdateText("User Copies : " + upt.CopyCount.Value.ToString()); UpdateText("Full Name :" + job.HostingPrintQueue.FullName.ToString()); UpdateText("Job ID : " + job.JobIdentifier.ToString()); UpdateText("Job Name : " + job.JobName.ToString()); DateTime dt = job.TimeJobSubmitted; UpdateText("Submitter :" + job.Submitter.ToString()); UpdateText("Date:"+dt.Day.ToString()+"/"+dt.Month.ToString()+"/"+ dt.Year.ToString()); UpdateText("Hosted Server :" + job.HostingPrintServer.Name.ToString()); UpdateText("No of Pages :" + job.NumberOfPages.ToString()); } } } }

    Have A Nice Day! Murali.M Blog

    C# help com sysadmin question career

  • GetPrintJobInfoCollection() Problem
    M murali_utr

    my job is print monitoring i.e. application print manager developing in c#. I catch the print job from printer queue. From that job I can get the print submitter,job name,hosted server,job time, no. of fro print and file name and some other details. but unable to get the printer selected for the print and no of pages,printer paper source, duplex or non duplex and some other details. this my problem.

    foreach (var job in LocalPrintServer.GetDefaultPrintQueue().GetPrintJobInfoCollection())
    {
    UpdateText("Job Name : " + job.JobName.ToString());
    UpdateText("Submitter :" + job.Submitter.ToString() + job.TimeJobSubmitted.ToString());
    UpdateText("Hosted Server :" + job.HostingPrintServer.Name.ToString());
    UpdateText("No of Pages :" + job.NumberOfPages.ToString());
    }

    I Need help. please suggest any other way to complete my task. Thanks in advance.

    Have A Nice Day! Murali.M Blog

    C# help com career

  • GetPrintJobInfoCollection() Problem
    M murali_utr

    from this job we can get the submitter, and machine, no. of pages and filename. But unable to get the printer for the job(Not Default printer in the machine), No. of copies, paper size and other settings. Need help for this issue. Thanks in advance.

    Have A Nice Day! Murali.M Blog

    C# help com career

  • Reg. Printing
    M murali_utr

    Hi, I Need to trace the printing process from any application in windows. If User prints any document or file from any application Need to get printing information like printer name, No. of pages, Types of paper, and other setting in the print dialog. my application triggered when print is given. Thanks in Advance.

    Have A Nice Day! Murali.M Blog

    C / C++ / MFC com debugging

  • asp.net ValidatorCalloutExtender unhandled exception error
    M murali_utr

    Thanks Richard. Thanks for your effort. Need to add the following tag in web.config file for .Net Framework 4.5

    <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None">
    </appSettings>

    Have A Nice Day! Murali.M Blog

    ASP.NET csharp javascript asp-net com sysadmin

  • asp.net ValidatorCalloutExtender unhandled exception error
    M murali_utr

    hi Richard thanks for your reply. But there is no javascript code in the pages.

    Have A Nice Day! Murali.M Blog

    ASP.NET csharp javascript asp-net com sysadmin

  • asp.net ValidatorCalloutExtender unhandled exception error
    M murali_utr

    Unhandled exception at line 79, column 1 in http://localhost:49456/about\_us.aspx?\_TSM\_HiddenField\_=ToolkitScriptManager\_HiddenField&\_TSM\_CombinedScripts\_=;;AjaxControlToolkit,+Version=1.0.20229.20821,+Culture=neutral,+PublicKeyToken=28f01b0e84b6d53e:en-US:c5c982cc-4942-4683-9b48-c2c58277700f:e2e86ef9:9ea3f0e2:9e8e87e9:1df13a87:4c9865be:ba594826:757f92c2

    0x800a139e - JavaScript runtime error: Sys.ArgumentNullException: Value cannot be null.

    above error occured for the following code

    <td style="text-align:left" class="content">
    <asp:TextBox ID="txtName" Width="225px" AutoPostBack ="true" runat="server"
    ValidationGroup="valEnquiry" CausesValidation="True" TabIndex="1"></asp:TextBox>
    <br />
    <asp:RequiredFieldValidator ID="RFName" runat="server" ValidationGroup="valEnquiry" ControlToValidate="txtName" ErrorMessage="Please Enter Your Name" ForeColor="Red"></asp:RequiredFieldValidator>
    <cc1:ValidatorCalloutExtender
    ID="val_reqDTT"
    runat="server"
    TargetControlID="RFName">
    </cc1:ValidatorCalloutExtender>
    </td>

    Have A Nice Day! Murali.M Blog

    ASP.NET csharp javascript asp-net com sysadmin

  • Equivalent Linq Query for SQL Query?
    M murali_utr

    Select Article_id, Article_Title, Case Article_Home_Display when 'Y' then 'Yes' Else 'No' End Article_Home_Display, Article_Type, Case Dflag when 'A' then 'Active' Else 'Not Active' End Status from Articles where co_id=" & companydetails.iCoId & " Order By Article_id Desc I Need Linq query for the above sql query. Thanks in advance.

    Have A Nice Day! Murali.M Blog

    C# database csharp linq com question

  • Equivalent LINQ Query?
    M murali_utr

    Select Article_id, Article_Title, Case Article_Home_Display when 'Y' then 'Yes' Else 'No' End Article_Home_Display, Article_Type, Case Dflag when 'A' then 'Active' Else 'Not Active' End Status from Articles where co_id=" & companydetails.iCoId & " Order By Article_id Desc I Need Linq query for the above sql query. Thanks in advance.

    Have A Nice Day! Murali.M Blog

    Visual Basic database csharp linq com question

  • Requiredfield validator is not working
    M murali_utr

    required field validator is not working in this code

    <%@ Page Language="VB" AutoEventWireup="false" codefile="~/Test.aspx.vb" Inherits="Test" %>

    Welcome to BEML Limited
    
    
    
          
    
    
        
    
        
    
            
    
                SUBMIT RESUME
            
    
        
    
        
    
            
    
                
    
                    
    
                        
    
                            All fields are mandatory
                        
    
                    
    
                    
    
                        
    
                            Name\*:
    
    ASP.NET career

  • AJAX control
    M murali_utr

    please find the code <%@ Page Language="VB" MasterPageFile="~/privatemaster.master" AutoEventWireup="false" CodeFile="InfoSettings.aspx.vb" Inherits="InfoSettings" Title="Information settings" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>

    Master Information Setting

    Information in this page are included in various parts of the site. Please provide accurate information.

    All fields marked * mandatory

    Company & Contact Info

    Information provided in this page will be included in Contact us page. The Company name will be included in copyright declaration too.

    ASP.NET help javascript com design

  • AJAX control
    M murali_utr

    In my project using AJAX 4.5 ValidatorCalloutExtender and TextBoxWatermarkExtender controls used in project. following error occurred. 0x800a138f - JavaScript runtime error: Unable to get property 'UI' of undefined or null reference I need help. Thanks in advance.

    Have A Nice Day! Murali.M Blog

    ASP.NET help javascript com design
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups