Software Development Network Logo
  • Visual C#
  • .NET Development
  • Microsoft ISV
  • Windows Vista
  • Smart Devicet
  • SQL Server
  • Visual Studio
  • SharePoint Products
  • Visual Basic
  • IE Development
  • Visual FoxPro
  • Visual C++
  • Audio and Video
  • Windows Forms
  • VS Team System

Software Development Network >> Leonid Niraev's Q&A profile

Leonid Niraev

Member List

Yu Ro
mac85
Daniel Gary
shax
JoeHand
danadanny
Sergio_CL
DKB
lahaha
Kim Carlsen
Shrek.NET
zoomer
Selva Kumar.T.P
langev
Expressman
Jkumar
FlashyPants
DoanHaNam
byronfromwesleyan
KrazyMGA
Only Title

Leonid Niraev's Q&A profile

  • Visual Studio Team System URL Encoding of Location property in FxCop Properties window

    When I view a warning in the properties window in FxCop it shows the location as an URI like file:///c:/temp/foo.cs This works nicely for directory/filenames without spaces or encodeable characters. Unfortunately the project I'm working on is in a directory with 2 spaces in its name and therefore doesn't work correctly (a file not found error) I've noticed that in the details window (double clicking on a warning) it shows the correct (unencoded) value for the location. Is this likely to change in a future version or will this remain the same ...Show All

  • Windows Live Developer Forums Web Server Extensions

    Hi, My client has WSE 2.0 SP3 & .NET 1.1 SP1 installed on his webserver (Production setup). Now, he wants to know how do I manage the above combination in his webserver, ie how I can ensure the reliability, accessiblity, security and performance (RASP) for the same. Is there any material available on this. I would like to know, 1. What are the best practices 2. What kind of skills should my resources be trained on 3.What kind of tasks one should carry out with the respect to incident , change & problems etc. 4.What are the troubleshooting practices - Typical procedures etc. 5.What are the housekeeping needs - backup 6.Where in Microsoft site will I find typical KB info 7. Any other information regardi ...Show All

  • Visual Basic Cursor flickers and IDE Not responding ....

    I'm using VB 2005 and having a issue while in design mode in the IDE. I click on a control to change some of the properties, like the Name or Text and my cursor starts to flicker like crazy. Mine flickers SizeAll cursor type, I've heard others flicker on hourglass. Anyway it flickers and the IDE goes into a Not responding mode for about 30-45 secs. If only happened once then it wouldn't be that bad, but as I'm layout a form it happens about every 2 minutes which is real drag. Anybody have any solutions Besides going back to VS 2003 Thanks ..... I often have this problem too. Overall, the windows forms designer performance is horrific in many cases. Takes ages to switch to form design view, enters som ...Show All

  • .NET Development Socket Connect/Disconnect

    Hello.  I have a specific question I hope someone in the forum can answer. I am writing an application that will collect data from several instruments over tcp.  I am implementing this by assigning a socket to each instrument I want to connect to, and then establishing a connection to the instruments IP address (port 502, MODBUS communication protocol requires this port).  I have a form where a user can enter the IP address of the instrument and then click a button beside it to test if the application is able to connect to the specified instrument.  The button procedure Connects to the socket and then Shuts it down and closes it.  I have no problems connecting to it initially, but if I try to test the connection ...Show All

  • SharePoint Products and Technologies Opening WSS site in VS 2005

    Hi, I haven't got Frontpage 2003 neither sharepoint designer, therefore I am trying to use VS 2005 to edit WSS pages. In the "Open Web Site" dialogue box, under the "Web site Location", I typed "http://myServer/default.aspx " whereby "http://myServer/default.aspx " is the address to access my WSS site. Upon clikcing on "Open". I am getting eror message saying: unable to open the web " http://myServer/default.aspx ". An error occured accessing your windows sharepoint services site files. Authors - if authoring a web server, please contact webmaster for this server's web site. Webmasters - please see the server's application event log for more details and the events l ...Show All

  • Visual Studio Express Editions Saving text

    I'm trying to save text from a Rich Textbox to an external .txt file, but I don't know how, can somebody help me I'm just a starter on Visual Basic Express, so I don't know what do fill in, where can I fill in the file directory, and where can I fill in wich value to save ...Show All

  • SQL Server How to migrate from server to server.

    Hi, I could do migration from one database to another on the same server.But not sure how to do when it comes to server to server.Can anyone explain this Iam sending data from one database on one server to another database on another server..... In ssis when i try to put connection manager and refresh, the source server is not shown....what should i do pls help! Regards, pls help! Regards, sg. Hi jamie, iam connecting to the source database using a different server name.iam using OLEBD provider for Sqlserver.IAm adding different connection manager only. but it is giving the following error Test connection failed because of an error in initializing provider.[DBN ...Show All

  • Visual Basic VB Auto generation program

    I want to run a vb exe file everyday at a particular time. How to set the time function. I think we have to write the code in registry file. But i am not confirm about it. Please help me to do this. Thanks Sasikala hi christopher fleming, i have used the scheduled task to set the repeat time for the file. But i have received the error as " The new task has been created, but may not run because the account information could not be set. The specific error is : 0x80070005 : Access is denied. " Please let me know what to do now. It is not working. thanks ...Show All

  • SQL Server Not Printing from the Preview Window in the IDE

    Does anyone else have an issue printing the first time from the preview window in the IDE I understand that they are fixing the issue with having to hit the print button twice, but even after that, the report appears to print, but never makes it to the printer. Thanks! BobP For what it is worth, we have the same problem too. We've installed SP1, but not SP2. Karl ...Show All

  • Visual Studio 2008 (Pre-release) Using channel stack

    Hello! I am evaluating Windows Communication Foundation framework to discover, if it can be used to develop web service intermediary. I am trying to use a channel stack alone (without instantiating a service host, associating a contract, etc) for receiving and processing incoming messages. Here is an example of code which is running on the service side: ---CUT HERE using System; using System.Collections.Generic; using System.Text; using System.ServiceModel.Channels; using System.ServiceModel.Description; namespace WCFServer { class Program { static void Main(string[] args) { try { Uri address = new Uri("http://testserver:8080/EchoService"); CustomBinding binding ...Show All

  • .NET Development using sql provider for connectionstring with dsn

    I want's to use following connection string "dsn=MyDsn;uid=MyUser;pwd=MyPassword" Can some how I use it with sqlconnection I want's to get rid of odbconnection e.t.c What will be the connection string for sql provider for above dsn information. If anybody can explain the please help me You connection string for SqlConnection would look like "Persist Security Info=False;Initial Catalog=MyDatabaseName;server=MyServerName;Password=MyPassword;User ID=MyUser" Only missing pieces here are database name and server name. You could find them in your DSN configuration, if you do not know them ...Show All

  • Visual C# Asynchronous call and Asyncstate

    Hi! How to work with the Asyncstate in the target method That is, I call a BeginInvoke with a state object ... MyDelegateObject DO = new MyDelegateObject(MyTargetMethod); DO.BeginInvoke(MyCallBack,MyStateObject); Target method works... MyTargetMethod() { // Where is MyStateObject // Code to complete work ... } And AsyncCallback is called when target method finish... MyCallBack(IAsyncResult ar) {  // ar.AsyncState <-- here is my StateObject, but is the equal that when i call BeginInvoke ... } But... I want for example, that the result of the target method modify the state object and thus have a result, or when i call to EndInvoke  IAsyncResult.Asyncstate have the ...Show All

  • Visual C++ strtol strangeness?

    I'm probably missing something very simple, perhaps I'm tired. Why is it that the line of code "DWORD DWordValue = 0xF988FA1F; " places the proper hex value into the DWordValue variable (4186503711, 0xF988FA1F), but this line of code "DWordValue = strtol("0xF988FA1F", NULL, 16);" places the unanticipated value (2147483647, 0x7FFFFFFF) Don't Long and DWORD size to 4 bytes What am I doing wrong I am testing this because I need to read hex strings in from a file, and then write them as REG_DWORDs to registry sub-key named values. (Any easy ways to do that would also be useful). I have been avoiding that ever since I ported this app to VS2005! This app is HUGE and unfortuna ...Show All

  • SQL Server Full Cached Lookup with Parameters

    Parameterized queries are only allowed on partial or none cache style lookup transforms, not 'full' ones. Is there some "trick" to parameterizing a full cache lookup, or should the join simply be done at the source, obviating the need for a full cache lookup at all (other suggestion certainly welcome) More particularly, I'd like to use the lookup transform in a surrogate key pipeline. However, the dimension is large (900 million rows), so its would be useful to restrict the lookup transform's cache by a join to the source. For example: Source query is: select a,b,c from t where z=@filter (20,000 rows) Lookup transform query: select surrogate_key,business_key from dimension (900 M rows, not tenable) Ideal Lookup ...Show All

  • .NET Development Smtp Server Authorization

    I found out that i’m not only one who has this problem. It seems Credentials in SmtpClient not works for everybody. When i use HOST: mail.hotmail.com, RECIPIENT: someone@yahoo.de (host and recipient domain are different) and the SMTP server requires to authenticate sender, this code should help: Dim mySMTP As New Mail.SmtpClient( "smtpserver" , 25) mySMTP.DeliveryMethod = Mail.SmtpDeliveryMethod.Network mySMTP.UseDefaultCredentials = False mySMTP.Credentials = New NetworkCredential( "username" , "password" ) mySMTP.Send(myMessage) But is NOT working! Why I try more different host and recipient domains and each requires standard authorization (username, pass ...Show All

©2008 Software Development Network