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 gkittelson 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. RizMan

    Untitled Attachment in outllok when using System.web.mail Namespace

    Hello there, I got following situation here: I am dynamically creating an *.mht file on my server which then needs to be send to a recipient by e-mail. So I'm creating the e-mail on the server with following code Dim msg As New System.Web.Mail.MailMessage Dim smtp As System.Web.Mail.SmtpMail...
  2. RizMan

    disabling right mouse click

    I have following situation: On my form, I have an activeX control (pdf.ocx). I have Acrobat Reader 6 installed. What I need to do is disable the right mouse click in the activeX. This is needed because I don't want users to be able to use the "Print" option in the context-menu. I can...
  3. RizMan

    Security issue

    Hello there I have some problems with the .NET Security. I am developping an UserControl which is similar to Windows Explorer. I try to add this control to a html page using the <Object> tag. The control is indeed added but when loading, I get following Security Exception...
  4. RizMan

    Browsing the Clients FileSystem

    My task is to design an Upload form which allows the user to chose some files on his machine and upload them to the server. Now I know using ASP.NET you can use the HTMLInputFile Control to do this. But my boss doesn't want the default Load File Dialog to open. He wants an aspx page which would...
  5. RizMan

    Running multiple batch files in DOS Prompt

    I solved the thing. I'm simply creating a temporary .bat file where I put the commands to call and then run the bat using the Shell command.
  6. RizMan

    Running multiple batch files in DOS Prompt

    For the moment I am writing a startInterface for an old Software some people are using here at my company. To start it, I need to call 2 batch files. I can do that via the Shell Command. No problem. However, the first batch sets Environment Path variables which are only valid in the current Dos...
  7. RizMan

    Compiled project won't launch on machines without .NET

    It's not that it can't be installed on those machines. I just asked if it was possible to do without.
  8. RizMan

    Compiled project won't launch on machines without .NET

    I have my project written in VB.NET. Works fine at my station and others who have the .NET framework installed. However, the application needs to run on machines where the Framework isn't installed. So my question is: Is there a way to compile the Project in such a way that it works without the...
  9. RizMan

    TextBox not updating content

    OK, I will post it as soon as I find it next time
  10. RizMan

    Client/Server Application problem

    Craig: Thanks that's exactly what I was looking for. I think I just missed that you can add Web References
  11. RizMan

    Client/Server Application problem

    That's right, the aspx looksup the XML file on every refresh. I thought of your method already. However, I don't want to do it that way. Not that it wouldn't be possible. But I want to learn writing Client/Server Applications, so I want the XML to be stored on the Webserver and modified by a...
  12. RizMan

    Client/Server Application problem

    I couldn't think of a decent subject for this thread, sorry. Ok, here's what I'm trying to do but I have no idea about how to do it. On the WebServer I have an aspx file which just displays data from an XML file. (Messages from users in my intranet) Now every user in my local intranet should...
  13. RizMan

    TextBox not updating content

    I figured it out. Thanks anyway for the reply
  14. RizMan

    TextBox not updating content

    Ok, here's the situation. I am quite inexperienced with ASP.NET, so please be patient. So I have this mainpage, which is basically a simple HTML table which content gets generated based on an XML file. I have the informations: Author, Comment and Date. Now I want to allow users to modify their...
  15. RizMan

    Adding Custom Layer before printing

    In my company we developed a system to store all kind of documents which allows a full text search to find documents. In the results of the search, you can print the document of your choice. What we want is a way to add some informations about the document before it is printed. Some kind of...
  16. RizMan

    Sub Form in the report

    I don't know why this happens, but why not simply use a SupReport in your Report and link the same fields as you link in the form?
  17. RizMan

    Deleting a report in VBA

    I found the solution. It was to obvious to see docmd.DeleteObject acReport, [ReportName]
  18. RizMan

    Deleting a report in VBA

    Forgot to mention: Don't mind the if statement if aob.name <> &quot;rptTemplate&quot; Then ... rptTemplate is the template I use to generate the reports. So that one is very critical and shouldn't be seen by the user.
  19. RizMan

    Deleting a report in VBA

    Ok, here's the situation In my DB I am generating Reports dynamically depending on which fields the user choses to see in the report. Once the report is created the user can chose to save to Report in the DB. If the user wants to see the report againg, he can view the saved reports in a new...
  20. RizMan

    Adding Custom Procedure to an event

    First of all Hello. This is my first post here on these forums. Now to my question: I am dynamically generating reports. I start by creating a new report using set rep = CreateReport Now I want to set as e.g. the OnPage event to my Costum Procedure &quot;LayoutControls&quot; In VB6 I know...

Part and Inventory Search

Back
Top