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. ctdapper

    How to use CDO to send email?

    Snake, Unless the mail server is setup to receive or route mail from an smtp server then most likley it will never work. Your local computer (smtp) is not set up to to communicate with hotmail's server. This is done to to stop spam............. Programming today is a race between software...
  2. ctdapper

    Insert not done on Win2003. It works on Win200

    Check the version of the framework on both servers. You may need to change the IIS server on the 2003 server to run in IIS 5 isolation mode. Look under website properties then Services I had this problem also and had to Run the WWW service in IIS 5.0 Isolation mode for older asp.net...
  3. ctdapper

    Instructions for exporting to .pdf from ASP.NET

    Once you have your included references just add this code Dim DiskOpts As CrystalDecisions.Shared.DiskFileDestinationOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions() ("Report").ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile...
  4. ctdapper

    SelectedIndexChanged EventArgs Question

    Pop, You do not use e property you use the datagrid's selected Item property ie: dgIssues.selecteditem.cell(n).text where n is the number of the cell. CtDapper
  5. ctdapper

    Need help with session variables

    D I'm such an IDIOT. Code line 2,562 I have an if statement. That if my data table is not created for the application to create it and to set a couple of session variables. for the first time. However my bag I did not give an else statement to set those two very important session variables...
  6. ctdapper

    Need help with session variables

    D I can check the sql table an it does make an entry into the table for each session. as far as I can tell. mode = "SQLServer" cookieless = "false" timeout="20" Dan.
  7. ctdapper

    Need help with session variables

    Everything worked fine. with the new project I made two simple pages that wouls display the session variable and change it. it worked just fine. Dan
  8. ctdapper

    Need help with session variables

    D, Yes I say that. I went through and deleted all session variables. and gave them a application variable(I don't want to do this but I only want to check to ensure that everything worked.) It work just like the origanal problem. After deleting all session variables. Then I retried the...
  9. ctdapper

    Need help with session variables

    I am unable to set a session variable. and retrive that session veriable. Please advise. Thanks
  10. ctdapper

    Need help with session variables

    D, First thing Monday I will check it out. The project is a work and I try not to work at home unless I researching such as this. Thanks Dan
  11. ctdapper

    Need help with session variables

    D The application allows users to track different phases of a project(a building project). The contractor can look a different areas of the project for the status of the job and the of funds aviable/committed to that phase. I am tring to use session variables to keep tract of the project and...
  12. ctdapper

    Need help with session variables

    Mark, Thanks for all the time. I have searched the microsoft site all day yesterday and today trying to get this to work. Yes in the config. I have tried both the inproc and the SQL neither will work. This works the first time thriugh called when a page loads Public Sub fill_data()...
  13. ctdapper

    Need help with session variables

    Mark, I am new to this web based stuff with dotnet so I will be happy with any help. The Session ID will not print out. I have now lost the use of all session Veriables. However The sqlserver database is keeping track of each session. Platform 2000 server IIS5.0 SQL 2000 development...
  14. ctdapper

    Need help with session variables

    Mark, We are on the same page. My session variables are acting as if they are application variables. When a person enters the site thier session("project") is set to session("project")=1 session("user") = tbuser.text the next person who logs in resets all the...
  15. ctdapper

    Need help with session variables

    Mark, Maybe I did not explain myself correctly. When user two starts a session then changes to a different project number the project number changes for all browsers that are connected to the site. I have a search that button that the user can enter in the project number then on the click...
  16. ctdapper

    Need help with session variables

    I have written a local intranet program so that users can chech the status of different projects. I use session variables to keep tract of the project number and the phasecode of the project they are viewing. How ever if there are more then two users then the one that changes the project number...
  17. ctdapper

    load/show/open another form

    bOEmAN, After you have made your form and named it let's say that it is call form2. in the program you must decliar a form(what everyou want to call it) let's say frmtest as system.windows.forms.form then when you are ready to open up your form dim frmtest as new form2(the form you created)...
  18. ctdapper

    Dataset updates after sorting from a grid

    I am able to add a new record to the dataset with the following code. Dim i As Integer Dim anyRow As DataRow = Me.objpagers.COMM.NewRow Me.objpagers.COMM.Rows.Add(anyRow) i = Me.objpagers.COMM.Count Me.grdCOMM.CurrentRowIndex = i grboxadd.Visible =...
  19. ctdapper

    Application uses a value of the wrong type

    Using a stored procedure in an SQL Database with VB calling it: CREATE procedure dbo.up_select_company @code_id varchar(4) as select * from company where code = @code_id VB part: cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...
  20. ctdapper

    Application uses a value of the wrong type

    Using a stored procedure in an SQL Database with VB calling it: CREATE procedure dbo.up_select_company @code_id varchar(4) as select * from company where code = @code_id VB part: cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...

Part and Inventory Search

Back
Top