CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: vbUserName

Page 1 of 21 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    1
    Views
    1,256

    Show MBSA report in browser from its XML

    Hi friends !

    I have some XML files which are Microsoft Baseline Security Analyzer's report files. I want to show an XML in the browser in a friendly user interface. Do you know of any tool or any...
  2. Get the HTML of a WebForm in Render event

    Hi friends !!!
    This is my question:

    I need to get the HTML of a WebForm in its Render event. I don't want to invoke the method, like:
    base.Render(hwr); but just to get (maybe in a public...
  3. Replies
    2
    Views
    560

    Re: Get the complete SQL Query

    Thank you sraheem !

    The "show sql query" just shows the datasource sql query, but not the final sql that is built using that datasource AND grouping and summarizing fields...


    Maybe it's not...
  4. Replies
    2
    Views
    560

    Get the complete SQL Query

    Hi !!!

    I was told to generate in HTML the content of a crystal report, but without using Crystal Reports... The report is feeded from a sql server view, but inside the report there are many...
  5. Replies
    8
    Views
    3,584

    Re: Convert ASP Page to PDF

    Pdf995 and iTextSharp, among many others, are not trials and must be used through code.
  6. Replies
    8
    Views
    3,584

    Re: Convert ASP Page to PDF

    You have many free tools, just search at google...

    Some are:
    - Pdf995
    - iTextSharp
    - TotalHTMLConverter
    - http://www.gohtm.com/convert_pdf.asp
  7. Re: View logged users and the session variables

    I'm runing a ASP.Net webform...

    I now session avriables can be stored InProc, StateServer (a server service) or SqlServer...


    I found that, enabling tracing, in...
  8. Re: View logged users and the session variables

    I keep session variables in mode="StateServer"
  9. Re: View logged users and the session variables

    I'm sorry, I can't see how that code helps me to watch the Session variables of the users...

    I can watch the Session object of my application and all the values that it contains:



    for (int i...
  10. Re: View logged users and the session variables

    That is to say, if there's a possibility to watch ALL the Session objects of all the users...
  11. View logged users and the session variables

    Hi !!!

    I'd like to get, from my application server, a list of the logged users with these details: application they are logged in and state of Session variables.

    For instance:

    User: John...
  12. Replies
    6
    Views
    958

    Re: Aspx to Stream

    I could finally solve it:

    http://narencoolgeek.blogspot.com/2005/06/capturing-page-output-in-aspx-pages.html

    Thanks !!!
  13. Replies
    6
    Views
    958

    Re: Aspx to Stream

    Yes, actually I'm sent to Login.aspx if Session["User"] == null...

    Is there any other way to do this, let's say, more "locally", using Response object or something?

    Thank you very much !
  14. Replies
    6
    Views
    958

    Re: Aspx to Stream

    Thanks, it seems quite easy, but I get this error:

    The remote server returned an error: (401) Unauthorized.



    WebClient wc = new WebClient();
    byte[] buffer =...
  15. Replies
    6
    Views
    958

    Aspx to Stream

    Hi friends !!!

    I'd like to save in a Stream variable (not in a file) the content of the page. How could I do this?

    Thanks !!!
  16. Replies
    5
    Views
    765

    Re: Write files to Bin folder

    Thank you !!!

    I looked or some code which uses Reflection and CodeDom, and it works very well...

    Thanks again !
  17. Replies
    5
    Views
    765

    Re: Write files to Bin folder

    What I need is to dynamically execute code, which comes as a parameter in a textbox.

    My solution right now is to store the text in a .cs file, and then run a batch file that calls .net compiler,...
  18. Replies
    5
    Views
    765

    Re: Write files to Bin folder

    After generating a new dll based on the code that I receive, the dll has to be placed in Bin folder... I suppose there has to be a way to do this... ?
  19. Replies
    5
    Views
    765

    Write files to Bin folder

    Hi friends !!!

    This is my issue: my asp.net application dynamically compiles a C# code (which takes from a TextBox) into a dll file, which writes in Bin folder.
    The problem is that I'm not...
  20. Replies
    1
    Views
    1,253

    Access denied when writing a file

    Hi friends !!

    I'm trying to write or create a file in a folder which is located in the server. Using:


    using (StreamWriter sw = File.AppendText(strFilePath))


    I get an exception, what is...
  21. Datagrid row selection and datepicker component

    Hi everybody !!!

    I'm quite new to .Net, coming from VB6...

    1) I'd like to know where to get a free component similar to the DatePicker control of Visual Basic. Do you know any?

    2) I have a...
  22. Replies
    7
    Views
    2,597

    Re: How to make OCX of extended textbox

    Is there a way I could export the original properties of the textbox without having to explicitly export them with: "Public Property Let SelStart ..." ?

    That would really save a LOT of time, and...
  23. Replies
    7
    Views
    2,597

    Re: How to make OCX of extended textbox

    Excellent !

    Thank you very much ! :thumb:
  24. Replies
    7
    Views
    2,597

    Re: How to make OCX of extended textbox

    It works !

    I tried Wizbang's code and it works, but I can only assign the color properties at runtime and not at design time, because when I change it at design time it's not "saved" and it takes...
  25. Replies
    7
    Views
    2,597

    How to make OCX of extended textbox

    Hi !

    I just want a textbox OCX that changes the backcolor whenever it has the focus. So it should have 2 properties: Color_GotFocus and Color_LostFocus. I'd also like to have the same properties...
Results 1 to 25 of 514
Page 1 of 21 1 2 3 4





Click Here to Expand Forum to Full Width

Featured