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

    sqlclient.hasrows not functioning properly....or bad code?

    The code below is what I am using to determine if credentials were good. Try While sqlOutput.Read If sqlOutput.HasRows = False Then lblErrorMessage.Text = "You don't have access to this site. Please contact your administrator."...
  2. etjohnson81

    Reset web application variable with VB app

    Does anyone know a way to create a VB app that can change an asp.net application variable? Travis http://www.bluelinenetworks.net
  3. etjohnson81

    Accessing an asp.net app from a vb.net app

    I am looking for any clues as to how I might be able to do the following... I have a support ticket site that I am building, I would like the ticket numbers to be created as yyyy-mmdd-####. The first part is ok, but I am trying to figure out a way to make the application (asp or vb) fire an...
  4. etjohnson81

    Offline Folders to old server

    Hi all, We had a server that we were using with offline folders that has been removed from our network and moved to another server. Our XP systems are still showing this connection for offline files and although we have removed the offline files, it still asks for a syncronization before all...
  5. etjohnson81

    Parse messages to SQL Database

    Can anyone recommend a good tool to use as an email gateway or mail parser? I am developing a web application for case management and would like to be able to have emails replied to a certain address, say tickets@xyz.com and have the notes added to the ticket management database. Thanks in...
  6. etjohnson81

    Migrate backwards - SQL 2005 to 2000

    I have a database that I have created prior to coming to my current company that was created using SQL Express 2005. My company doesn't have SQL Server 2005 in production, only 2000. Is there an ability to migrate backwards "with ease"? ***Note*** The database doesn't contain any programming...
  7. etjohnson81

    Insert Into Doesnt Insert

    Hello... I am using the following code to insert a record, the variables are filling ok, but no records get inserted. Dim db As DAO.Database Dim strUsername As String Dim strSerial As String Dim intTech As Integer strUsername =...
  8. etjohnson81

    ASP.NET SQL Select paramaters

    Hello all, I am new to ASP.NET and I am finding out that the .execute isn't the same as asp. How do I go about setting up a select query to run here? 'Setup query Dim searchData As New SqlDataSource searchData.ConnectionString =...
  9. etjohnson81

    SUMPRODUCT on seperate sheet / workbook

    I have a report that is generated from an Oracle data base into an Excel spreadsheet for viewing. I am trying to create a summary page in another workbook as the report generates dynamically. When I have data on the same sheet, it works fine. When I reference another sheet or workbook, I get...
  10. etjohnson81

    Server 2k3 x86 on 64 bit system?

    I am not very familiar with 64bit processors so I am wondering if they are "backwards compatible" at all. Does anyone know if the 32bit version of server 2k3 will run on a 64 bit processor? Thanks Travis <A href="http://www.easycgi.com/shared_hosting/?kbid=4815&img=easycgi_120x60_5.gif">...
  11. etjohnson81

    Unspecified error on conn.open

    I have a page that works fine the first time it loads, if i refresh the page too quick I get Provider error '80004005' Unspecified error /dshome/classes.asp, line 12 which is where the conn.open is. I am using a DSN database from Access named dscene. The code follows for the page...
  12. etjohnson81

    Secure site problems

    I have a secure site setup on IIS 6 through port 443. I have installed a cert auth on the server and issued certificates to my server and web browsers. When I open the site in IE with the HTTP protocol I get a page saying that SSL is required. I enter the HTTPS version of it and I get an...
  13. etjohnson81

    Query Help

    I have a table as follows MatchID | dateMatch | numHomeTeam | numVisTeam | etc... 1 10/5/2006 1 2 and another table which contains the team information. I want to do a query that will use the example data above but show the team names as well...
  14. etjohnson81

    State abbreviation combo box

    Does anyone have the code for one? I dont feel like looking at the moment through websites to grab one from... <A href="http://www.easycgi.com/shared_hosting/?kbid=4815&img=easycgi_120x60_5.gif"> <img src="http://banners.easycgi.com/ShowBanner.asp?id=4815&img=easycgi_120x60_5.gif" border=0></a>
  15. etjohnson81

    Please help with refreshing problem

    I have an window.open for a form to upload a profile picture, how can I make the main window refresh after the file has been uploaded or the file window closed. Just trying to make it so that the user doesnt have to manually refresh to see the picture in place. <A...
  16. etjohnson81

    Refreshing a page

    Does anyone know how to make a page refresh when a user clicks back or click a link with onclick="javascript:history.back()" <A href="http://www.easycgi.com/shared_hosting/?kbid=4815&img=easycgi_120x60_5.gif"> <img src="http://banners.easycgi.com/ShowBanner.asp?id=4815&img=easycgi_120x60_5.gif"...
  17. etjohnson81

    Moving and Resizing

    Ok, Internet Explorer won't resize with window.sizeToContents and Firefox won't move with window.moveTo(x,y) using the following code in a body onload event. function resize_window() { window.sizeToContent(); window.moveto(500,500); } <A...
  18. etjohnson81

    anyone using ASPJPEG?

    Its doing nothing for me.... Set Jpeg = Server.CreateObject("Persits.Jpeg") ' Open source image myfile = server.mappath("logo1.jpg") Jpeg.Open myfile ' New width L = 100 ' Resize, preserve aspect ratio Jpeg.Width = 10 Jpeg.Height = 10 ' create thumbnail and save it to disk Jpeg.Save...
  19. etjohnson81

    Updating a date

    When I use this to update a date entered in a form, the value written to the database is 12/30/1899 and when read from the database, 12:00:37 A is returned. regEmail= request.form("txtEmail") homeEmail=request.form("txtEdumail") memPersDesc=request.form("memPersDesc")...
  20. etjohnson81

    Setting a session variable with the OnClick event.

    Anyone know how it can be done? I hate using the URL to pass information. For example I have a table created from a query and each link is assigned a variable for the next page.

Part and Inventory Search

Back
Top