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

Search:

Type: Posts; User: yoyosh

Page 1 of 14 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    0
    Views
    1,025

    SRGS - how to check if it accepts sentence

    How to check if the given sentence is accepted by SRGS grammar provided in XML-form?


    I cannot find any useful solution in web.


    Thank you in advance for help
  2. Replies
    0
    Views
    815

    GAP/HTML authentication

    What is the best way to handle authentication using just html/js? Is sending login and password via text to webservice safe? What are other alternatives?

    Also, how to indicate that user is...
  3. Replies
    8
    Views
    2,740

    Re: ASP.NET usefull controls

    Don't speak about other people, only about yourself. In ASP.NET such control library would be eg. AJAX Toolkit. Question is simple.

    Please stop boosting your posts count in such infantile and...
  4. Replies
    8
    Views
    2,740

    Re: ASP.NET usefull controls

    Anyone has better advice?
  5. Replies
    8
    Views
    2,740

    ASP.NET usefull controls

    I am going to develop application in ASP.NET MVC. I know there are no rich controls.

    Could you please recommend me good controls for that (datagrid, calendar, scheduler, numeric textbox, etc.)?
    ...
  6. Replies
    1
    Views
    4,518

    ASP MVC update panel

    How to use update panels in asp.net mvc? What is the best practice and library for that?
  7. "The Web server does not appear to have FrontPage Server Extensions installed" althou

    I'm trying to deploy WPF app into remote server (Win2003) using clickOnce. I have installed FrontPage Server extensions (the FPSE said that installation was successfull). I have also created...
  8. Replies
    0
    Views
    1,745

    basicHttpBinding configuration

    I want to host WCF web service in my windows application. So far I succeeded with the following configuration:
    <system.serviceModel>
    <bindings>
    <wsHttpBinding>
    <binding...
  9. Thread: AzMan launching

    by yoyosh
    Replies
    5
    Views
    1,482

    AzMan launching

    How to launch AzMan? I know I could press Start and type azman.msc, but I would like to start it automatically using Process.Start(...). What to type in those parenthesis?
    Thank you for help
  10. Replies
    6
    Views
    3,067

    Re: StreamReader.PeekLine

    No, this part is correct in my view. Im not assigning line anywhere but I`m calling method ReadLine which should modify position. The problem is that this stream is buffered. Take a look at:...
  11. Replies
    6
    Views
    3,067

    Re: StreamReader.PeekLine

    What do you mean?

    I thought the BaseStream.Position will change after I called ReadLine method.
  12. Replies
    6
    Views
    3,067

    StreamReader.PeekLine

    I created a class deriving from StreamReader and I added the following method to it:

    public string PeekLine()
    {
    while (true)
    {
    long peekPos =...
  13. Replies
    1
    Views
    1,744

    ADO.NET 2.0: nullable column, but...

    I have a table in my DB containing a column of type Datetime, which allows null values. I created DataSet on which I drag&droped this table. Everything was fine, DataTable with TableAdapter have been...
  14. Replies
    1
    Views
    836

    ADO.NET cross-base transactions Pin

    I made a simple transaction using ADO.NET:

    SqlTransaction tn;
    SqlConnection cn = new SqlConnection(/*connection string to 'Database1'*/);

    try {
    if ...
  15. Replies
    0
    Views
    571

    CLR stored procedure cross base access

    I implementd CLR stored procedure on 'Database1'. I would like to perform some UPDATE statements inside this CLR stored procedure in 'Database2'. Is is possible? If so, then how?
  16. Replies
    0
    Views
    882

    Custom membership provider

    I implemented custom membership provider by deriving from MembershipProvider class. I added login control to my web page and associated my membership provider with my custom database, where I`m...
  17. Fairly simple .NET Remoting scenario but problematic

    Hi,

    I implemented this simple scenario containing 3 assemblies:

    - TL (Transport Layer) assembly that contains only one class 'Class1':

    public class Class1 : MarshalByRefObject { public int...
  18. Replies
    3
    Views
    6,111

    Re: Custom font for label

    I don`t think so. In my opinion MSDN also states that this is not true: http://msdn.microsoft.com/en-us/library/ms753303.aspx .
  19. Replies
    3
    Views
    6,111

    Custom font for label

    I would like to display some label in custom font for which I have *.ttf file. So I added this file to solution to 'Resources' folder with build action set as a resource. Font`s name is Katana. Then...
  20. Replies
    0
    Views
    3,690

    UI Commands details

    MSDN says that one can create a custom command in 2 ways: either by declaring a class that implements ICommand or by "using" RoutedCommand or RouterUICommand classes (that derive from Command).
    ...
  21. Replies
    1
    Views
    2,180

    WindowsMediaPlayer framerate

    Is it possible to modify framerate of a song currently being played? I mean, I would like to play a song with a slower or faster tempo. How could I accomplish this?

    Thank you for help in advance.
  22. Replies
    3
    Views
    8,016

    Re: Accessing C# things from XAML

    So declaring 'list' in XAMl in Resources is the only solution to my problem?

    Supposing that I would use such solution - when such 'list' is being created? In other words, when at soonest could I...
  23. Replies
    3
    Views
    8,016

    Accessing C# things from XAML

    I made a simple Window object that declared a simple list in C# code:


    List<int> list = new List<int>();

    public Window1()
    {
    InitializeComponent();...
  24. Replies
    5
    Views
    7,222

    Re: property value inheritance

    That`s ok, but why it is not possible with Label while it is possible with TextBlock?
  25. Replies
    0
    Views
    4,015

    GridSplitter simple scenario

    Hi,

    I defined 3 columns, two of them being tied up. I defined also a GridSplitter. But in the following scenario user is not able to move splitter to any direction. Why it is not possible?
    ...
Results 1 to 25 of 345
Page 1 of 14 1 2 3 4





Click Here to Expand Forum to Full Width

Featured