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 SkipVought 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: *

  1. Schimsky

    dbf files logon fails

    Hi, I have a crystal 9 vb6 application... the crystal report runs against old dbase III files. When I use this code to start the report in my vb6 program... Dim Application As New CRAXDRT.Application Dim Report As CRAXDRT.Report Set Report =...
  2. Schimsky

    logon failed ... dbf files

    Hi, I have a crystal 9 vb6 application... the crystal report runs against old dbase III files. When I use this code to start the report in my vb6 program... Dim Application As New CRAXDRT.Application Dim Report As CRAXDRT.Report Set Report =...
  3. Schimsky

    Session bug?

    Hi all, Sorry I did not get back to this thread to update it. I was using cookieless sessions which we all know add a unique identifier to the address of the website, which specifies the session id. It turns out that a link to my website from someone elses web site had that unique...
  4. Schimsky

    Session bug?

    The session("LastName") is being set on the default.aspx page... Session("LastName") = Left(txtLastName.Text.Trim.ToUpper & "xxxxxxxxxxxxxxx", 15) After looking over the code, I decided to move the Session("Id") initialization closer to the Session("LastName") line of code. The...
  5. Schimsky

    Session bug?

    Here's a piece of the code... If Not Page.IsPostBack Then Session("ControlFileName") = "CONTROL.TXT" Session("KeyFileName") = "OnlinePr.00k" Session("id") = Session("LastName") & "." & Now.TimeOfDay.TotalMilliseconds Session("CurrentQuestion") = 1 ...
  6. Schimsky

    Session bug?

    The unique id is made up of the user's Last Name and current time in milliseconds. The uniqueness of the id is NOT the problem. :-(
  7. Schimsky

    Session bug?

    Hi, Here's my situation: I wrote an asp.net application that assigns a user a unique Id when he logs into the application. I store this unique Id in a session variable, Session("Id") = 'MyUniqueId'. I create this session variable only 1 time in the entire application, right after the user...
  8. Schimsky

    on key press???

    Hi, I have an ASP.net application that simulates an exam. There are 4 radio buttons on the form, (for options A B C & D). I would like to have radio button "A" be selected when the user presses the "A" key on his keyboard, the "B" radio button be selected when the user presses "B" on his key...
  9. Schimsky

    sql string for vb.net and asp.net different??

    Hi, I'm really new to sql server. I just installed MSDE 2000 on our company's network server. Then I quickly wrote a VB.Net program to access a database on the server. I used this code: Dim objConn As New SqlConnection("workstation id=steve;packet size=4096;integrated...
  10. Schimsky

    sql connection for ASP.Net vs VB.Net

    Hi, I'm really new to sql server. I just installed MSDE 2000 on our company's network server. Then I quickly wrote a VB.Net program to access a database on the server. I used this code: Dim objConn As New SqlConnection("workstation id=steve;packet size=4096;integrated...
  11. Schimsky

    sqlce delete error.. what does it mean???

    Found the problem! I don't need an * in the query... Just: Delete From Candidates Where.... thanks.
  12. Schimsky

    sqlce delete error.. what does it mean???

    Hi, I've created a simple pocket pc app that adds/edits/and deletes records from a simple database table. I've got the Adding and Editing records working. The problem I'm having is with the Deleting of Records. Here's the code... '************ NONQUERY DELETE CODE ****************** Dim...
  13. Schimsky

    Help With ViewState Please

    Hi, I have an asp.net page with the page directive being... <%@ Page Language="vb" AutoEventWireup="false" Codebehind="Survey2.aspx.vb" Inherits="WebApplication1.Survey2" enableViewState="False"%> Notice I have enableViewState = False. When I run the page and look at the Source, There is a...
  14. Schimsky

    vb.net copy large binary object QUICKLY

    Hi, Just from c:\ drive to c:\ drive Steve
  15. Schimsky

    vb.net copy large binary object QUICKLY

    Hi, Can anyone point me in the direction to see code on exactly how to copy a large binary object using vb.net quickly? Thanks. Steve
  16. Schimsky

    SetDatabase??

    Hi, Using VB.net and Crystal 9 and an MS Access Database. Here's my current code... Dim Application As New CRAXDRT.Application Dim Report As CRAXDRT.Report Set Report = Application.OpenReport(&quot;c:\MyReport.rpt&quot;) CRViewer91.ReportSource = Report CRViewer91.ViewReport I would like to...
  17. Schimsky

    Best Practice For Mass Updates

    stnkyminky, That is a good suggestion. I wouldn't of thought to do that. Finding ways to avoid creating such a large DataSet Table seems to be the answer. Thanks for the suggestion. Steve
  18. Schimsky

    Best Practice For Mass Updates

    Hi, Hypothetically, If I had a database with a table that had millions of records in it, and I wanted to update a field in every one of those records. Would I create a dataset of the table, (millions of records), then parse through the dataset updating the field, then update the table with...
  19. Schimsky

    Insert Data into Database

    I think your INSERT INTO Statement is incorrect. It should be something like this... &quot;INSERT INTO TABLENAME (&quot; & strFields & &quot;) VALUES (&quot; & strValues & &quot;)&quot;, objConn) strFilds = Field names in the table. Stve

Part and Inventory Search

Back
Top