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 dencom 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: kliz0328
  • Content: Threads
  • Order by date
  1. kliz0328

    Dynamic Update

    I am trying to admin a database that has multiple profiles. What I want to do is on the page load list all of the Profiles, with textboxes containing their information. I then want to make any changes and update all of the profiels all at once. My only problem is that I do not know how to...
  2. kliz0328

    Image Upload works but...

    I am using this code to upload an image inpFileUp.PostedFile.SaveAs(path) and am using the HTMLInputFile Control to do so. The image uploads fine, but when the page redisplays the picture is still the old one, unless I refresh the page then it changes. Do I need to call some type of...
  3. kliz0328

    Unspecified error

    I was wondering if anyone else has had this problem before. I have been working on a site at work, and throughout the whole day it works fine, I am connected to the server at my machine at work. My problem is when I come home and start testing the site I get an "Unspecified Error" message and...
  4. kliz0328

    Dynamically Formatting Pictures

    I have a site where users can upload pictures. My question is...Is there anyway to dynamically format these pictures. I assume people will be uploading pictures of all different sizes, and if they are a rectangular shape they will get skewed if I make the height unproportional to the width...
  5. kliz0328

    Declaration Expected Error

    I am getting a declaration Expected error on my connection string I don't know what it could possibly be? <Script Runat="Server"> Dim Conn Dim SQL Dim dbcomm, dbreader Dim Headers as String Conn=New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;data source=" &...
  6. kliz0328

    Setting Variable = to Repeater Item

    I was wondering if it is possible to set a variable equal to a repeater item. It tried this but it siad that Container is not decalred. Dim Fielding() as String Dim strItem as String Fielding = Container.DataItem("FieldingDesc") For each strItem in Fielding
  7. kliz0328

    Active X Control Message

    I used the following code to embed an Audio file into my page, it works good, but when I open the page in IE I get a message box saying click to run Active X control. Is this going to happen with everyone's IE browser, is this a property of my code or of my IE browser and is there a way to stop...
  8. kliz0328

    Vb.Net 2003 and IIS

    I just installed Visual Basic .Net 2003 and went through and chose to create a new ASP.Net web Application in the program. I made a basic Home.aspx page and tried to bring it up through IIS but I keep getting a parser error message that says: "Could not load type 'WebApplication1.Global'" Line...
  9. kliz0328

    Making a single image scroll

    I have a single very wide image that I am scrolling, it works fine in firefox, but in IE the hour glass keeps flashing next to the pointer. I was wondering if there was anyway to prevent this. Here is the site http://www.carletonasptest.com/websitestatesearch/Contact.asp Here is my javascript...
  10. kliz0328

    Sending an Email

    I know I might get bashed, but I went through the FAQ's and eveything and have tried tons of different code, but I am trying to send an email and below is the code that I am using, and it executes, but I never receive an email. ANy suggestions? <% If Not(IsEmpty(Request.Form)) Then Dim...
  11. kliz0328

    Fadiing In &amp; Out Images

    I found a script on W3C that makes images fade in and out and am trying to pair it with a script that rotates images. I can get it to work when I set the fade in and fade out seperate to MOUSEOVER and MOUSEOUT, but when I try to put the function calls in the picture rotation script it stops...
  12. kliz0328

    Cmd Dialog Cancel Button?

    I have some code, that I got from this site, that allows a user to browse for a folder, the code is below. My question is, how do you determine whether the user has clicked the OK button, the Cancel button, or the close. "X" button? fold = PickFolder(0) Function PickFolder(strStartDir As...
  13. kliz0328

    Adding Audio

    Is there anyway to add audio sounds to an ASP page, for example some type of noise when a user mouses over a menu item? Can this only be done with Flash or is there a way with VBScript or Java Script?
  14. kliz0328

    Defaulting to home Page

    I have a website I am making, and my question is how do I deafult to my home page if only the domain name is entered. For example I want to go to home.asp But the only way I can get there is if I type in http://www.mydomainname.com/home.asp How do I make it so that just...
  15. kliz0328

    Passing an array of strings

    We have a C# wrapper and are currently passing values as sbyte[], I was wondering how to pass strings instead of bytes? Below is some sample code that outlined hot to pass sbyte[], is there anyway to pass it as string? [MarshalAs(UnmanagedType.ByValArray, SizeConst=7*80)] public sbyte[]...
  16. kliz0328

    Compiling in Linux

    I am trying to compile so java files in Linux and know nothing about Linux. I was wondering hot to set the class path to point to the javac.exe file?
  17. kliz0328

    Requery Combo in another form under a sub form

    I am updating a table in one form, and when it gets updated I want another form to requery a combo box, but I can't figure out how to do this. The form that needs to be requeried is called mfrmdocumentMapping and has a page named Page1 which has a subform named Field Mappings which has a...
  18. kliz0328

    Validate folder path

    I was wondering how to check and see if a folder path is valid or not? Is there some kind of IsValidPath function?
  19. kliz0328

    Calling a DLL

    I am modifying an existing program that calls a couple of DLL's with the following snippets of code. Private Declare Sub LEASE_CHECK _ Lib "c:\work\TimeCounting3-23-06\lease.dll" _ Alias "LEASE_CALC" _ (inrec As in_record, DataRec As data_record, outrec As out_record, InFeeRec As...
  20. kliz0328

    Right align list box data

    Is it possible to right align list box data?

Part and Inventory Search

Back
Top