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

    A coworker of mine is actually working on this and he asked me if I knew a there was a way (since I had been waiting for something to do). He wants to send the xml in an email, so referencing another file isn't really feasible. I understand this isn't typically the way to do things but you'd...
  5. 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!!
  6. 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...
  7. VBGuy2112

    Read/update cookies both in ASP and JavaScript

    Actually, I did figure it out...I had omitted the path parameter on the Javascript side which explains why I could rewrite cookies that were made on the javascript side but not on the asp side since it automatically defaults to "/" if you don't specify. I thought it defaulted to...
  8. 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...
  9. 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!
  10. 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...
  11. VBGuy2112

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

    Guess I missed it before. You're now a star.
  12. VBGuy2112

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

    Doesn't look like I can give stars. That must be left to the webmasters. I'm sorry. I thought I would be able to do that. This is the best I can do: ***
  13. VBGuy2112

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

    Thank you for your response. I'll try this out.
  14. 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...
  15. VBGuy2112

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

    Thank you both for your responses. I had to change onpnt's code a little to make it work but I think I have what I need. Very cool indeed.
  16. 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!!!
  17. 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!
  18. 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!
  19. VBGuy2112

    Listbox Value

    Thanks. I'll give this a try.
  20. 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?

Part and Inventory Search

Back
Top