Click here to Skip to main content
15,891,981 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: get a value from Datalist and bring it on popupcontrol Panel Pin
Arindam Tewary22-Apr-10 1:58
professionalArindam Tewary22-Apr-10 1:58 
GeneralRe: get a value from Datalist and bring it on popupcontrol Panel Pin
gautamamit822-Apr-10 2:23
gautamamit822-Apr-10 2:23 
QuestionRegarding Binary data write Pin
Unknown Ajanabi21-Apr-10 23:28
Unknown Ajanabi21-Apr-10 23:28 
AnswerRe: Regarding Binary data write Pin
michaelschmitt22-Apr-10 1:18
michaelschmitt22-Apr-10 1:18 
GeneralRe: Regarding Binary data write Pin
Unknown Ajanabi22-Apr-10 2:34
Unknown Ajanabi22-Apr-10 2:34 
GeneralRe: Regarding Binary data write Pin
michaelschmitt22-Apr-10 2:45
michaelschmitt22-Apr-10 2:45 
QuestionHow can i Convert currency amount in word in crystal report Pin
Sadeq Monoj21-Apr-10 17:40
Sadeq Monoj21-Apr-10 17:40 
AnswerRe: How can i Convert currency amount in word in crystal report Pin
Sandesh M Patil21-Apr-10 22:58
Sandesh M Patil21-Apr-10 22:58 
Hi You can use following code to convert amt into words. Use it in your formula field,
numbervar RmVal:=0; 
numbervar Amt:=0; 
numbervar pAmt:=0; 
stringvar InWords :="Rupees "; 

Amt := 25,12,000  ; 


if Amt > 10000000 then RmVal := truncate(Amt/10000000); 
if Amt = 10000000 then RmVal := 1; 

   if RmVal = 1 then 
        InWords := InWords + " " + towords(RmVal,0) + " crore" 
   else 
        if RmVal > 1 then InWords := InWords + " " + towords(RmVal,0) + " crores"; 


    Amt := Amt - Rmval * 10000000; 

    if Amt > 100000 then RmVal := truncate(Amt/100000); 
    if Amt = 100000 then RmVal := 1; 

    if RmVal = 1 then 
        InWords := InWords + " " + towords(RmVal,0) + " lakhs"
    Else
     If RmVal > 1 then InWords := InWords + " " + ToWords(RmVal,0)+ "Lakhs";

        Amt := Amt - Rmval * 100000; 

  if Amt > 0 then InWords := InWords + " " + towords(truncate(Amt),0); 

        pAmt := (Amt - truncate(Amt)) * 100; 

        if pAmt > 0 then 
            InWords := InWords + " and " + towords(pAmt,0) + "paisa only" 
        else 
            InWords := InWords + " only"; 

        UPPERCASE(InWords) 

QuestionPage Methods and ASCX Pin
Matt Cavanagh21-Apr-10 14:38
Matt Cavanagh21-Apr-10 14:38 
AnswerRe: Page Methods and ASCX Pin
daveyerwin21-Apr-10 15:36
daveyerwin21-Apr-10 15:36 
GeneralRe: Page Methods and ASCX Pin
Not Active21-Apr-10 16:38
mentorNot Active21-Apr-10 16:38 
GeneralRe: Page Methods and ASCX [modified] Pin
daveyerwin21-Apr-10 17:30
daveyerwin21-Apr-10 17:30 
GeneralRe: Page Methods and ASCX Pin
Not Active22-Apr-10 1:46
mentorNot Active22-Apr-10 1:46 
GeneralRe: Page Methods and ASCX Pin
daveyerwin22-Apr-10 3:37
daveyerwin22-Apr-10 3:37 
GeneralRe: Page Methods and ASCX Pin
Not Active22-Apr-10 4:41
mentorNot Active22-Apr-10 4:41 
GeneralRe: Page Methods and ASCX Pin
daveyerwin22-Apr-10 4:49
daveyerwin22-Apr-10 4:49 
AnswerRe: Page Methods and ASCX Pin
Not Active21-Apr-10 16:41
mentorNot Active21-Apr-10 16:41 
GeneralRe: Page Methods and ASCX Pin
Matt Cavanagh21-Apr-10 21:39
Matt Cavanagh21-Apr-10 21:39 
Questionweb Services or make a connection directly to the servers or another way Pin
Arlen Navasartian21-Apr-10 12:10
Arlen Navasartian21-Apr-10 12:10 
AnswerRe: web Services or make a connection directly to the servers or another way Pin
Not Active21-Apr-10 12:57
mentorNot Active21-Apr-10 12:57 
QuestionCustom membership provider Pin
Yoyosch21-Apr-10 10:00
Yoyosch21-Apr-10 10:00 
AnswerRe: Custom membership provider Pin
Not Active21-Apr-10 12:53
mentorNot Active21-Apr-10 12:53 
GeneralRe: Custom membership provider Pin
Yoyosch21-Apr-10 20:56
Yoyosch21-Apr-10 20:56 
QuestionHow to avoid postback wheh click ImageButton to show/hide Gridview rows Pin
Andraw11121-Apr-10 6:40
Andraw11121-Apr-10 6:40 
AnswerRe: How to avoid postback wheh click ImageButton to show/hide Gridview rows Pin
Brij21-Apr-10 6:54
mentorBrij21-Apr-10 6:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.