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

Search:

Type: Posts; User: talksandy

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Re: Split a Web Application into Multiple Projects

    split the project into multiple assemblies (component1/component2) and use the assembly in the web application. It will be easier to maintain. Look at some of the open source CMS (N2/DNN) and you may...
  2. Replies
    1
    Views
    687

    Re: Speltting web form coding

    how about using jscript/jquery to load the forms dynamically
  3. Re: Easy way to decompile EXE to C-Sharp and then compile

    Have you looked at .net reflector?
  4. Replies
    1
    Views
    12,199

    Re: Merge HTML into an existing asp.net page

    Use master pages and asp containers
  5. Re: Does it make sense to learn .NET 3.5 instead of 4.0?

    start reading 2.0, then read the differences between 4.0 and 2.0 mainly Linq/WCF/WPF and some more and you can say yes I know 4.0
  6. Re: Open .html on load of form and to make default web browser!

    You probably need to set html file extensions to use your application.

    Take a look at this and this
  7. Replies
    8
    Views
    9,732

    Re: Wcf/wpf/wf/*** :)

    WCF is certainly useful and replacing older Soap services. Newer extensions to the WCF like OData are a great addition as well. Most of the MS products are using WCF in their stack (e.g. SharePoint,...
  8. Re: Object reference not set to an instance of an object

    Teach a man to fish and you feed him for a lifetime. Unless he doesn't like sushi—then you also have to teach him to cook.


    :)
  9. Replies
    3
    Views
    873

    Re: Unable to debug release build

    Add more logging and traces to the release code. In a real world scenario this may very well be the only way to debug your code.

    As mentioned above, you should describe the exact problem.
  10. Re: How to Dynamically Create XHTML page using C#.Net ?

    ASP.net
    or use HTMLTextWriter class.

    Alternatively you could write in XML format and translate to XHTML using XSLT
  11. Re: Error when running MySql Script file in Dotnet installer

    turn on the installer logging and post the verbose error message.
  12. Replies
    24
    Views
    7,182

    Re: Write data to SQL database

    I'd propose some reading. Use some samples and read a DB book. You will be able to run (solve) most of your queries.
    http://msdn.microsoft.com/en-us/library/aa214299(v=sql.80).aspx
  13. Replies
    2
    Views
    1,269

    Re: How Microsoft does it?

    IMO

    I dont think there is much difference between both of the action.

    In both cases Image file is directly embedded in the assembly in raw format but in second methof it only provides you an...
  14. Replies
    5
    Views
    866

    Re: Dynamic TabControls and Tabpages

    I dont see why you cant.

    You better try it first :)

    It will work.
  15. Re: How decrypt a password already saved in db in encrypted format?

    better way to do it is by storing hash in the Db and then comparing your encrypted password to the hash (just as torrud suggested and most widely used way).

    Otherwise you can also use Rijndael...
  16. Re: The path to cleaner code: [Exception handling]

    Just wanted to update the thread

    Rico mariani has something to say about this http://blogs.msdn.com/ricom/archive/2006/09/25/771142.aspx
  17. Replies
    0
    Views
    1,977

    BalloonTipClicked Not working

    Can anybody tell me why this code is not working in my 2K machine. It works fine if I use XP.
    I'm using .Net2.0


    WSNotifyIcon.BalloonTipClicked += delegate(object obj, EventArgs args)
    {...
  18. Replies
    2
    Views
    751

    Re: Namespace in XPATH

    Yeah. I dont know how I forgot to c that multistatus messed up in the first line with xml tag

    Thanks anyway.
  19. Replies
    2
    Views
    751

    Namespace in XPATH

    <?xmlversion="1.0"?><a:multistatusxmlns:b="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"xmlns:d="urn:schemas:httpmail:"xmlns:c="xml:"xmlns:a="DAV:">
    <a:response>...
  20. Replies
    1
    Views
    756

    Re: Problem with outlook button

    I've found the answer.
    Declare the commandBar buttons at the class level and it will work fine.
  21. Replies
    4
    Views
    24,123

    Re: How to insert " in a string

    Dont' forget a semi-colon at the end :)
  22. Replies
    1
    Views
    756

    Problem with outlook button

    I've following code in my Outlook project. I've added a click event handler with CommandBarButton.Click event as shown in code but when I click the button nothing happens. What could be the possible...
  23. Replies
    2
    Views
    834

    Re: Storing Settings in Outlook

    Is there any other forum where I can find the answer of the question. It's urgent. :blush: :cry:
  24. Replies
    2
    Views
    834

    Storing Settings in Outlook

    Can I store some user specific data in Microsoft Outlook offline store file. So that it will be accessible when I logs on to other machine ??
  25. Replies
    9
    Views
    1,196

    Re: How to retrieve path of client machine.

    If user means IP/Servername then u can get it easily otherwise you can do some Windows Authentication or your own authorization system as suggested by exterminator
    :thumbd:
Results 1 to 25 of 65
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured