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

Software Development Network >> Vittorio Bertocci's Q&A profile

Vittorio Bertocci

Member List

H.Th. van der Steen
wgkwvl
elvisrs
Malcatrazz
Jimmy_Sanu
Jordon Kraft
Rick Winter
Mikkel Haugstrup
kebo
Jemue
/\gurra\/
Chico
JohnEnigma
hungfut
Henrik Berlin
Jmelgaard
Perry G
hackinfool
redfox
Kofi J.
Only Title

Vittorio Bertocci's Q&A profile

  • Visual C++ Microsoft Visual C++ Toolkit 2003

    I have buid *.c very well. But i have problem, I want export result(error, warnning or result) to text file. Can i do it If it can not, Do you have other resolution Please answer me soon, so i need it. Thanks my email : chonhoi2304@yahoo.com One way is to compile through the command line and redirect the output to a file: e.g.: cl sample.c > a.txt Thanks, Ayman shoukry VC++ Team ...Show All

  • SQL Server Prevmember versus Lag(1)

    My brain hurts again... I have a cube with Time Intelligence, and I'm trying to make a very simple function: Percentage Change (current month vs. prior month). To determine this, I compare ([Time].[Month]. Lag (1),[Measures].[ACTV QTY]) and ([Time].[Month]. CurrentMember ,[Measures].[ACTV QTY]) Seems pretty simple, right Except that Lag(1) keeps giving me the NEXT month instead of the prior month! So, I tried Lag(-1), which is contrary to the documentation of course, but it still gave me the next month!! Really weird! Then, for kicks, I tried replacing the Lag expression with the following: ([Time].[Month]. ...Show All

  • Software Development for Windows Vista recommend way to do IPC between app and service

    Hi guys, until now I've used (unnamed) Pipes to communicate between apps and services. For that to work I used OpenProcess(serviceProcessHandle, PROCESS_DUP_HANDLE), so that I can duplicate the pipe handle from the service to the app. This still works in Vista with UAP turned off - even from a guest account. But as soon as I turn UAP on, OpenProcess fails with "access denied" - even in elevated mode. I guess that's intended So since my old IPC method doesn't work now, anymore, I'd like to know which IPC method Microsoft now recommends to be used for communication between apps and services. Thanks! ...Show All

  • Visual Basic Odd Error

    OK, I have read a post on this before, and I have tried turning off the signing (click one manifest & assembly) But that didn't helped, I am currently getting this error: There is no editor available for 'C:\<path to .vb file>' Please make sure the application for the file type (.vb) is installed. Could someone please explain to me how to fix this error I am currently using Visual Studio 2005 Team Suite. Looks like the VB extension didn't get registered correctly. Can you try to repair the VS install   ...Show All

  • Windows Forms Immediate window only lists first 100 properties

    I would like to view the entire member list for a DataGrid at run time and copy that list.  Quick watch is no good to copy and the immediate window stops at 100 properties.  How do I see ALL the properties in the immediate window I can't see any reason why QuickWatch is no good since I can copy all the properties  ...Show All

  • Windows Forms Terranium Error

    I just downloaded terranium and installed it, but when I try to launch it I get this error: "Registered JIT debugger is not avaliable. An attempt to launch a JIT debugger with the following command resulted in an error code of 0x2 (2). Please check computer settings. cordbg.exe !a 0xd28" ...Show All

  • Windows Forms passing a class as an argument

    Hi I wish to pass a class as an argument so I can search a collection and count the number of instances of that type, but I am unsure of the correct way todo this. Curremtly i have this. public Function CountType(aType As Type, col As Collection) As Integer dim intCount  = 0 for each aObject As Object in col            ...Show All

  • Visual Studio 2008 (Pre-release) WinFx self hosted service running over http.

    I have a winfx self hosted service running over http. [OperationContract(Name = "Test")] bool Test(); 1.) With asmx webservices requests I can read the http header values about where the request is coming from. ip address, mac address, etc, using Context.Request.ServerVariables LOGON_USER REMOTE_HOST REMOTE_ADDR LOCAL_ADDR HTTP_REFERER HTTPS 2.) I also could tell if a client request was abandoned or timedout before the server responded. Context.Request abandoned How do I get to this info with a winfx ServiceModel/Contract request I tried: System.ServiceModel.Channels.MessageHeaders mh = OperationContext.Current.RequestCon ...Show All

  • Visual Studio Team System Visual Studio 2005 Team Suite Release on MSDN Subscriber Downloads (Universal)

    Hello everybody, Today Visual Studio 2005 Professional was released on MSDN Subscriber Downloads. We were unable to find the Team Suite Release. Any help Best regards Ralf Rottmann Word on the newsgroups is that your transition options are limited by your partner level. I've heard variously that - Gold partners get Team Developer, no role choice, no upgrade - Standard partners get Professional only, no Team System at all - Gold partners with a competency (possibly only ISV) get Team Suite - Standard partners with a competency (possibly only ISV) get Team Developer If you ask me, this is unacceptable s ...Show All

  • SQL Server Remote execution of package via dtexec and "Access Denied"

    I am finishing a port of a project that was done with RS2000/AS2000/DTS2000. The cube process is triggered remotely by a Korn Shell script from Services for Unix that runs a DTS package: dtsrun.exe /S "$ANALYSIS_SERVICES_HOST" /U "$ANALYSIS_SERVICES_USER" /P "$ANALYSIS_SERVICES_PASSWORD" /N "$PACKAGE_NAME" I have finished porting the AS and RS parts to their 2005 equivalents and now I am trying to get the cube processing converted. I have built a SSIS package that processes the cube and I have deployed it to the SQL Server in MSDB. When I am logged on to the SQL Server box directly, I can execut ...Show All

  • Smart Device Development Help using a videocamera in a pocket pc with WM2003

    I have read a lot about it but I don't have aby clear idea. I'm new with pocket pc and with windows mobile so I'm a little bit lost. I am developing (in C language with Visual Studio) an application that reads 'in live' the video streams of an iPAQ and use that streams to gather some info to display in the screen. In order to make that possible I have to access my camera to obtain those streams. I have read about using Directshow but I think that it doesn't works in WM2003 (which runs in the iPAQ). I also read about some APIs like this one : http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcem... ...Show All

  • Visual FoxPro deployment, building exe problem

    OK, this is the third round. I still cannot run an exec file. I cannot build it properly. When I issue (in the Command Window) BUILD EXE the intellisense prompt appears with my app name. So, I accept the rest of the clause as default. Until today I could generate .exe with no problem but had problem getting it started. Today finally for reason I cannot explain an error appeared during BUILD: Unable to find Unknown ARR . Just as simple as that. No further explanations forthcoming. There are three choices aside from " Cancel :" " Locate ," " Ignore " and " Ignore All ." If I cli ...Show All

  • Visual Basic Help Me please

    Hello guys, well i have some problems whit the IIS, first I installed the Windows 2003 server then the IIS and finally I downloaded de express editon of the Web Developer and isntall this. When I put www.localhost in the browser internet explorer, the browser show me a message that I attached at this mail. Another problem that I have, I was devloped a simple application in de web developer express edition beta 2, about webparts to understand this concep, I drag mi webpart manager then the webpartzone and finally a webparts, one of these webparts was a gridview that was created automatically when I drag a table from de Server Explorer, I Buil ...Show All

  • Visual C# Deleting objects

    I'm using a treeview and it points to a Employee class so I can display info about the employee selected.  Here are some code snips. Classes: public interface AbstractEmployee public class Employee : AbstractEmployee class EmpNode : TreeNode {    private AbstractEmployee _emp;    public EmpNode( AbstractEmployee aemp)       : base (emp.getName())   {           _emp = aemp;     }    public AbstractEmployee getEmployee(){        return ...Show All

  • Smart Device Development Email through GPRS

    Hi, i am doing an application on HP iPAQ and trying to send an email through GPRS When i compile my code and run the exe file from my pc, the email is sent and everything works ok, but when i try to deploy my application on the iPAQ the following error is displayed: An unhandled exception of type 'System.TypeLoadException' occurred in myApp.exe Additional information: Could not load type System.Security.IStackWalk from assembly mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=969DB8053D3322AC When i copy the exe file on the iPAQ and run the exe from the iPAQ with the same code the following error is then displayed: This ...Show All

©2008 Software Development Network