Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: uzzie123
  • Content: Threads
  • Order by date
  1. uzzie123

    loop through information from a database

    Hi, I am creating a loop that will display each server, its location and a checkbox from a table. However when creating this loop, I get an error stating "Expected End of Statement." on line 112: Dim oConn, i oConn.Open(ConnectionString) sqlQuery = "SELECT...
  2. uzzie123

    Writing to a Stream

    Hi, I am trying to write some text to this text document. Even the the program successfully debugs, i do not see a blank document on the file that I want to make changes on. Here is the code: using System; using System.IO; class CheckStream { public static void Main() {...
  3. uzzie123

    SiteGalaxyUpload

    Hi, I am creating this page where I can upload files onto a server. Here is my code on the asp page that uploads the file <% Dim objuploadform, objfs, objfso, objfile, strfn set objuploadform = Server.CreateObject("SiteGalaxyUpload.Form") if...
  4. uzzie123

    input varialbe link

    Hi, I need to create an attachment link to a word document on a web page. There is a button that would take me to a separate page where the user can select the file they want to attach. Once they choose the file, I need store this file into a variable and create a link on the webpage that...
  5. uzzie123

    Popup window

    Hi, I want to create a popup box. When a click a certain link i need this popup box to open. Also, inside the popup box there should be a control that allows users to select a file in a particular folder. The location till the folder will be specified. The user only has to choose the file...
  6. uzzie123

    Document attachment

    I created this website where users can add new records. In each of those records, the user should have the option to attach a word document. So i Basically created an input control that allows the user to browse and find the file they want attached to their record. Now the problem is, I have...
  7. uzzie123

    Creating a Word Document Attachment on an asp page

    Hi, I want to create a word document attachment to my asp web page. So when a user clicks on this link, the specified word document should directly open. I was reading that the webbrowser control will assist in this process, but i am not too familiar with it. Can some provide me with any...
  8. uzzie123

    Projectile Motion

    Hi, I created this problem where i am calculating the projectile motion of a ball. I took paramters of ball angle, gravity and velocity. When compiling this program, I am not able the projectile results are displaying as zero. Also, the exact time when the ball is launched is not showing...
  9. uzzie123

    Session object

    Hi, I want to capture and store the userID of each user that accesses my website. Im not too good with the the syntax and logic. Can someone start me off in the right track. Thx
  10. uzzie123

    String to bool conversion

    Hi, I am trying to create a condition statement. But when executing this block of code I receive an error stating that string to bool conversion cannot be done implicitly. userInput = Console.ReadLine(); if(userInput = "") { userGravity = 9.80d...
  11. uzzie123

    Open a word document

    Hi, How do you create a link on a asp page that opens a word document?
  12. uzzie123

    Array incrementation

    Hi, I created an array with a list of characters (T, U...). I want to create another array that displays the same characters minus the one character that was selected from the first array. How can I achieve this? My second array is called "size"
  13. uzzie123

    Create attachments to specific record

    Hi, I am creating this website using asp that displays different records of information. I have stored these records in a sql database in a webserver. Now, In one of my records, I have to create a link that would direct me to a serparate word document saved as a html file. This file is also...
  14. uzzie123

    Arrays

    Hi, I want to create an array that will hold a fixed amount of character and the options will be presented in a drop down list when a user views it in the webpage. Here is the code that I created so far: " Sub MapDriveSourceDD() Dim Ret, i Dim aDrives(6) aDrives(0) ="T"...

Part and Inventory Search

Back
Top