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

    Flash Bios / Without Windows

    I have a computer that is having BIOS issues. I need to flash the updated bios from dell DME521-010111.EXE The problem is that the computer won't boot, but the program won't run to flash the bios without windows xp. Can someone please provide assistance?
  2. jtgurkin

    Insert Data w/ DataSet and Retrieve Identity

    I am using a dataset and sql express 2005 to handle my data. I need to be able to insert data in one table and then insert data in another related table at the same time taking the PK from on table to use as a FK in the other. Is there anyway to accomplish this?
  3. jtgurkin

    Datagrid/Label Invisible to Visible

    I have set up a datagrid and in one of my columns i have a link button. I also have a label in that column. I have set the label to "Visible=False" as default I would like to know if anyone knows how to make the label for a given row to become visible based on a person clicking the link button...
  4. jtgurkin

    Query to combine multiple queries with Max and Min

    I'm writing an ecommerce site and had the page display the price range for a particular item based on a prices table linked to the items table. I used the following query to get that information... SELECT Items.*, (SELECT Max(Prices.Price) From Prices WHERE Items.ItemID=Prices.ItemID) AS...
  5. jtgurkin

    Passing DataList Value to User Control

    I am trying to pass a datalist value to a user control like this: <asp:DataList RepeatColumns="2" runat=server ID=features DataSourceId=VfiData HorizontalAlign=center > <ItemStyle BorderWidth="7" BorderColor="#0A2B32" HorizontalAlign=center /> <ItemTemplate>...
  6. jtgurkin

    Cell Phone Modem - difficult and interesting problem

    I have a cell phone that I would like to use as a modem. My provider does not allow data transfer. I was wondering if there were any way to hook my cell phone's headset jack to the computer and use it as a modem; this is like a throw back to the old modems where you put the handset in the...
  7. jtgurkin

    laptop-dos based wireles network

    I have a laptop in which the hard drive has died. I have found online a program which allows a DOS based Remote Desktop Connection. I need to know how to get a .COM MS-DOS Packet driver for my motorola wn825g wireless card.
  8. jtgurkin

    Delayed Write Failed

    I have seen this issue from other people mostly talking about network drives. I am experiencing this error on my laptop, a Dell Inspiron 2600 with integrated intel graphics and a hitachi 20GB HDD. Can anyone shed some light on the cause of this error?
  9. jtgurkin

    Index was outside the bounds of the array.

    i'm getting the above error when i execute the databind() command. Is there a limit to the number of items that can be databound b/c if i remove one of the lines, anyone of the lines, it'll work. <BR><%#Group_Size.Text%><BR> <%#Church.Text%><BR> <%#Address.Text%><BR> <%#City.Text%><BR>...
  10. jtgurkin

    Server Side Validation Not Working

    I have created a form using VS.NET 2003 and included sever ASP.NET control validators. It works fine on IE, but not on Netscape. I did a little digging as well as writing a custom validator on the server side. It appears that the validation on the server side is not happening. As long as...
  11. jtgurkin

    ISAM Error

    I have a database that is working fine except when i try to add a password, I get an 'Cannot find installable ISAM' error.. Please Help.
  12. jtgurkin

    SQL Help

    I am trying to connect to an access database with the following SQL String... strSQL = &quot;SELECT * FROM Addresses WHERE Years Like *2005* ORDER BY LastName ASC, FirstName ASC, MiddleName ASC&quot; And I am getting the following error Error Type: Microsoft JET Database Engine (0x80040E14)...
  13. jtgurkin

    SQL

    I need to pull the following SQL statement from an MSAccess DB. It doesn't work as I have it written, how can I fix it? SELECT * FROM Addresses WHERE Years CONTAINS 2004 Years is a string field with a series of years seperated by semicolons like this &quot;2000;2001;2002;2003;2004&quot;
  14. jtgurkin

    Problem with Access and Password protection

    I am having the same problem as this person thread333-566765 is the error I get from IIS in english Error Type: Microsoft JET Database Engine (0x80040E4D) Cannot start your application. The workgroup information file is missing or opened exclusively by another user...
  15. jtgurkin

    IIS Permissions/ (I Think)

    My computer is running IIS and WinXP Pro. When I create a website that is using ASP and Access database access. It works for a while and then the database becomes read-only and if I make a new database in the same folder it is also read only. I need some serious help because I have several...
  16. jtgurkin

    Accessing Access Database with ASP 3.0

    While trying to copy information from one database to another using the following code: --- <%@LANGUAGE=&quot;VBSCRIPT&quot; CODEPAGE=&quot;1252&quot;%> <%Option Explicit%> <!--#include file=&quot;adovbs.inc&quot;--> <% Dim strSQL strSQL = &quot;SELECT * FROM Addresses&quot; Dim objDBFrom Set...
  17. jtgurkin

    IIS 5.0 Won't let me edit Database

    I recently upgraded to WinXP Pro and IIS 5.0. Now my database applications run on my local machine will not update or add data. I get a message that says &quot;Database or Object is read only&quot;. It worked before I switched to IIS 5.0, but it won't work now.
  18. jtgurkin

    several questions in one-- ASP generated PDF, Securing site permission

    First, I know that I can use an ASP page to generate a PDF file by writing the raw PDF data with a content type of PDF. I need to know where I can find the syntax of raw PDF data. If someone knows or could point me in the right direction, please help. Second, I need to generate some type of...
  19. jtgurkin

    Add Records to Access Database

    I have the following ASP code in my Add Data page. (This is me getting my feet wet with Access & ASP.) I can access the data and view it fine, but when I execute this page, I get the error that follows the code. --------------------Code-------------------------------- <html> <head> <meta...
  20. jtgurkin

    FP Ext for Apache on Windows

    I am cursed with XP Home. As we all know it did not come with IIS or PWS. I have followed the advice of some people and downloaded Apache. Then I downloaded ChiliSoft ASP Developer Edition and have all the functionality of PWS and it is still free. The only thing I am missing are the...

Part and Inventory Search

Back
Top