User Profile

Collapse

Profile Sidebar

Collapse
senaka
senaka
Last Activity: Feb 16 '08, 03:12 PM
Joined: Feb 1 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • senaka
    replied to Dynamically Refreshing Properties Window
    in .NET
    Infact yes. But, you will require to take control of IDE behaviour though your program, and it is the way that it is done in the case of customization for custom controls. So isn't there anybody who could help?...
    See more | Go to post

    Leave a comment:


  • senaka
    replied to Dynamically Refreshing Properties Window
    in .NET
    well the code is a bit to big to write in here and involves many files, so i'm sorry about that. I'm developing an authentication module (desktop app accessing web service). The language is C#.NET Now, this contain a text box where the user can enter text for a username (an example). This text box, which is a part of the custom control is exposed as a property (the property is of type TextBox). For ease of use I'm implimenting another property in...
    See more | Go to post

    Leave a comment:


  • senaka
    replied to Dynamically Refreshing Properties Window
    in .NET
    The properties window is the one that shows up in Visual Studio in which we can set values for properties in the Design View. The one that comes up when you press F4.

    What I want to happen is this. I have a custom control having a property, say A. When my client uses this control in the design view in the studio and change A's value, another property, say B must also change accordingly, and the client must see that at both locations,...
    See more | Go to post

    Leave a comment:


  • senaka
    replied to freetextbox
    in .NET
    Word wrapping can easily be implimented using Javascript... Ask someone on that Forum....
    See more | Go to post

    Leave a comment:


  • try this.... UpdatePanel.Con trols.Add(contr ol_name) instead of this.ContentTem plate.Controls. Add(control_nam e). Because, this refers to the page as a whole and not to your update panel.

    the Visibility issue works well if your control is embedded inside a Panel... Therefore, if the panel is not visible, your controls wont get loaded.

    Regards,
    Senaka
    See more | Go to post

    Leave a comment:


  • senaka
    replied to Problems with sending Email
    in .NET
    Yep, may I ask you whether you are using a free mail account or an account which might be detected as spam on the recieving end? This might be your problem. The late delivery depends on the scheduling algorithms used on your smtp server or any other mail sending server.

    Regards,
    Senaka....
    See more | Go to post

    Leave a comment:


  • senaka
    replied to What are the alternatives for captchas?
    in .NET
    There are a a variety of methods, CAPTCHA being the popular 1, check up www.captcha.net and read more on CAPTCHA @ Wikipedia...

    Regards,
    Senaka...
    See more | Go to post

    Leave a comment:


  • senaka
    replied to How we can display the message box in c#
    in .NET
    MessageBox.Show (...message...)...
    See more | Go to post

    Leave a comment:


  • senaka
    started a topic Dynamically Refreshing Properties Window
    in .NET

    Dynamically Refreshing Properties Window

    Hi,

    I want to refresh the properties window in Visual Studio through my code. This is how it works. I have made an onChanged event for a property that I defined. When this gets fired I need to update another property and refresh the properties window. Everything works fine, except I don't know how to refresh the properties window.

    Regards,
    Senaka
    See more | Go to post

  • senaka
    replied to Documentation Samples
    Hi try this document by IEEE, "Std 830-1998" or any other document based on this standard. That's the recommended version by IEEE....
    See more | Go to post

    Leave a comment:


  • senaka
    started a topic XML documentation in C#
    in .NET

    XML documentation in C#

    Hi i have written XML comments (summary etc.) for my .cs files. After that I built the assembly. along with the XML documentation. Now, when I reference my Assemly into another project, I don't see any summary etc. appearing for my classes. Why is that?
    See more | Go to post

  • It is upto the people who make the browsers to impliment support for the methods that we use in javascript. If they don't we can't help. Some methods may have alternative versions that work on alternative browsers, whilst there may be methods that work only on one browser. What do you exactly mean here by select menu options? which is the one that you want to disable?...
    See more | Go to post

    Leave a comment:


  • Please note that the above script works fine in FireFox. But in netscape, your bookmark will be appearing in the panel. Which might not be what you want. Try the ctrl-D alternative in netscape....
    See more | Go to post

    Leave a comment:


  • you should be able to get through this using ASP only. is it essential to use javascript in here?...
    See more | Go to post

    Leave a comment:


  • Hey, I just happened to pay a visit to this thread. I have a similar need; but, I have no modems etc. And I use ASP.NET... is there any web service as you say that helps me send sms for free (worldwide)? if you do know please post a reply or PM me. Thanks in advance....
    See more | Go to post

    Leave a comment:


  • The reason to your problem is the different implimentations of javascript (certain methods) in different browsers. Your code will need to be slightly modified to suit various browser conditions. In order to help you through please post your code below....
    See more | Go to post

    Leave a comment:


  • Thanks a million...

    For the benefit of the other viewers. Please use this script in order to identify whether a link was visited by checking for its color output.
    Code:
    getColor(document.links.item(i));
    function getColor(x){
    	if (x.currentStyle)
    		var y = x.currentStyle["color"]; //IE
    	else if (window.getComputedStyle)
    		var y = document.defaultView.getComputedStyle(x,null).getPropertyValue("color");
    ...
    See more | Go to post

    Leave a comment:


  • senaka
    replied to problem on ticker
    Acoder is correct. You can use AJAX. But, if your problem is that you need to place the script over and over again, try using a sitewide template. U can easily make 1 in PHP....
    See more | Go to post

    Leave a comment:


  • senaka
    replied to validation form project
    jasonchan,

    you mean you need a required field validator is it? that means if @least one of what you require is not filled your form must not get submitted. Is that what you want?

    Rgds.
    See more | Go to post

    Leave a comment:


  • Sorry for repetitive replies.

    Please read the reply #3 too. This is an extension.


    This too describes what I want.
    HTML and CSS can identify what links were visited and what are not right? This is achieved through a browser. Now can't I use the same mechanism? Not to change colors but, to identify user trends. Is there any way that I can access the same resource as the browser?

    Thanks in...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...