after building ,problem !

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • santral
    Forum Member
    • Dec 2007
    • 59

    after building ,problem !

    hi,
    I take the image file names from Image folder...
    (like "myphoto.jpg")
    end show them in a label....
    prewiev is ok,the names appears.
    BUT after building the name changes to ap1.dat
    for example "myphoto.jpg" changes to "ap53.dat"

    is there anyway to solve this problem ???
  • holtgrewe
    Indigo Rose Customer
    • Jul 2002
    • 779

    #2
    Santral
    This sounds like a similar problem you posted earlier...
    Please post the problem code, or the entire project and someone could take a look at it. It's difficult to analyze the problem without seeing the code.

    Comment

    • santral
      Forum Member
      • Dec 2007
      • 59

      #3
      ok. this is the code (that you give before)
      takes image file name and shows in label
      but not after building

      PHP Code:
      function isim ()
      Label.SetVisible("Label4" ,true)
      iProps Image.GetProperties("Image1")
      uzunluk String.Length(iProps.ImageFile) - String.ReverseFind(iProps.ImageFile"\\"true);
      title String.Right(iProps.ImageFileuzunluk );
      tek String.Left(""..title ,uzunluk );
      Label.SetText("Label4",""..tek);
      end 

      Comment

      • mindstitchdr
        Indigo Rose Customer
        • Dec 2004
        • 239

        #4
        The only thing I can think of is when you build your Web/Email executable uncheck the Encrypt data segment option.

        Comment

        • crj
          Forum Member
          • Jul 2005
          • 19

          #5
          Uncheck the Option "Rename resource Files" when you publish your Project.

          Comment

          • santral
            Forum Member
            • Dec 2007
            • 59

            #6
            thanks for replies...

            Comment

            Working...
            X