Software Development Network Logo
  • Visual Basic
  • Windows Live
  • Microsoft ISV
  • .NET Development
  • Windows Vista
  • SQL Server
  • VS Express Editions
  • VS Team System
  • Architecture
  • Game Technologies
  • Windows Forms
  • Visual FoxPro
  • Visual C++
  • Visual C#
  • Smart Device

Software Development Network >> eugen_safronov's Q&A profile

eugen_safronov

Member List

Takalth
Zefir
hypersw
Calin Iaru
vhhughes
Anjum Ali
taboryee
M. Hassan Raza
sadia
Jordi Serres
Omer TR
AliAhmadi
Dae Yeon Jo
Lord Kaos
whlabus
Myoest1
Richard Arthur
Rainman86
Felipe Domingues
Angal
Only Title

eugen_safronov's Q&A profile

  • Visual Studio new behavior of string Replace function in VS2005

    Hi all, We have a function that makes use of the string replace function in a CR formula.   In previous versions of .NET (both VS2003, and earlier) this worked OK.  Now running in VS2005, the behavior of this function is different. Here is a sample of the code:     StringVar sTemp := Replace ({Notices.ReminderNotice}, "@Name", {@DriverName }, 1, -1, 1 );     sTemp := Replace (sTemp, "@Type", {SourceTable.MaintItemName}, 1, -1, 1 );     sTemp := Replace (sTemp, "@Date", CStr ({SourceTable.MaintItemDate}), 1, -1, 1 );     sTemp In VS2005, the string repla ...Show All

  • Software Development for Windows Vista Web services and runtime compilation

    I have a couple of questions about exposing the web service activities in a runtime-compiled worklfow: 1. If my .xoml workflow definition includes a couple of WebServiceReceive and WebServiceResponse activities and I compile it in runtime with a WorkflowCompiler object, are the appropriate web services and methods going to be generated As I understand, in VS.NET the web service is generated when the project is being compiled. 2. If a composite custom activity is composed of a WebServiceReceive and WebServiceResponse methods and I use it in some workflow, is the web service going to be generated when the workflow is compiled What ...Show All

  • Visual C++ mkDir

    Is there a way to use _tmkdir to create an entire directory given a path For example, if I give C:\AA\BB\CC , then assuming AA, BB and CC do not exist, the function should create all of them. Thanks, KarthikR From the help at http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclib/html/_crt__mkdir.2c_._wmkdir.asp , it looks like _tmkdir can only create one directory at a time. What you can do is do your own algorithm for such creation of 3 directories. Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server ordinal position

    i have two tables with the same column names. is there a SP that i can use to order the columns exactly same way in both the tables. Thanks In general, you should not be ascribing an order to the columns in a table. Simply select the columns in the desired order. Having said that, there are columns in the syscolumns table that can provide an ordering. Both colid and colorder should work and appear to be equal in general. ...Show All

  • Visual C# Reading and Modifying XML using XmlDocument

    hi.. i have already prepared XML file which i want to modify for some nodes.By using XMLDocument i want to that... can anyone has some solution for this.. Thanks You use the SelectSingleNode method to retrieve the node to be modified using an XPath query. Or you can just want the ChildNodes collection. Regardless, you use one of these techniques to retrieve the node that you want to modify. Then you change the InnerText property. Bruce Johnson [C# MVP] http://www.objectsharp.com/blogs/bruce ...Show All

  • Windows Forms Permissions requirements documented?

    Is there some location where the permission/security requirements of all classes and methods in the framework are documented   I was hoping that the 1.1 docs would have added a section to each class/method stating if it required security permissions, but it hasn't.  Currently I'm discovering security problems by launching my embedded controls in the internet zone and watching  ...Show All

  • Smart Device Development Designer Preview

    Hi, how can I obtain the information, the current instance of a Control class is running in the Designer preview I didn't found a member that supplies me that information in the Compact Framework. Thank you! Yes, it's supported in CF 2.0. See the code below. bool designTime = false; if (this.Site != null) { designTime = this.Site.DesignMode; } // If "designTime" is true at this point // then you're in the designer. ...Show All

  • Visual C++ Beta2 problems

    Hi, 1. I have installed Beta2 this morning, but when i try to compile my program. I see the following text.. No error presented ========== Rebuild All: 0 succeeded, 0 failed, 3 skipped ========== Why is VS skipping the projects No error is given. When i try to view the properties of a project i get the next error --------------------------- Microsoft Visual Studio --------------------------- The operation could not be completed. Niet nader omschreven fout --------------------------- OK --------------------------- Using: Windows XP Professional, x64 Edition RTM Microsoft Visual Studio 2005 Beta2 Did have a Beta1 Referesh Team System installed ...Show All

  • Windows Forms flat combo box

    I Know This is probably a stupid question but i want to have a flat combobox like the textbox can be flat and i just cant find how to do it so if anyone has this simple answer i will thank him very much. lilush http://www.developerfusion.com/show/2562/ Check the above link.  I think that it is not the simple answer you want but&n ...Show All

  • Visual Studio VS2003 +IE7 Beta2 crashes...

    With IE7 Beta2 installed on my machine, the help system crashes VS2003 frequently when the internal help option is used. DocExplorer crashes sometimes when used as an external viewer. Also, some entries lose all formatting and display as black text on a white background. Is anyone else having these problems I haven't tested this with VS2005. I could uninstall the IE7 beta but I'm hoping there is some way to force DocExplorer to use a different version of the WebBrowser control. Is there such a customization Thanks, Jeremy Boschen While I have not seen any crashes, I have definitely seen all the entr ...Show All

  • Visual C++ Serial number on usb flash drive.

    I am unable to get the serial number on usb flash drives. It always returns 0 indicating it is not there. I am using DeviceIoControl with IOCTL_GET_DEVICE_DESCRIPTOR to get the venderID, productID, and ProductRevision, but the SerialNumber is always 0. Has anyone run into a similar problem As this question is not specific to Visual C++ you would be better off asking it in one of the Win32 support newsgroups. Maybe: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.development.device.drivers&lang=en&cr=US ...Show All

  • .NET Development Deserialize with assembly loaded at runtime gives Unable to find assembly (SerializationException)

    Hello, I'm rather new to .NET and serialization and so on. I have a program that loads a dll assembly (using LoadFrom) at runtime into the current AppDomain. All this loading works perfectly and when I run trough the assemblies of the AppDomain using System.AppDomain.CurrentDomain.GetAssemblies(); I can see the assembly loaded from the dll. Then I serialize an object of a class in the dll's assembly. I have another application which loads the dll assembly in the same way. I then want to deserialize the previously serialized object and I get a SerializationException saying it couldn't find the assembly. The assembly it doesn't find is the sam ...Show All

  • SQL Server Can I create subscriptions programatically?

    Is that possible if so please point me in the right direction.    I was looking at the example on the MSDN, and on the link provided above, I was trying to reference system.web.services.protols, but it was not found. I am trying to set up a dynamic subscription application so that users can run a certain report with certain parameters on a monthly basis, or off peak hours, and have the report emailed/placed on a network drive.  It seems however, I am missing a key point to getting this application created, since I am unable to reference services.protocols... Any help plz ...Show All

  • Software Development for Windows Vista Installing Windows Workflow Foundation Beta 1

    There have been several threads with questions about installing Windows Workflow Foundation Beta 1.  I'm hoping to summarize the installation instructions for anyone else that might be having trouble.   These instructions are also available on the WindowsWorkflow.net community site here .  James Conard Architect Evangelist - Windows Workflow Foundation http://www.WindowsWorkflow.net http://blogs.msdn.com/jamescon -------------- Windows Workflow Foundation Beta 1 is compatible with the .NET Framework and Visual Studio 2005 Beta 2 (builds 50215.44 & 50215.45). Windows Workflow Foundation Beta 1 is not co ...Show All

  • SQL Server Restore Analysis Backup to new DAtabase Name

    I have backed up an AS database. Now I want to restore it to a new name so I have two copies to play with.  How do I do this Thanks, Chris How do you get around the problem of credentials of multiple domains. Dev machine on one domain, server on anther (via VPN at client). I know I could problably copy all the files to the server and change the configs. Anybody researched this Thanks ...Show All

©2008 Software Development Network