User Profile

Collapse

Profile Sidebar

Collapse
LELE7
LELE7
Last Activity: Jun 23 '11, 09:04 PM
Joined: Jan 29 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • LELE7
    replied to Why is style="position.... not working?
    Thanks so much, Death. I wish I would have posted earlier!
    See more | Go to post

    Leave a comment:


  • LELE7
    replied to Why is style="position.... not working?
    Sorry I was delayed a few days, I hope people can still help me. Here's the part that's giving me problems. Try running this as its own page. The first image- the userImage, is supposed to be positioned properly over the frame image. If I leave out the first line, it listens to my positioning. When I include it, it totally ignores it. Any insights? thanks, I'm getting desperate!

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    ...
    See more | Go to post

    Leave a comment:


  • LELE7
    started a topic Why is style="position.... not working?

    Why is style="position.... not working?

    I have an upload form that uploads a picture and places it relative to another image. It works fine on it's own web page, but when I add it the website, all my positioning is disregarded. This is in IE and Firefox, and with both absolute and relative positioning.
    I boiled it down to this line:
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&qu
    ...
    See more | Go to post

  • In the end, I think the problem was that I wasn't running it from the proper place- from my localhost (or my WAMP/www directory. I was just running it from my regular file directory. Not sure if this makes sense, but I'm not getting the error anymore. Thanks for your help!
    See more | Go to post

    Leave a comment:


  • I'm getting the following error:
    Firefox can't find the file at
    /C:/WebSites/STUNNI~1/$_SERVER['PHP_SELF'], the root directory being the root of my page. Why does it think it's a separate file? Am I missing something important in my code on top?
    See more | Go to post

    Leave a comment:


  • How to handle an uploaded file without using separate script file

    I'm new to PHP, but I usually program Windows Apps in .NET(c#, VB). So please excuse my unfamiliarity with code and HTML combined.

    It seems pretty simple to upload a file to a website using the following html:

    Code:
    <form method="POST" enctype="multipart/form-data" name="image_upload_form" action="">
    <p><input type="file" name="image_file" size="20"></p>
    ...
    See more | Go to post

  • Thanks Christian! That was it. I actually figured it out becaue it worked when I split into 2 stored procedures- 1 for each table.

    Just curious, is there a way to choose more than 1 table in a dataset to update with 1 update command? I know there's a way to specify 1 table, or the whole datset (which is 4 tables in this case).
    See more | Go to post

    Leave a comment:


  • I checked the datatypes a lot of times and everything matches the database.

    A test string does work. The problem comes up just for @Carrier because it's first. If I put a test string, then @Tracking pops up... etc.

    Is there another way to update a database that would work in this situation?
    See more | Go to post

    Leave a comment:


  • The sourceVersion property is used for the column that is acting as my primary key. Original, I believe, means that it was not changed. I tried DataRowVersion. current which did not help. I tried specifying parameter direction and source column again, but nothing seemed to help.

    The column exists in the dataSet with that name, so I am going out of my mind.

    Isn't this a common thing- to update a database from a dataset? There...
    See more | Go to post

    Leave a comment:


  • But my value is the data from the datacolumn in my dataset. When I do ".Value=dataCol umn" I still get the same error.
    By the way, this same code worked when it was not a stored procedure, but SQL in my code. How does that make sense?
    See more | Go to post

    Leave a comment:


  • Why isn't my stored procedure recognizing my parameter from my code?

    My .Net code:
    Code:
     connDO.Open();
                        SqlCommand comm = new SqlCommand("DOrders.dbo.p_Update", connDO);
                        comm.CommandType = CommandType.StoredProcedure;
                        daDirectOrders.UpdateCommand = comm;
    
    	comm.Parameters.Add("@UOrderNumber", SqlDbType.Int, 32, uOrderNumber.ColumnName);
                        comm.Parameters.Add("@ConfirmationCode",
    ...
    See more | Go to post

  • Is there a simple way to upload multiple files to FTP using code?

    I am trying to create a program that can upload many files at a time to an FTP site. I don't want to use a dialog box. I want to be able to specify a certain requirement in my code (for ex. all files that begin with "abc_"). I was able to find a lot of code online for uploading a single file, but all the code that I found for mulitiple files were either very lengthy or done by bringing in a new library.

    As you probably can...
    See more | Go to post

  • LELE7
    replied to Selecting uppercase part of field
    Thanks NeoPa, that's my answer for SQL. Yes, the only distinction is the uppercase.
    TheSmileyOne- I'm really new to programming & not so familiar with actual programming in Access. How do I implement such code once I save it in a Module?
    See more | Go to post

    Leave a comment:


  • LELE7
    started a topic Selecting uppercase part of field

    Selecting uppercase part of field

    Hi,
    I have a field with text that is partly uppercase & partly lowercase. I'm trying to select only the uppercase part of the field.

    for ex. a field with long description for products. Each description has a part that is not applicable- which is lowercase. I only want the uppercase part of each description.

    Any ideas? I am mostly familiar with SQL so solutions in SQL would also be helpful. Thanks.
    See more | Go to post
No activity results to display
Show More
Working...