Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

nelo_

@nelo_
About
Posts
9
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Passing A String
    N nelo_

    Simple problem. See if you can spot the difference: xmloutput.FileName = @"c\projects\text.xml"; xmloutput.FileName = @"c:\projects\text.xml"; In essence the path you specified is not what you had intended. You meant to specify an absolute path. The compiler didn't detect the drive (c:) and treats the whole thing as path relative to wherever the application is being run from. In your case the bin\Debug.

    C# csharp visual-studio debugging xml help

  • Calling a ASP.NET C# function from javascript
    N nelo_

    You could probably implement the ICallbackEventHandler interface. The MSDN sample is clear enough. I tried it successfully last week. I used to write a simple page that generated random numbers on the server. I had a loop in javascript that would retrieve the latest number and update a label on the page on the client side. Here's a link to the MSDN article I used as a guide: Implementing Client Callbacks Programmatically Without Postbacks in ASP.NET Web Pages[^]

    C# csharp javascript html asp-net database

  • Mixing Cpp and C# -- Calling Cpp-Class-Interface from C#
    N nelo_

    I don't think you can do that directly. You will have to write a C/C++ interface that will call the functions in the C++ classes. When you write your interface be careful to choose data types that will be easily marshalled by .NET.

    C# csharp c++ help tutorial

  • I have a question about invoke function in C++ dll, please help! [modified]
    N nelo_

    I can tell you that you'll have to re-define the struct on the .NET side for sure. The second parameter seems like an array of doubles. Is that so? That will map to System.Array.

    C# question csharp c++ data-structures help

  • constructors in VisualC#.NET
    N nelo_

    I see where you're coming from Pete but I think you're being a bit harsh... :-D Gone are the days when students would be in class, make some notes, read the handouts, read the recommended text books, look at API documentation, or even ask the tutor. Where would we all be without google and code project hey!? :-\

    C# csharp help

  • Database connection problem
    N nelo_

    Gareth is right. The error message gives you a clue. By default a SQL Server 2005 database only allows connections that originate from applications running on the same database server. You need to the change the Remote Connections settings in the SQL Server 2005 Surface Area Configuration. You'll see that the default is local connections only. You need to change to local and remote connections and pick one of the sub-options. Can we have a look at the connection string?

    C# help database design sysadmin data-structures

  • ASP.Net, Multithreading, and Response object
    N nelo_

    Well I think the first thing to do is to synchronize the output. I assume you some class that is controlling all the threads. This class should compile the results. Then your page can get the information through a web service you call client side. You can use the output to update your we b page. Or perhaps another option would be to implement the ICallbackEventHandler interface and have some client side code on a timer.

    modified on Friday, March 28, 2008 12:07 PM

    ASP.NET question csharp asp-net sql-server

  • Question about Smart Client
    N nelo_

    Hi, Are looking to build an application that will run primarily on a windows desktop? Do you want it accessible on a browser? What version of the .NET Framework/Visual Studio are you using?

    C# csharp visual-studio wpf com

  • question with internationalization
    N nelo_

    If you put the information in a configuration file it would mean you having a copy of the configuration file for each culture or finding a way to change the configuration setting as part of the installation of the application. Perhaps it is easier to add the culture specific email address as a string in a resource file.

    C# question csharp help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups