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

Software Development Network >> Vic-Viper's Q&A profile

Vic-Viper

Member List

SRAitken
sureddd
GeoffW
KNOREUS
POSMaster
Roger2007
Rashmiaa
Patrick Baker - MSFT
smitprabhu
lvn
Krispi
Riiii
PaulDaly
Pikios
Robin Lundgren
CARABAS
John Kimball
OneBuckFilms
bLad3
Jonathan Sealby
Only Title

Vic-Viper's Q&A profile

  • Visual Studio Tools for Office Transferring a DataSet into a VSTO Workbook.

    Before I dive into my question, let me first start by saying I know what I'm trying to do is difficult at best and maybe impossible, but I figured I'd go ahead and ask and see if anyone has found a solution because I know quite a few others are running into this limitation of VSTO. I have an application that spawns multiple windows with spreadsheets in them. The application loads some data into a DataSet and then displays the resulting data on the spreadsheet for user editing. After the user is finished editing, s/he is able to save the data back to the database. Unfortunately, I am having to use my own ListObject at the moment. What I wo ...Show All

  • Software Development for Windows Vista SqlTrackingService - Events not tracked

    Hi, I'm usign the SqlTrackingService, but I don't get any events to be tracked until the workflow is completed. I've tried creating my own tracking profile( see below), but the result is the same, exept when using my own tracking profile, I don't get any event information at all. static void CreateAndInsertTrackingProfile() { TrackingProfile profile = new TrackingProfile (); ActivityTrackPoint trackPoint = new ActivityTrackPoint (); ActivityTrackingLocation location = new ActivityTrackingLocation ( typeof ( Activity )); location.MatchDerivedTypes = true ; locatio ...Show All

  • Visual Studio Team System Problems after reinstalling SharePoint

    I have to reinstall the WSS after a problem with a Language Pack Service Pack. After that, Foundation couldn't create new team projects anymore. I've already tried the Foundation's setup repair option, but even so, I'm getting this error (see below) during attempts to create new Projects. How do I correct that without reinstalling everything and losing my current projects Thks, Max Andrade 11/9/2005 4:30:38 PM | Module: Engine | Thread: 8 | Running Task "SharePointPortal" from Group "Portal" ---begin Exception entry--- Time: 11/9/2005 4:30:39 PM Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed ...Show All

  • SQL Server How can i get the first day of the month and the last day of the month?

    Is there a function that do id or i need to calculate it by myself Hi, there is no built in one, but you can use these ones here which is just wrote for you: CREATE FUNCTION FirstDayofMonth ( @InputDate DATETIME ) RETURNS DateTime AS BEGIN RETURN ( SELECT LEFT( CONVERT ( VARCHAR ( 10 ), @Inputdate , 112 ), 6 ) + '01' ) END GO SELECT dbo . FirstdayofMonth ( GETDATE ()) CREATE FUNCTION LastDayofMonth ( @InputDate DATETIME ) RETURNS DateTime AS BEGIN RETURN ( SELECT DATEADD ( dd ,- 1 , DATEADD ( mm ,+ 1 ,LEFT( ...Show All

  • Visual Studio I do now have a minimal test case.

    I am trying to abort a commandline initiated build before it does any work. I have a OnBuildBegin handler that does some checking to see whether to actually build. None of my current approaches work reliably. Invoking Build.Cancel in the handler. As far as I can tell, commands are not availablewhen running in commandline mode. Is that correct, or am I missing something Using the HRESULT for the callback. As far as I can tell, that value is ignored. Hook into CommandEvents.BeforeExecute. I believe the same limitation will apply here as for invoking Build.Cancel. Commands seem to not be accessible (the build is not started via a command). ...Show All

  • Visual C# Convert string to date

    Hi, I have string in unknown format of the date. I need to convert it to DateTime. How can I do this Thank's Alexei Why do you have a unknown format, then you can never parse it to a DateTime object. Because you need to know what the month, date and year is. ...Show All

  • Visual Basic Isnumeric in vb2005 does not behave like it does in vb6.0

    looks like the Isnumeric in vb2005 does not behave like it does in vb6.0.. when i execute the following line: Isnumeric("&H - 23") i get this Run-time exception: System.ArgumentException - String cannot contain a minus sign if the base is not 10. is there other way i can check if the string can be converted to a number thanks cgraus.. Tryparse() can do the job, but im trying to check the validity of hex numbers.. looks like TryParse can only check numbers expressed in decimal (am i right ).. ...Show All

  • Visual Studio Express Editions Using INI Files

    Hello, is it possible to use INI-files to store settings etc for my programs If yes, then how do I get this to work Is it the same as with VB 6.0, or do I have to use another way (+ example if possible :p ). Any help would be apreciated. Grtz, Tom. look at those links: http://www.codeproject.com/dotnet/config.asp http://msdn.microsoft.com/msdnmag/issues/05/04/AdvancedBasics/ http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vboriIntroductionToApplicationSettingStorage.asp ralph ...Show All

  • .NET Development "Cross-session" thread

    Hi, is it possible to create a "cross-session" thread, which exists over several calls of a Web Service For example I want to start a Thread which increments a variable at breakfast every second and a few hours later I can use the variable for finding out, how many seconds the breakfast is past. Thanks! ...Show All

  • Visual C++ Help. show a dialog from IE toolbar

    I want to show a dialog from IE toolbar(DLL,ATL).My BHO and Dialog have been created in my project. how can i hook them together Please help, I am a green hand to VC/ATL/BHO. Thanks in advance.   Please use the win32 dev newsgroups at http://msdn.microsoft.com/newsgroups for such issues. See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=19445&SiteID=1 for the scope of these forums. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Architecture design issues in client-server system

    Hi, I design a soft real-time system that should handle different clients’ requests and activities (such as telephone calls, processing of different types of events occurring during the calls, inserting these calls into the Data Base). Thus my server has to provide the client with suitable interfaces allowing opening new session, new call, close the call, update the call etc. and, at the same time, the server has to send events that can be raised as result of changing in the calls status to these clients . Also the system should support some kind of “keep alive”. I am going to use Indigo as my infrastructure (duplex interface) ...Show All

  • Visual Studio Team System Is there a was to disable code analysis for an entire file?

    The VS 2005 generated files for datasets generate numerous warning messages under code analysis. Suppressing these messages individually is counter-productive, since the next time the files are generated by VS 2005 the suppression messages are lost. Is there a "global" way to suppress messages for individual files, similar to the ModuleSuppression.cs technique I put a suggestion up for this a few days ago as well: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=964e49c1-9e2c-4997-b93f-8ff40ac7149f ...Show All

  • Visual Studio RTM version - SQL Express failed

    Hi I ran the uninstall tool - everything went fine. Ran the VS setup, SQL Express did not install. From dd_vsinstall80.txt [09/30/05,10:15:04] Microsoft SQL Server 2005 Express Edition x86: CreateProcess launched with cmd linez:\vs\setup\..\wcu\sse\SQLEXPR32.EXE "z:\vs\setup\..\wcu\sse\SQLEXPR32.EXE" -q /norebootchk /qn reboot=ReallySuppress addlocal=all instancename=SQLEXPRESS SCCCHECKLEVEL=IncompatibleComponents:1 SQLAUTOSTART=1 ERRORREPORTING=2 /watsongenman=SQL .mft [09/30/05,10:15:38] Microsoft SQL Server 2005 Express Edition x86: z:\vs\setup\..\wcu\sse\SQLEXPR32.EXE exited with return value 70032 [09/30/05,10:15:38] InstallReturnValue ...Show All

  • Visual Studio Unistallation help required

    I am unable to complete the uninstall process of visual studio 2005 beta 2. can any of you give me some guidence to complete the process of the same. i have uninstalled all the products from my control panel other than the visual studio 2005 beta 2 english version. i used some of the utilities which i found in the same site to complete the process even though i am not able to complete the process. some one please guide me to complete this. Thank you. You can also try the updated clean up tool at: http://go.microsoft.com/fwlink/ LinkID=47598 ...Show All

  • Visual C# disabling and/or hiding Windows taskbar

    Could somebody post code that disables and/or hides Windows taskbar and enables it when I or user click on the button in Form. Goran I am not sure that above is real solution. If you want true Full Screen app, you need to request it from WinAPI. Detailed explanation is here: How to make Windows Form app truly Full Screen (and to hide Taskbar) in C# (based on: KB Article Q179363: How To Cover the Task Bar with a Window ) Most important piece of code is: public class WinApi { [DllImport(”user32.dll”, EntryPoint = “GetSystemMetrics”)] public static extern int GetSystemMetrics(int which); [D ...Show All

©2008 Software Development Network