• bca321
  • NEWBIE
  • 5 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 23
    Questions
  • 26
    Replies
Message Edited by bca321 on 03-12-2009 10:06 AM
Message Edited by bca321 on 03-10-2009 07:41 PM

Hi,

 

Pl's tell me how to remove line from text file.

Message Edited by bca321 on 03-09-2009 09:47 AM
Message Edited by bca321 on 03-04-2009 09:37 AM
Message Edited by bca321 on 03-04-2009 04:27 AM
Message Edited by bca321 on 03-04-2009 05:01 AM

Hi.

 

My date method  is

 

Date submitDate;

 

string year = '';

string month = '';
string day = '';           
string stringDate = year + '-' + month + '-' + day;
Date SubmitDate = date.valueOf(stringDate);

 

But still error. help me


Message Edited by bca321 on 03-02-2009 08:42 PM

Hi,

 

I have text file and I want read data from 5th line. How can I skip line 1 - 5? and also empty lines I want to skip. Pl's explain me.

Message Edited by bca321 on 03-01-2009 08:14 AM
Message Edited by bca321 on 03-01-2009 08:36 AM
Message Edited by bca321 on 03-01-2009 08:40 AM

Hi,

 

My date field type is Date. date patern is yy-mm-dd.

 

String year = '';

String month = '';String day =

'';string stringDate = year + '' + month + '' + day;

Date DueDate = date.valueOf(stringDate);

 

my code is here. but still error. can you pl's tel me how to write code. and also I want to write regular expression for that date field.

I made a trigger that updates somes values after update. But some fields are not the same type.

Is there any functionnality ( like toString)  to covnert My picklist values (String) to a double ( Like parseFloat in Javascript).


Thank you