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

    Sending multiple emails through outlook interop API (C# winform)

    I'm working on a C# winforms application (.net framework 3.5). I'm opening an outlook email with an attachment using the outlook interop. We're working in a citrix environment, and it takes a LONG time to load the outlook API each time we open an email (takes 13 seconds for each email). So I'm...
  2. VBGuy2112

    Can't Execute code from a freed script error

    I'm receiving a "Can't Execute code from a freed script" error message when clicking on a Hyperlink for a day on a date-picker. I saw a link on Microsoft's site saying this was fixed in SP1, but I'm still receiving with SP1 installed. Any ideas? Thanks!
  3. VBGuy2112

    "Permission Denied" and javascript error when rendering a report

    I'm intermittently receiving a "Permission Denied" IE script error (IE 6 and 7) when running a SQL 2005 report. This is through a windows app. At this point, I had filled out all the parameters and the report was executing. This seems to happen once the report is being rendered. Has anyone seen...
  4. VBGuy2112

    XML and XSL all in one file

    Is there any way at all to have XSL and XML in the same document? I am trying to avoid having 2 separate files for the XML and XSL. Could someone give me an example of this? I have been searching and experimenting and can't get it to work. Thanks in advance!!
  5. VBGuy2112

    loosing the viewstate of my table control

    I have a table (System.Web.UI.WebControls.Table) on my page and I'm creating the rows and cells dynamically based off of information from the database. I have the EnableViewState set to true for the table control but I am loosing the viewstate when the page is submitted to itself. I also tried...
  6. VBGuy2112

    Read/update cookies both in ASP and JavaScript

    Hello. I have JavaScript that will read/update cookies very well and I can read these cookies with multiple keys from the ASP side. But I'm having problems updating a cookie in JavaScript that was originally created in ASP. When I do so, it creates a second cookie with the same name. I can post...
  7. VBGuy2112

    Caller ID

    Anyone have any suggestions as to how I could write a .net app to read caller ID information from a phone line? I have started this with VB6 using the COMM Control but that has been difficult to work with. Any modern dial-up modems in particular I may want to consider? Thanks in advance!
  8. VBGuy2112

    Stored procedures with Crystal.Net

    I'm having a problem with reports in Crystal.net I have a stored procedure in SQL Server for the record source. When I have a date field in the procedure, I get a date conversion error in the .net crystal report designer. Anyone know why this is? Is there a better way to set a record source...
  9. VBGuy2112

    When rendering page as excel, can u name the tabs?

    When I write an html page as an excel speadsheet using the following: Dim r As HttpResponse = GetResponse() r.Buffer = True r.ContentType = "application/vnd.ms-excel" r.Write(obuilder.ToString) r.Flush() I get a nice excel speadsheet from the HTML...
  10. VBGuy2112

    How do you make a string act as a comparison operator?

    This is one for a real tekie... I am looking to dynamically create a validation function and I want to be able to pass the function a string like "==" and have it act as a comparison operator in my function. Is there a way to do this? Thanks in advance!!!
  11. VBGuy2112

    Regular expression to test number range

    I'm looking for a regular expression to test that a number is within a range (like between 1 and 3000). Does anyone know how to do this? I know how to see that they've entered in a 4-digit number, but not how to see that it isn't greater than 3000. Thanks!
  12. VBGuy2112

    Run crystal report from web page

    I have a simple report already made and I would like to display it from a web page. Could someone please tell me how I can do this? I've done it from a windows form using a crystal report viewer. I'd like to do it all in code if that is possible. Thank you in advance!
  13. VBGuy2112

    Listbox Value

    I have a simple form where I'm adding items to a listbox. The displayed field is a person's name but I want to store a userid in the background. In vb, I would have used the itemdata property (as a number I believe). Is there a way to do this is asp.net?
  14. VBGuy2112

    Really simple question

    On a simple form, I have a button. I want a msgbox to appear and say "Hello" when the button is clicked. How can I do this in asp.net (in vb)? Sorry for a simple moron question. I could have normal asp do it all-day-long but I'm brand new to .net. Thanks.
  15. VBGuy2112

    Automatically delete a folder when session ends

    I'm using a temporary folder(named by sessionID) for a web application and I'm looking to delete it when a session is over. Can I do this using the Session_OnEnd routine in Global.asa with a file system object? I've been trying it but nothing happens. Also, will this happen when a user closes...
  16. VBGuy2112

    ADSI, ASP & ADO

    Hello. I'm looking to write some asp code that uses ADO to query ADSI objects. I want to query a group setup under a given domain and sort the output to put into a dropdown box. Another question, when I use ADSI directly (without using ADO) and I query on a moderately-sized group, it is VERY...
  17. VBGuy2112

    Set the height of a TEXTAREA

    Hello. I'm looking to size a textarea to be as large as the value that is populating it. This will be a read-only textarea. I'd just display the value in a table but I loose the carriage returns, spacing, etc. I've been able to say: STYLE="overflow: Show;Width: 85%;" which sets the...
  18. VBGuy2112

    DateTime Fields - 1/1/1900 base date problem

    I have a few datetime fields from a SQL server database that I'm updating through a web page. My problem is that if the field is being cleared out during an update changed from say "10/12/2000" to "", the date defaults in the database to 1/1/1900. Is there any way to have a...
  19. VBGuy2112

    How do you really destroy an object?

    This is part curiousity and part "need to know for my web page programming style". How do you really destroy an object so that you could dimension it again? For example: Dim objConn ' Database connection objConn.Open ....... objConn.Close Set objConn=Nothing Dim objConn blah...
  20. VBGuy2112

    Checking to see if someone has updated a form

    Hello. I'm looking to write a generic function that will check all elements of a form to see if any field has been updated. What I mean is, I'd like to take a snapshot of all the values on a form when it's loaded and then check it at submission time to see if the user has changed any of the...

Part and Inventory Search

Back
Top