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

Software Development Network >> Federico Provera's Q&A profile

Federico Provera

Member List

wolka
Madhukar Bhalerao
askario
westlakechen
CleverHans
Öz.Net
Rogerio Mauri
neilchan
justicelin
dsandor
mark2741
Daniel Schloser
EJP001
pfpgroup
sian
plwatson
Pluey
rronny
ihsan yaprak
Chiajen Wu
Only Title

Federico Provera's Q&A profile

  • Visual Studio Overwriting an Item?

    Hello, I've written 2 custom tasks, one reading a file into a single string and one manipulating this string (replacing things). The file which is to be read is a sql-script-file and all "Go"'s will be removed. <ReadFile Filename="C:\test.sql"> <Output TaskParameter="Content" ItemName="FileContent" /> </ReadFile> <RegexReplace Text="@(FileContent)" RegEx="\bGO\b" Replacement=" " SingleLine="true" IgnoreCase="true"> <Output TaskParameter="Result" ItemName="FileContent" ...Show All

  • Visual Studio Express Editions Need Help

    hi, i know it might seems silly and even i don't expect answer but anyway since Dec 2005 i starting to learn programming with .net i have learned lots of stuff but every thing i try to learn will be like i open a door for hell, every thing even small controls have tons of properties and methods and lots of stuff you need to learn , i know its natural thing to happend when you start to learn new things, and i know i'll not be able to memorize the .net framework 388000 command(method, property ... etc) 2 months and half now i keep reading like dog and have feeling that the way still too long to walk , but realy i feel i overloading my br ...Show All

  • Visual Basic Convert the setup screen language.

    Normally when we packaged an application in VS .Net 2003, the setup screen language is defaulted to English. I need to convert the language from English to Chinese, anyone know how to do it ...Show All

  • Visual Studio Team System Code coverage / signed assemblies / unit tests fail

    Hi, I'm using VS 2005 RC1 and having problems with a unit testing/code coverage/signed assembly combo meal. I have unit tests that succeed against the assemblies without code coverage turned on. The assemblies are all signed with a common key file. When I turn on code coverage all my unit tests fail with a: "Strong name verification failed for the instrumented assembly 'Business.Entity.Assets, Version=1.0.0.0, Culture=neutral, PublicKeyToken=522bbccfa70f591f'. Please ensure that the right key file for re-signing after instrumentation is specified in the test run configuration." I've set the re-signing key file in the localtest ...Show All

  • Visual C++ How do you start it up????

    #include "stdafx.h" #include <stdio.h> int main() {  printf("hello world");  return 0; } okay i got this written in Visual Studio C++ Express Edition Beta2. How do i start it up please tell me the steps i need to do. Thank You i never wanted to fight with people online but u (Mr. Brian Kramer) made me very mad. how do u know i know everything eh You dn't knw anything about me! You think i'm testing others how much they know wow u sure something. Is there wrong with a 14 yr old kid that lives in japan to question others in MSDN If u think this is a lame question for others why don't you look in the book store in japan ...Show All

  • .NET Development Are there any RSS classes in .net 1 or 2?

    I have a asp.net app using the 1.1 framework but soon to move to the 2.0 framework. And it is basically a job management system. Could someone please give me some help and knowledge as to how to create an RSS feed and what I need to do to publish a RSS feed Thanks for any help In its simplest form and RSS feed is nothing more than an XML document, or an XML file that has been saved in a publicly visible place, e.g. on a web server. Once saved, you can then announce its existence to users who might want to "consume" your published file (or feed). So yes, if you are creating the XML yourself, a ...Show All

  • Visual C++ error C2061 when compilling

    hey guys, i have this weird problem. i have a native dll i did. i create a struct in it, and declare a pointer and use it in a function member in a class. i compile this native dll with absolutely no problem at all. i come to wrap this native dll in a managed dll. i include the header file of the native and the lib file, and compile without using the code from native dll. and i get a "error C2061: syntax error : identifier 'NMaterial'" in the native dll. why is that here is my native dll code [code] // the structure #ifndef NMATERIAL_DEFINED typedef struct NMaterial: public D3DMATERIAL9 {  public:      NMateria ...Show All

  • SQL Server Multi-Level Grouping in RS2000

    I have various reports that I need to group and subtotal at more than one level. Does RS2000 allow multiple groups I am using visual studio which seems to accept multiple grouping, however reports do not include the second group. Also, if not supported by RS2000, is it supported in '05 If you are asking about nested groups, yes, that's supported. You can take a look at this page for more info http://msdn2.microsoft.com/en-us/library/ms155903.aspx ...Show All

  • SQL Server How to tell version difference between 2000 Enterprise vs. Standard

    I have kind of an urgent need here. I need to know if there is a dll file or registry key or something of that nature that I can query on to find out if my SQL 2000 installations are Enterprise or Standard. I understand I can do this using query analyser, but that will not work with my reporting tool (this is for reporting numbers of SQL installations in our very large enterprise for Microsoft license compliance). Thanks for any guidance!! Cheryl Marland cheryl.marland@va.gov Dan, Is this info more readily available in SQL 2005 ...Show All

  • SQL Server Row and Cell Security

      I am trying to implement row-security in SQL 2005 but i make a query to make a view CREATE VIEW vwVisibleLabels AS SELECT     ID, Label.ToString() FROM       tblUniqueLabel WITH (NOLOCK) WHERE ID IN --Classification (SELECT ID   FROM tblUniqueLabelMarking WITH (NOLOCK)    WHERE CategoryID = 1 AND IS_MEMBER(MarkingRoleName) = 1) AND --Compartments 1 = ALL(SELECT     IS_MEMBER(MarkingRoleName) FROM tblUniqueLabelMarking  WHERE     CategoryID = 2 AND UniqueLabelID = tblUniqueLabel.ID) GO And the error is Msg 208, Leve ...Show All

  • Visual Studio Express Editions Too long to compile?

    Hi, i'm having a freak problem. When i'm trying to compile the code, Visual says: "error compiling, sub rutine too long. I know it's long, but... Can someone tell me if this is normal How can I compile a large sub rutine Thanks Well, it didnt work, but thank you anyway. I ll try to use a C code in a C compiler. The simple is te best :D. Tanks and good luck ...Show All

  • SQL Server Running SQL JOB for SQL Express >>>>>

    I need to run a SQL script as a job for SQL Express. How can I do this Are there any programs that will allow me to do this The solution for running schedule tasks in SQL Express is to use a Task in the Windows Task Scheduler to call SQLCmd and run the script you want to run. You can set schedules, etc. using Windows Tasks. SQL Express does not include the SQL Agent, which is the tool higher level Editions of SQL use to schedule jobs. Regards, Mike Wachal SQL Express team ---- Please mark your thread as Answered when you get your solution. ...Show All

  • .NET Development Set generic collection? (Java HashSet)

    I am looking for a collection that provides the basic java HashSet collection It seems that the System.Collections.Generic does not provide such elementary collection. Is there a reason to omit such classes in .Net 2.0 Thanks in advance, Joannes Basically just allocation of resources -- if you would like to request a feature, please go ahead and do that on the MSDN Product Feedback Center  so that we can keep track of it for our next release. -Shawn ...Show All

  • Visual Studio 2008 (Pre-release) FaultException

    In running the ErrorHandling sample in the sdk it always returns UnknownFaultExceptions never typed FaultException<xxx> from the Factorial calls. Also the exception handling in WCF is quite frustrating. If I call one service which in turn calls another service which throws some exception it never gets to my first service. I implement IErrorHandler on both services and the HandleError gets called in the 2nd service, but the exception never comes across. I end up getting a timeout exception in the first service. When a winform app calls into a service that fails we get System.Net socket exceptions back not typed Faultexceptio ...Show All

  • Visual Studio Express Editions Installing Express editions alongside VB6

    Hi all, I have downloaded most of the Visual Studio Express editions, and would like to install them. However, I also have Visual Basic 6 and Visual C++ 6 Professional Editions installed on my computer and would like to run the new versions alongside the old ones. It is particularly important that VB6 continue to work. Am I likely to have any problems Thanks, Daniel Baum hi, sure you can use, i have vb6, vs 2003, and express installed on the same pc. you can even use them all at the same time. AB ...Show All

©2008 Software Development Network