Thursday 8 November 2012

Re: ..::VU-Pink::.. LMS kis kis ka down hy?

G G

On 11/8/12, Syeda Sheeza <shizaarooj@gmail.com> wrote:
> LMS NOT WORKING :(
>
> On Thu, Nov 8, 2012 at 8:36 AM, (`*•.¸Imran Mughal¸.•*´ ) <
> vuimran1@gmail.com> wrote:
>
>> my pleasure
>>
>>
>> On Thu, Nov 8, 2012 at 9:36 PM, Cooldoud Hina
>> <cooldoudhina@gmail.com>wrote:
>>
>>> OK THANK YOU
>>>
>>>
>>> On 11/8/12, (`*•.¸Imran Mughal¸.•*´ ) <vuimran1@gmail.com> wrote:
>>> > When you will compile it with borland c.it will give you an
>>> > executable
>>> > file. then you need to open that file into CMD to see results. this is
>>> what
>>> > you have to capture as snapshop.
>>> >
>>> > On Thu, Nov 8, 2012 at 9:29 PM, Cooldoud Hina
>>> > <cooldoudhina@gmail.com>wrote:
>>> >
>>> >> TO ID KISE USE KRNA HA
>>> >> US MAIN OR SNAPSHORT
>>> >>
>>> >> On 11/8/12, (`*•.¸Imran Mughal¸.•*´ ) <vuimran1@gmail.com> wrote:
>>> >> > #include<stdio.h>
>>> >> >
>>> >> > #include<fcntl.h>
>>> >> >
>>> >> > #include<io.h>
>>> >> >
>>> >> > #include<BIOS.H>
>>> >> >
>>> >> > #include<DOS.H>
>>> >> >
>>> >> > unsigned int handle;
>>> >> >
>>> >> > void main()
>>> >> >
>>> >> > {
>>> >> >
>>> >> > union REGS regs;
>>> >> >
>>> >> > unsigned long int size;
>>> >> >
>>> >> > handle = open("abc.txt",O_RDONLY);
>>> >> >
>>> >> > regs.x.bx = handle;
>>> >> >
>>> >> > regs.h.ah = 0x42;
>>> >> >
>>> >> > regs.h.al = 0x02;
>>> >> >
>>> >> > regs.x.cx = 0;
>>> >> >
>>> >> > regs.x.dx = 0;
>>> >> >
>>> >> > int86(0x21,&regs,&regs);
>>> >> >
>>> >> > *((int*)(&size)) = regs.x.ax;
>>> >> >
>>> >> > *(((int*)(&size))+1) =regs.x.dx;
>>> >> >
>>> >> >
>>> >> >
>>> >> >
>>> >> >
>>> >> > printf ("My VU-ID is type your id here");
>>> >> >
>>> >> > printf ("File Size of abc.txt is %d" ,size);
>>> >> >
>>> >> >
>>> >> >
>>> >> > handle = open("xyz.txt",O_RDONLY);
>>> >> >
>>> >> >
>>> >> >
>>> >> > regs.x.bx = handle;
>>> >> >
>>> >> > regs.h.ah = 0x42;
>>> >> >
>>> >> > regs.h.al = 0x02;
>>> >> >
>>> >> > regs.x.cx = 0;
>>> >> >
>>> >> > regs.x.dx = 0;
>>> >> >
>>> >> > int86(0x21,&regs,&regs);
>>> >> >
>>> >> > *((int*)(&size)) = regs.x.ax;
>>> >> >
>>> >> > *(((int*)(&size))+1) =regs.x.dx;
>>> >> >
>>> >> > printf ("File Size of xyz.txt is %d" ,size);
>>> >> >
>>> >> > regs.x.bx = handle;
>>> >> >
>>> >> >
>>> >> >
>>> >> > }
>>> >> >
>>> >> >
>>> >> > this is correct one. if any one wanna use.
>>> >> >
>>> >> > On Thu, Nov 8, 2012 at 9:20 PM, Cooldoud Hina
>>> >> > <cooldoudhina@gmail.com>wrote:
>>> >> >
>>> >> >> On 11/8/12, Cooldoud Hina <cooldoudhina@gmail.com> wrote:
>>> >> >> > maze ki nai
>>> >> >> >
>>> >> >> >
>>> >> >> > On 11/8/12, Nimra Rajput <maria.seens@gmail.com> wrote:
>>> >> >> >> fruit chaat ha
>>> >> >> >>
>>> >> >> >> On Thu, Nov 8, 2012 at 9:06 PM, Cooldoud Hina <
>>> >> cooldoudhina@gmail.com>
>>> >> >> >> wrote:
>>> >> >> >>>
>>> >> >> >>> ya kya ha
>>> >> >> >>>
>>> >> >> >>>
>>> >> >> >>>
>>> >> >> >>> On 11/8/12, Nimra Rajput <maria.seens@gmail.com> wrote:
>>> >> >> >>> > #include <dos.h>
>>> >> >> >>> > void interrupt (*oldTimer)( ); //corrected
>>> >> >> >>> > void interrupt (*oldKey)( ); //corrected
>>> >> >> >>> > void interrupt newTimer ( );
>>> >> >> >>> > void interrupt newKey ( );
>>> >> >> >>> > char far *scr = (char far* ) 0xB8000000;
>>> >> >> >>> > int i, t = 0, m = 0;
>>> >> >> >>> > char charscr [4000];
>>> >> >> >>> > void main( )
>>> >> >> >>> > {
>>> >> >> >>> > oldTimer = getvect(8);
>>> >> >> >>> > oldKey = getvect (9);
>>> >> >> >>> > setvect (8,newTimer);
>>> >> >> >>> > setvect (9,newKey);
>>> >> >> >>> > getch();
>>> >> >> >>> > getch();
>>> >> >> >>> > getch();
>>> >> >> >>> > getch();
>>> >> >> >>> > }
>>> >> >> >>> >
>>> >> >> >>> > void interrupt newTimer ( )
>>> >> >> >>> > {
>>> >> >> >>> > t++;
>>> >> >> >>> > if ((t >= 182) && (m == 0))
>>> >> >> >>> > {
>>> >> >> >>> > for (i =0; i < 4000; i ++)
>>> >> >> >>> > charscr [i] = *(scr + i);
>>> >> >> >>> > for (i =0; i <=4000; i +=2)
>>> >> >> >>> > {
>>> >> >> >>> > *(scr + i) = 0x20;
>>> >> >> >>> > *(scr + i + 1) = 0x07;
>>> >> >> >>> > }
>>> >> >> >>> > t = 0; m = 1;
>>> >> >> >>> > }
>>> >> >> >>> > (*oldTimer) ( );
>>> >> >> >>> > }
>>> >> >> >>> > void interrupt newKey ( )
>>> >> >> >>> > {
>>> >> >> >>> > int w;
>>> >> >> >>> > if (m == 1)
>>> >> >> >>> > {
>>> >> >> >>> > for (w =0; w < 4000; w ++)
>>> >> >> >>> > *(scr + w) = charscr [w];
>>> >> >> >>> > m = 0;
>>> >> >> >>> > }
>>> >> >> >>> > (*oldKey) ( );
>>> >> >> >>> > }
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> > On Thu, Nov 8, 2012 at 9:00 PM, Cooldoud Hina <
>>> >> >> cooldoudhina@gmail.com>
>>> >> >> >>> > wrote:
>>> >> >> >>> >>
>>> >> >> >>> >> assinment first
>>> >> >> >>> >>
>>> >> >> >>> >>
>>> >> >> >>> >>
>>> >> >> >>> >> On 11/8/12, Cooldoud Hina <cooldoudhina@gmail.com> wrote:
>>> >> >> >>> >> >
>>> >> >> >>> >> >
>>> >> >> >>> >> > On 11/8/12, Cooldoud Hina <cooldoudhina@gmail.com> wrote:
>>> >> >> >>> >> >> main ne assinment krni ha
>>> >> >> >>> >> >> as waja si yahan hoo
>>> >> >> >>> >> >>
>>> >> >> >>> >> >>
>>> >> >> >>> >> >>
>>> >> >> >>> >> >>
>>> >> >> >>> >> >> sokar ha cs609
>>> >> >> >>> >> >>
>>> >> >> >>> >> >>
>>> >> >> >>> >> >> On 11/8/12, Nimra Rajput <maria.seens@gmail.com> wrote:
>>> >> >> >>> >> >>> konse subject me help chaiye?
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>> On Thu, Nov 8, 2012 at 8:54 PM, Cooldoud Hina
>>> >> >> >>> >> >>> <cooldoudhina@gmail.com>
>>> >> >> >>> >> >>> wrote:
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>> zalmoo ko help nai
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>> ya hi
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>> On 11/8/12, Cooldoud Hina <cooldoudhina@gmail.com>
>>> wrote:
>>> >> >> >>> >> >>>> > ok
>>> >> >> >>> >> >>>> >
>>> >> >> >>> >> >>>> > On 11/8/12, Àlá∂∂ịŋ <m.aladdin83@gmail.com> wrote:
>>> >> >> >>> >> >>>> >> jaldi kro kehian light jane se na band ho jay
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >> On Thu, Nov 8, 2012 at 8:46 PM, Nimra Rajput
>>> >> >> >>> >> >>>> >> <maria.seens@gmail.com>
>>> >> >> >>> >> >>>> >> wrote:
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>> kr do [?]
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>> On Thu, Nov 8, 2012 at 8:44 PM, Cooldoud Hina
>>> >> >> >>> >> >>>> >>> <cooldoudhina@gmail.com>
>>> >> >> >>> >> >>>> >>> wrote:
>>> >> >> >>> >> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> nai to main ne apna system bend kr dena ha
>>> >> >> >>> >> >>>> >>>>
>>> >> >> >>> >> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> On 11/8/12, Cooldoud Hina
>>> >> >> >>> >> >>>> >>>> <cooldoudhina@gmail.com>
>>> >> >> >>> >> >>>> >>>> wrote:
>>> >> >> >>> >> >>>> >>>> > meri b koi problem solve kare
>>> >> >> >>> >> >>>> >>>> > ugher koi kr skta hai to
>>> >> >> >>> >> >>>> >>>> > nai to
>>> >> >> >>> >> >>>> >>>> >
>>> >> >> >>> >> >>>> >>>> > On 11/8/12, Àlá∂∂ịŋ <m.aladdin83@gmail.com>
>>> wrote:
>>> >> >> >>> >> >>>> >>>> >> lms_support@vu.edu.pk <lms_support@vu.edu.pk
>>> >*
>>> >> >> >>> >> >>>> >>>> >> *
>>> >> >> >>> >> >>>> >>>> >> On Thu, Nov 8, 2012 at 8:37 PM, Syeda Sheeza
>>> >> >> >>> >> >>>> >>>> >> <shizaarooj@gmail.com>
>>> >> >> >>> >> >>>> >>>> >> wrote:
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >>> vu walon ko kis id pe mail krna hai wo b bata
>>> dy
>>> >> >> >>> >> >>>> >>>> >>> jaldi
>>> >> >> >>> >> >>>> >>>> >>> se
>>> >> >> >>> >> >>>> >>>> >>> aj
>>> >> >> >>> >> >>>> >>>> >>> last
>>> >> >> >>> >> >>>> >>>> >>> date
>>> >> >> >>> >> >>>> >>>> >>> hai
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> >>> >> >>>> >>>> >>> On Thu, Nov 8, 2012 at 7:33 AM, Àlá∂∂ịŋ
>>> >> >> >>> >> >>>> >>>> >>> <m.aladdin83@gmail.com>
>>> >> >> >>> >> >>>> >>>> >>> wrote:
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>> *sirf eik mail kr dain vu walon ko
>>> >> >> >>> >> >>>> >>>> >>>> *
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>> On Thu, Nov 8, 2012 at 8:32 PM, Cooldoud
>>> >> >> >>> >> >>>> >>>> >>>> Hina
>>> >> >> >>> >> >>>> >>>> >>>> <cooldoudhina@gmail.com>wrote:
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>>> mari assinment thi or ..........
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> >> >> >>> >> >>>> >>>> >>>>> On 11/8/12, Syeda Sheeza <
>>> shizaarooj@gmail.com>
>>> >> >> wrote:
>>> >> >> >>> >> >>>> >>>> >>>>> > i am also facing this problem GDB submit
>>> >> >> >>> >> >>>> >>>> >>>>> > krwana
>>> >> >> tha
>>> >> >> >>> >> >>>> >>>> >>>>> > ab
>>> >> >> >>> >> >>>> >>>> >>>>> > kya
>>> >> >> >>> >> >>>> >>>> >>>>> > hoga
>>> >> >> >>> >> >>>> >>>> >>>>> > :(
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> >> >>> >> >>>> >>>> >>>>> > On Thu, Nov 8, 2012 at 7:28 AM, Nimra
>>> Rajput
>>> >> >> >>> >> >>>> >>>> >>>>> > <maria.seens@gmail.com>
>>> >> >> >>> >> >>>> >>>> >>>>> wrote:
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> >> >>> >> >>>> >>>> >>>>> >> *sbka
>>> >> >> >>> >> >>>> >>>> >>>>> >> *
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >> On Thu, Nov 8, 2012 at 8:27 PM, Àlá∂∂ịŋ
>>> >> >> >>> >> >>>> >>>> >>>>> >> <m.aladdin83@gmail.com>
>>> >> >> >>> >> >>>> >>>> >>>>> wrote:
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >>> *LMS kis kis ka down hy ?
>>> >> >> >>> >> >>>> >>>> >>>>> >>> *
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>>> >>> --
>>> >> >> >>> >> >>>> >>>> >>>>> >>> *Àlá∂∂ịŋ*
>>> >> >> >>> >> >>>> >>>> >>>>> >>> *BS(CS)*
>>> >> >> >>> >> >>>> >>>> >>>>> >>> *virtual university of Pakistan*
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>>> >>> MY Facebook ID: <
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> >> >> http://www.facebook.com/profile.php?id=100002551899328>
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>>> >>> --
>>> >> >> >>> >> >>>> >>>> >>>>> >>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>>>> >>> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>>>> >>> You received this message because you
>>> >> >> >>> >> >>>> >>>> >>>>> >>> are
>>> >> >> >>> >> >>>> >>>> >>>>> >>> subscribed
>>> >> >> >>> >> >>>> >>>> >>>>> >>> to
>>> >> >> >>> >> >>>> >>>> >>>>> >>> the
>>> >> >> >>> >> >>>> >>>> >>>>> >>> Google
>>> >> >> >>> >> >>>> >>>> >>>>> >>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>>>> >>> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>>>> >>> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> >>> To unsubscribe from this group, send
>>> email
>>> >> >> >>> >> >>>> >>>> >>>>> >>> to
>>> >> >> >>> >> >>>> >>>> >>>>> >>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> >>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>>> >>>
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >> --
>>> >> >> >>> >> >>>> >>>> >>>>> >> **
>>> >> >> >>> >> >>>> >>>> >>>>> >> *Oh Allah the person reading this, Help
>>> >> him/her
>>> >> >> >>> >> >>>> >>>> >>>>> >> *
>>> >> >> >>> >> >>>> >>>> >>>>> >> *live a beautiful life. **promote
>>> >> >> >>> >> >>>> >>>> >>>>> >> him/her
>>> &
>>> >> >> >>> >> >>>> >>>> >>>>> >> cause
>>> >> >> >>> >> >>>> >>>> >>>>> >> him/her
>>> >> >> >>> >> >>>> >>>> >>>>> >> 2
>>> >> >> >>> >> >>>> >>>> >>>>> >> *
>>> >> >> >>> >> >>>> >>>> >>>>> >> *excel beyond expectations. **Help
>>> him/her 2
>>> >> >> shine
>>> >> >> >>> >> >>>> >>>> >>>>> >> in
>>> >> >> >>> >> >>>> >>>> >>>>> >> the
>>> >> >> >>> >> >>>> >>>> >>>>> >> darkest *
>>> >> >> >>> >> >>>> >>>> >>>>> >> *places & give him/her **love where it's
>>> >> >> >>> >> >>>> >>>> >>>>> >> impossible.
>>> >> >> >>> >> >>>> >>>> >>>>> >> *
>>> >> >> >>> >> >>>> >>>> >>>>> >> *Above all give him/her jannat. *
>>> >> >> >>> >> >>>> >>>> >>>>> >> *Ameen ...*
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >> --
>>> >> >> >>> >> >>>> >>>> >>>>> >> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>>>> >> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>>>> >> You received this message because you
>>> >> >> >>> >> >>>> >>>> >>>>> >> are
>>> >> >> >>> >> >>>> >>>> >>>>> >> subscribed
>>> >> >> >>> >> >>>> >>>> >>>>> >> to
>>> >> >> >>> >> >>>> >>>> >>>>> >> the
>>> >> >> >>> >> >>>> >>>> >>>>> >> Google
>>> >> >> >>> >> >>>> >>>> >>>>> >> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>>>> >> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>>>> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> >> To unsubscribe from this group, send
>>> >> >> >>> >> >>>> >>>> >>>>> >> email
>>> >> >> >>> >> >>>> >>>> >>>>> >> to
>>> >> >> >>> >> >>>> >>>> >>>>> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> >> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>>> >>
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> >> >>> >> >>>> >>>> >>>>> > --
>>> >> >> >>> >> >>>> >>>> >>>>> > ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>>>> > ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>>>> > You received this message because you are
>>> >> >> subscribed
>>> >> >> >>> >> >>>> >>>> >>>>> > to
>>> >> >> >>> >> >>>> >>>> >>>>> > the
>>> >> >> >>> >> >>>> >>>> >>>>> > Google
>>> >> >> >>> >> >>>> >>>> >>>>> > Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>>>> > To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>>>> > vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> > To unsubscribe from this group, send
>>> >> >> >>> >> >>>> >>>> >>>>> > email
>>> to
>>> >> >> >>> >> >>>> >>>> >>>>> > vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> > For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>>> >
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> >> >> >>> >> >>>> >>>> >>>>> --
>>> >> >> >>> >> >>>> >>>> >>>>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>>>> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>>>> You received this message because you are
>>> >> >> >>> >> >>>> >>>> >>>>> subscribed
>>> >> >> >>> >> >>>> >>>> >>>>> to
>>> >> >> >>> >> >>>> >>>> >>>>> the
>>> >> >> >>> >> >>>> >>>> >>>>> Google
>>> >> >> >>> >> >>>> >>>> >>>>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>>>> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>>>> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> To unsubscribe from this group, send email
>>> >> >> >>> >> >>>> >>>> >>>>> to
>>> >> >> >>> >> >>>> >>>> >>>>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>>>
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>> --
>>> >> >> >>> >> >>>> >>>> >>>> *Àlá∂∂ịŋ*
>>> >> >> >>> >> >>>> >>>> >>>> *BS(CS)*
>>> >> >> >>> >> >>>> >>>> >>>> *virtual university of Pakistan*
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>> MY Facebook ID:
>>> >> >> >>> >> >>>> >>>> >>>> <
>>> >> >> http://www.facebook.com/profile.php?id=100002551899328>
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>> --
>>> >> >> >>> >> >>>> >>>> >>>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>>> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>>> You received this message because you are
>>> >> >> >>> >> >>>> >>>> >>>> subscribed
>>> >> >> to
>>> >> >> >>> >> >>>> >>>> >>>> the
>>> >> >> >>> >> >>>> >>>> >>>> Google
>>> >> >> >>> >> >>>> >>>> >>>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>>> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>>> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>> To unsubscribe from this group, send email
>>> >> >> >>> >> >>>> >>>> >>>> to
>>> >> >> >>> >> >>>> >>>> >>>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>>
>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> >>> >> >>>> >>>> >>> --
>>> >> >> >>> >> >>>> >>>> >>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >>> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >>> You received this message because you are
>>> >> subscribed
>>> >> >> to
>>> >> >> >>> >> >>>> >>>> >>> the
>>> >> >> >>> >> >>>> >>>> >>> Google
>>> >> >> >>> >> >>>> >>>> >>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >>> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >>> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> >>>> >>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >>>
>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>>
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >> --
>>> >> >> >>> >> >>>> >>>> >> *Àlá∂∂ịŋ*
>>> >> >> >>> >> >>>> >>>> >> *BS(CS)*
>>> >> >> >>> >> >>>> >>>> >> *virtual university of Pakistan*
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >> MY Facebook ID:
>>> >> >> >>> >> >>>> >>>> >> <
>>> >> >> http://www.facebook.com/profile.php?id=100002551899328>
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >> --
>>> >> >> >>> >> >>>> >>>> >> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> >> ^^^^^^
>>> >> >> >>> >> >>>> >>>> >> You received this message because you are
>>> >> >> >>> >> >>>> >>>> >> subscribed
>>> >> >> >>> >> >>>> >>>> >> to
>>> >> >> >>> >> >>>> >>>> >> the
>>> >> >> >>> >> >>>> >>>> >> Google
>>> >> >> >>> >> >>>> >>>> >> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> >> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> >>>> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> >> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>> >>
>>> >> >> >>> >> >>>> >>>> >
>>> >> >> >>> >> >>>> >>>>
>>> >> >> >>> >> >>>> >>>> --
>>> >> >> >>> >> >>>> >>>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>>
>>> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>>> ^^^^^^
>>> >> >> >>> >> >>>> >>>> You received this message because you are
>>> subscribed
>>> >> >> >>> >> >>>> >>>> to
>>> >> >> the
>>> >> >> >>> >> >>>> >>>> Google
>>> >> >> >>> >> >>>> >>>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>>> To post to this group, send email to
>>> >> >> >>> >> >>>> >>>> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>>> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> >>>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>> --
>>> >> >> >>> >> >>>> >>> [image]
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>> Oh Allah the person reading this, Help him/her
>>> >> >> >>> >> >>>> >>> live a beautiful life. promote him/her & cause
>>> him/her
>>> >> >> >>> >> >>>> >>> 2
>>> >> >> >>> >> >>>> >>> excel beyond expectations. Help him/her 2 shine in
>>> the
>>> >> >> >>> >> >>>> >>> darkest
>>> >> >> >>> >> >>>> >>> places & give him/her love where it's impossible.
>>> >> >> >>> >> >>>> >>> Above all give him/her jannat.
>>> >> >> >>> >> >>>> >>> Ameen ...
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>>
>>> >> >> >>> >> >>>> >>> --
>>> >> >> >>> >> >>>> >>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>>
>>> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >>> ^^^^^^
>>> >> >> >>> >> >>>> >>> You received this message because you are
>>> >> >> >>> >> >>>> >>> subscribed
>>> >> >> >>> >> >>>> >>> to
>>> >> >> >>> >> >>>> >>> the
>>> >> >> >>> >> >>>> >>> Google
>>> >> >> >>> >> >>>> >>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >>> To post to this group, send email to
>>> >> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >>> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> >>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >>> For more options, visit this group at
>>> >> >> >>> >> >>>> >>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >> --
>>> >> >> >>> >> >>>> >> Àlá∂∂ịŋ
>>> >> >> >>> >> >>>> >> BS(CS)
>>> >> >> >>> >> >>>> >> virtual university of Pakistan
>>> >> >> >>> >> >>>> >> [image]
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >> MY Facebook ID:
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >> --
>>> >> >> >>> >> >>>> >> ...:::Group Rules:::...
>>> >> >> >>> >> >>>> >>
>>> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> >> ^^^^^^
>>> >> >> >>> >> >>>> >> You received this message because you are
>>> >> >> >>> >> >>>> >> subscribed
>>> to
>>> >> >> >>> >> >>>> >> the
>>> >> >> >>> >> >>>> >> Google
>>> >> >> >>> >> >>>> >> Groups "vu pink" group.
>>> >> >> >>> >> >>>> >> To post to this group, send email to
>>> >> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> >> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> >> For more options, visit this group at
>>> >> >> >>> >> >>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>> >>
>>> >> >> >>> >> >>>> >
>>> >> >> >>> >> >>>>
>>> >> >> >>> >> >>>> --
>>> >> >> >>> >> >>>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>>
>>> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>>> ^^^^^^
>>> >> >> >>> >> >>>> You received this message because you are subscribed
>>> >> >> >>> >> >>>> to
>>> >> >> >>> >> >>>> the
>>> >> >> >>> >> >>>> Google
>>> >> >> >>> >> >>>> Groups "vu pink" group.
>>> >> >> >>> >> >>>> To post to this group, send email to
>>> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>>> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>>> For more options, visit this group at
>>> >> >> >>> >> >>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>> --
>>> >> >> >>> >> >>> [image]
>>> >> >> >>> >> >>> Oh Allah the person reading this, Help him/her
>>> >> >> >>> >> >>> live a beautiful life. promote him/her & cause him/her
>>> >> >> >>> >> >>> 2
>>> >> >> >>> >> >>> excel beyond expectations. Help him/her 2 shine in the
>>> >> darkest
>>> >> >> >>> >> >>> places & give him/her love where it's impossible.
>>> >> >> >>> >> >>> Above all give him/her jannat.
>>> >> >> >>> >> >>> Ameen ...
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>> --
>>> >> >> >>> >> >>> ...:::Group Rules:::...
>>> >> >> >>> >> >>>
>>> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> >>> ^^^^^^
>>> >> >> >>> >> >>> You received this message because you are subscribed to
>>> the
>>> >> >> Google
>>> >> >> >>> >> >>> Groups "vu pink" group.
>>> >> >> >>> >> >>> To post to this group, send email to
>>> >> vu-pink@googlegroups.com
>>> >> >> >>> >> >>> To unsubscribe from this group, send email to
>>> >> >> >>> >> >>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> >>> For more options, visit this group at
>>> >> >> >>> >> >>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >> >>>
>>> >> >> >>> >> >>
>>> >> >> >>> >> >
>>> >> >> >>> >>
>>> >> >> >>> >> --
>>> >> >> >>> >> ...:::Group Rules:::...
>>> >> >> >>> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> >> ^^^^^^
>>> >> >> >>> >> You received this message because you are subscribed to the
>>> >> Google
>>> >> >> >>> >> Groups "vu pink" group.
>>> >> >> >>> >> To post to this group, send email to
>>> vu-pink@googlegroups.com
>>> >> >> >>> >> To unsubscribe from this group, send email to
>>> >> >> >>> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> >> For more options, visit this group at
>>> >> >> >>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> > --
>>> >> >> >>> > [image]
>>> >> >> >>> > Oh Allah the person reading this, Help him/her
>>> >> >> >>> > live a beautiful life. promote him/her & cause him/her 2
>>> >> >> >>> > excel beyond expectations. Help him/her 2 shine in the
>>> >> >> >>> > darkest
>>> >> >> >>> > places & give him/her love where it's impossible.
>>> >> >> >>> > Above all give him/her jannat.
>>> >> >> >>> > Ameen ...
>>> >> >> >>> >
>>> >> >> >>> >
>>> >> >> >>> > --
>>> >> >> >>> > ...:::Group Rules:::...
>>> >> >> >>> > http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> > ^^^^^^
>>> >> >> >>> > You received this message because you are subscribed to the
>>> >> >> >>> > Google
>>> >> >> >>> > Groups "vu pink" group.
>>> >> >> >>> > To post to this group, send email to
>>> >> >> >>> > vu-pink@googlegroups.com
>>> >> >> >>> > To unsubscribe from this group, send email to
>>> >> >> >>> > vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> > For more options, visit this group at
>>> >> >> >>> > http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>> >
>>> >> >> >>>
>>> >> >> >>> --
>>> >> >> >>> ...:::Group Rules:::...
>>> >> >> >>> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >>> ^^^^^^
>>> >> >> >>> You received this message because you are subscribed to the
>>> Google
>>> >> >> >>> Groups "vu pink" group.
>>> >> >> >>> To post to this group, send email to vu-pink@googlegroups.com
>>> >> >> >>> To unsubscribe from this group, send email to
>>> >> >> >>> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >>> For more options, visit this group at
>>> >> >> >>> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>
>>> >> >> >>
>>> >> >> >>
>>> >> >> >>
>>> >> >> >> --
>>> >> >> >> [image]
>>> >> >> >> Oh Allah the person reading this, Help him/her
>>> >> >> >> live a beautiful life. promote him/her & cause him/her 2
>>> >> >> >> excel beyond expectations. Help him/her 2 shine in the darkest
>>> >> >> >> places & give him/her love where it's impossible.
>>> >> >> >> Above all give him/her jannat.
>>> >> >> >> Ameen ...
>>> >> >> >>
>>> >> >> >>
>>> >> >> >> --
>>> >> >> >> ...:::Group Rules:::...
>>> >> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> >> ^^^^^^
>>> >> >> >> You received this message because you are subscribed to the
>>> Google
>>> >> >> >> Groups "vu pink" group.
>>> >> >> >> To post to this group, send email to vu-pink@googlegroups.com
>>> >> >> >> To unsubscribe from this group, send email to
>>> >> >> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> >> For more options, visit this group at
>>> >> >> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >> >>
>>> >> >> >
>>> >> >>
>>> >> >> --
>>> >> >> ...:::Group Rules:::...
>>> >> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> >> ^^^^^^
>>> >> >> You received this message because you are subscribed to the Google
>>> >> >> Groups "vu pink" group.
>>> >> >> To post to this group, send email to vu-pink@googlegroups.com
>>> >> >> To unsubscribe from this group, send email to
>>> >> >> vu-pink+unsubscribe@googlegroups.com
>>> >> >> For more options, visit this group at
>>> >> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >>
>>> >> >
>>> >> > --
>>> >> > ...:::Group Rules:::...
>>> >> > http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> > ^^^^^^
>>> >> > You received this message because you are subscribed to the Google
>>> >> > Groups "vu pink" group.
>>> >> > To post to this group, send email to vu-pink@googlegroups.com
>>> >> > To unsubscribe from this group, send email to
>>> >> > vu-pink+unsubscribe@googlegroups.com
>>> >> > For more options, visit this group at
>>> >> > http://groups.google.com.pk/group/vu-pink?hl=en
>>> >> >
>>> >>
>>> >> --
>>> >> ...:::Group Rules:::...
>>> >> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> >> ^^^^^^
>>> >> You received this message because you are subscribed to the Google
>>> >> Groups "vu pink" group.
>>> >> To post to this group, send email to vu-pink@googlegroups.com
>>> >> To unsubscribe from this group, send email to
>>> >> vu-pink+unsubscribe@googlegroups.com
>>> >> For more options, visit this group at
>>> >> http://groups.google.com.pk/group/vu-pink?hl=en
>>> >>
>>> >
>>> > --
>>> > ...:::Group Rules:::...
>>> > http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> > ^^^^^^
>>> > You received this message because you are subscribed to the Google
>>> > Groups "vu pink" group.
>>> > To post to this group, send email to vu-pink@googlegroups.com
>>> > To unsubscribe from this group, send email to
>>> > vu-pink+unsubscribe@googlegroups.com
>>> > For more options, visit this group at
>>> > http://groups.google.com.pk/group/vu-pink?hl=en
>>> >
>>>
>>> --
>>> ...:::Group Rules:::...
>>> http://groups.google.com.pk/group/vu-pink/web/group-rules
>>> ^^^^^^
>>> You received this message because you are subscribed to the Google
>>> Groups "vu pink" group.
>>> To post to this group, send email to vu-pink@googlegroups.com
>>> To unsubscribe from this group, send email to
>>> vu-pink+unsubscribe@googlegroups.com
>>> For more options, visit this group at
>>> http://groups.google.com.pk/group/vu-pink?hl=en
>>>
>>
>> --
>> ...:::Group Rules:::...
>> http://groups.google.com.pk/group/vu-pink/web/group-rules
>> ^^^^^^
>> You received this message because you are subscribed to the Google
>> Groups "vu pink" group.
>> To post to this group, send email to vu-pink@googlegroups.com
>> To unsubscribe from this group, send email to
>> vu-pink+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com.pk/group/vu-pink?hl=en
>>
>
> --
> ...:::Group Rules:::...
> http://groups.google.com.pk/group/vu-pink/web/group-rules
> ^^^^^^
> You received this message because you are subscribed to the Google
> Groups "vu pink" group.
> To post to this group, send email to vu-pink@googlegroups.com
> To unsubscribe from this group, send email to
> vu-pink+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com.pk/group/vu-pink?hl=en
>

--
...:::Group Rules:::...
http://groups.google.com.pk/group/vu-pink/web/group-rules
^^^^^^
You received this message because you are subscribed to the Google
Groups "vu pink" group.
To post to this group, send email to vu-pink@googlegroups.com
To unsubscribe from this group, send email to
vu-pink+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com.pk/group/vu-pink?hl=en

No comments:

Post a Comment