User Profile

Collapse

Profile Sidebar

Collapse
jupi13
jupi13
Last Activity: Feb 11 '10, 03:32 AM
Joined: Jul 25 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • update product_categor ies set categories_stat us = 0 where categories_stat us = 1....
    u try..
    if it doesn't work..u should have a unique attribute where u could have the where clause..
    See more | Go to post

    Leave a comment:


  • jupi13
    started a topic watermarking a PDF file using PHP...
    in PHP

    watermarking a PDF file using PHP...

    Hi..please help me..it's part of our study..our thesis..the problem is that..
    we would generate a pdf file from records we retrieved from our database..from that we are going to watermark the generated PDF file..these processes would be automated..whic h means that upon request..our system would generate PDF and watermark the PDF automatically..

    any help would be much appreciated..th anx everyone...hope someone could help me....
    See more | Go to post

  • please help..it's really important.. have problems with comparing my dates

    i got a problem with regards to comparing my date from my textbox from the dates in my database... it says "Data type mismatch in criteria expression"

    i got my code here:


    txtActCode.Text = Format$(txtDate .Text, "MM/dd/YY")

    If rs.State = adStateOpen Then Set rs = Nothing
    rs.Open...
    See more | Go to post

    Leave a comment:


  • i have a textbox where i could input a date..example: October 2,2009.
    is "October 2,2009" a valid date expression string?
    See more | Go to post

    Leave a comment:


  • jupi13
    started a topic string to date conversion..please help..

    string to date conversion..please help..

    i have this code..i don't know what where is the error in this one..it says data type mismatch.....

    Dim Mydate As Date
    Dim MydateString As String

    MydateString = "Text1.Text "
    Mydate = CDate(MydateStr ing) ''it is highlighted in this line..
    txtActCode = Mydate

    i don't know what's wrong with this one..
    any help would be much appreciated..
    thank you..
    See more | Go to post

  • jupi13
    replied to C++ Multiple-subscripted Arrays
    in C
    CAN YOU EXPLAIN FURTHER??...CAN YOU GIVE ME AN EXAMPLE PLS......
    See more | Go to post

    Leave a comment:


  • jupi13
    started a topic C++ Multiple-subscripted Arrays
    in C

    C++ Multiple-subscripted Arrays

    I Want To Know How To Add Arrays Indexes??


    80 90 93=sum
    87 45 12=sum
    12 42 12=sum
    Also The Sum Of Each Column
    See more | Go to post

  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    C++ ENCRYPTION (how to encrypt a text)

    got a problem wtih my encryption...
    would you be kind to help me with this...i'm new to this c++ programing...

    i have this expansion encryption method..where you will add a char in between the original text..example >>>>. josh..this could be >>>> jxoxsxhx...like that...

    my program goes like this


    Code:
    main()
    ...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    i think the problem in this is the size of the string...but i realy can't figure ir out......
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    i got the wrong output for smaller strings..like if i enter "abc" the
    output is "ac@".... or "ab" i would get "aG@"....

    what should i do with this?

    please help.....
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    Code:
    main()
    {
    char string1[10],string2[10],string3[10];
    int x,count;
    cout<<"ENTER TEXT TO COMPACT:";
    cin>>string1;
    count=strlen(string1);
    
    for(int x=0; x<count; x++)
    
      //Check whether x is a multiple of 2
      if(x%2 == 0)
      {
        string2[x/2] = string1[x];
      }
      else
      {
        string3[x/2] = string1[x];
    ...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    brosert.......

    this one also...it only works with letters with 4 characters above..


    int count = sizeof(string1) ;
    for(int x=0; x<count; x++)
    {
    /Check whether x is a multiple of 2
    if(x%2 == 0)
    {
    string2[x/2] = string1[x];
    }
    else
    {
    string3[x/2] = string1[x];
    }


    waht should i do?

    ...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    i also have a question brosert....why is it that the index of string2 and string3
    is "x/2"? why is it not x?...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    \brosert....... .....

    //the program you give me only works in a 6-letter word and a 7-letter word...


    //here it is


    main()
    {


    char string[10],count,string2[20];
    int count2;

    cout<<"ENTER TEXT:";
    cin>>string;
    count=strlen(st ring);

    for(int x=0;x<count;x++ )
    {
    count2 = 2*x;...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    can you do it without using a pointer?

    we're not yet using pointers...

    we are only allowed to use array..and loop..

    can you do it?
    please...
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    ehhyyy....thank s lot...it worked..

    hehehe
    ...thanks man...

    ahm,,if you don't mind,can you help me with this also?

    if i'll enter "brosert" the output would be "boet" and the missing letters ("rsr")
    would be stored in another array....
    See more | Go to post

    Leave a comment:


  • jupi13
    replied to C++ ENCRYPTION (how to encrypt a text)
    in C
    what will i output in this code?
    string2?
    how will i do it?
    please help?

    if you don't mind..can you give the whole code?
    im just a newbie to C++;;


    thanks.....
    See more | Go to post

    Leave a comment:


  • jupi13
    started a topic C++ ENCRYPTION (how to encrypt a text)
    in C

    C++ ENCRYPTION (how to encrypt a text)

    i got a problem wtih my encryption...
    would you be kind to help me with this...i'm new to this c++ programing...

    i have this expansion encryption method..where you will add a char in between the original text..example >>>>. josh..this could be >>>> jxoxsxhx...like that...

    my program goes like this

    main()
    {
    char string[10],count;
    int x,y;
    ...
    See more | Go to post
No activity results to display
Show More
Working...