Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~563 People Reached
Favorite Tags
Member Avatar for awestove
0
64
Member Avatar for awestove

I am trying to create a file upload form on a website and am getting the error: Notice: Undefined index: My code is: [CODE=php] <?php session_start(); if (isset($_GET['submitted'])){ print_r($_FILES); $displayName = $_GET['displayName']; //file name is name of user who uploaded-date-time ie awestove-20100901-0800 $fileName = $_GET['username']."-".date('Ymd-Hi'); $origFileName = $_FILES['fileChooser']['name']; $ext = …

Member Avatar for awestove
0
121
Member Avatar for awestove

Is it possible to create a raw image in Fortran? I was thinking BMP but not really sure what extension would be best. Basically, I want to be able to have an array or a text file that contains the color values for each pixel, so a 3 pixel wide …

0
29
Member Avatar for awestove

Hello all, Next semester I will be taking a course on Fortran, and I know that come December I will have to develop a final project, but alas, I currently have no ideas for what to do, or even what all can be done in Fortran. I have looked up …

0
106
Member Avatar for awestove

I am trying to dynamically add checkboxes to a panel depending on if a file exists. My code is: [CODE]While d1 <= d2 If File.Exists("C:\bnb\" & m1 & "-" & d1 & "-" & y1) = False Then rm1CheckBoxes(rm1I) = New CheckBox() rm2CheckBoxes(rm2I) = New CheckBox() rm1CheckBoxes(rm1I).Location = New Point(20, …

Member Avatar for kvprajapati
0
105
Member Avatar for awestove

I am writing a very basic memory match card game, and am trying to get the program to flip over the selected cards, wait 2 seconds so the user can see the values, then flip back over. The code I have to do this is: [CODE]Private Sub Label_Click(ByVal sender As …

Member Avatar for awestove
0
138