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

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

DzheiZee

Member List

balasaravanan_v
MaggieChan
wangfang
drewdb
Thebitter
ACCOUNTINGONLINE.US
djchapin
Jonathan Jones
unsigned int
Louise S Bjerg
Sp1ice69
seewan
Driskell
Juan Carlos Trimiño
Brandon T Perry
borice
Irshad_ip
Scienter
Mukund R
Mark from NH
Only Title

DzheiZee's Q&A profile

  • Visual C++ msvcr80.dll Problem

    Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin Hi Martin, can you clarify on what you mean when you say, " Are you sure that WinDoctor is right ".... I know its installed correctly, up to date and functioning properly if that's what you meant. ...Show All

  • Visual Studio Errors when debugging right after using the wizard.

    Hey folks, I have 2 questions. First, after I use a wizard to create a Visual Studio Integration Package (I select the menu and tool window options), I try running the generated project, and when I try to run the window I get a window saying "Exception has been thrown by the target of the invocation extension." I tried doing this twice, and same behavior. What could be wrong Second, when I try debugging, BOTH extensions seem to be added to the test instance of Visual Studio. How do I clear this information I want to run an instance of Visual Studio with only the integration package I'm currently trying to test. I'm worried that if I try other things, I'm going to be cluttering my debug space. many thanks. tom ...Show All

  • Visual C# Installing MSI in remote machine using WMI

    Hi, Scope: I've developed an application which install a MSI package on remote machine. For this, i used WMI. This application was developed on .NET 2.0. Problem: I'm not able to install MSI. I met one of the following error. Details: Consider the following case: Machine A: The application is running. Machine B: where the MSI file (eg: TestAppSetup.MSI) is placed. Machine C: target machine on which i need to install TestAppSetup.MSI A, B & C - Running Win2003 Server with WMI Installer Provider. S.No Scenario Test Result Return Value 1 Running application in A. MSI file in B. [Accessing this in UNC file path format] Target ...Show All

  • Windows Forms Resource View Crashes Yet Again

    Editing resources has been a dangerous operation since the early '90s because the editor was prone to crashes. The resource editor in VS2005 has crashed on me dozens of times since I started using it 2 years ago. I was hoping that sp1 would make it more stable. But, no. It just crashed again, flushing half an hour of work down the toilet. Every click in the resource editor is potentially dangerous to your work. I'd like to rant more, but what's the point. It's a Microsoft product. You take what they dish out. <sigh> ...Show All

  • Visual C++ Adobe\Acrobat 7.0\ActiveX\pdfshell.dll appearing in my executable

    During execution under the debugger of the debug configuration of MyOgm, I see the following in the output window. 'MyPgm.exe': Loaded 'C:\Program Files\Adobe\Acrobat 7.0\ActiveX\pdfshell.dll Since I am not using pdf or ActiveX in my program, where did this come from Is VC++ linking it into MyPgm How can I remove it, and all similar baggage   VoiceOfExperience wrote: [...] Any other suggestions [...] Maybe one of Adobe products, installed on your computer, uses system-wide "hooks" in order to intercept some of Windows events, and the hook procedures are located in pdfshell.dll file This DLL will be attached to all of running processes, including yours. Visual Studio displays all ...Show All

  • Windows Live Developer Forums Virtual Earth Map Resize

    Hi, I was just wondering if there was a more effiecient way of getting my map to resize properly than what I have done (see below). function Resize() { MapControl.Features.ScaleBarKilometers = true ; MapCenter = map.GetCenter(); MapStyle = map.GetMapStyle(); Zoom = map.GetZoomLevel(); map.LoadMap(); map.SetMapStyle(MapStyle); map.SetZoomLevel(Zoom); map.HideDashboard(); map.SetCenter(MapCenter); } What I am trying to achieve is to get the map center to remain the same and have the Virtual Earth Logo and Scale Bar to remain in the bottom corners of the screen. Is there like a map.Resize(); function that could do something like this Or is there some code that would do this better ...Show All

  • Software Development for Windows Vista Infocard problem on Windows Vista

    Apparently, after joining a domain, the InfoCard UI stops working and RPC errors are reported. This is on Windows Vista beta 2, 64bit version (I didn't try the 32 bit version). Before joining a domain, InfoCard did work correctly. I just found out that this is apparently a timing issue after a cold boot. If I wait a couple of minutes, I can use the InfoCard UI to logon. When my machine is part of the domain, it apparently takes longer for infocard.exe to start up compared to not being part of the domain. ...Show All

  • SQL Server LDAP vs ADSI parameter problem

    Dear friens, I'm having a problem with ADSI and SQL... Could you tell me, where is the error The problem surge when I try to use parameter… " CREATE PROCEDURE TEST AS DECLARE @charVariable nvarchar(11); DECLARE @SQLString NVARCHAR(500); DECLARE @ParmDefinition NVARCHAR(500); /* Build the SQL string one time. */ SET @SQLString = N'SELECT * FROM OPENQUERY(ADSI,''SELECT * FROM ''''LDAP://DC=GrupoCGD,DC=com'''' WHERE objectClass = ''''user'''' AND sAMAccountName=@UserID'')' /* Specify the parameter format one time. */ SET @ParmDefinition = N'@UserID varchar(11)'; /* Execute the string with the first parameter value. */ SET @charVariable = 'rhs0002'; ...Show All

  • .NET Development Launching a web browser with URL in a string

    Hello! I'm using .Net 2.0. I'm launching the default web browser with the following code: System.Diagnostics.Process.Start(url_string). Url_string is a string variable that contains the URL I want to open in the browser (e.g. "http://www.searchexample.com=q&e=aakkonen&esim"). The problem is that if the string contains scandinavian characters (a, o, a) or the characters &, ", #, they will be converted to some kind of HTML code. For example %E4 stands for letter "a". How to open the web browser without changing the string at all For example video.google.com. Yes, converting the character to %E4 will work but then for example IMDB.com search engine won't work because it is ...Show All

  • Visual Studio Express Editions Making a working form out of Visual Basic Express

    Hi, I was wondering if there was someone who knows how to make a simple application using the checkboxes in Visual Basic Express what is the code to store the info on those and what is the codes to go with two buttons, one to clear the info / cancel and the other to send the checkbox marking info in an automatic text email. I just got through with lesson 2: Getting Started: Beginners Guide to Visual Basic Express. Thanks! I'm not sure what I'm doing here's my current code Public Class Form1 imports System.Web.Mail Private Sub Label4_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) End Sub Private Sub Label1_Click( ByVal sender As System.Object, ByVal e As Sy ...Show All

  • SQL Server Data mining cube with 0-value facts

    I'm defining a mining structure against an OLAP dimension. The continuous value that I'm using both as input and for forecasting represents the time to complete a certain process. There's something that strikes me as if it could be a problem, but I'm not sure. Our fact table has multiple columns (with multiple correponding measures in the cube). The "time-to-complete" measure is only populated on some of the fact rows - the rows that represent completion information. Other rows represent other information, and the "time-to-complete" value is set to 0. This works fine for cumulative time-to-complete and average time-to-complete, but it seems like it could mess up data mining. Will those 0-value facts skew the mining res ...Show All

  • Visual Studio Team System trace thread support in ide generated reports

    If I am attempting to trace an application, does the ide generated performance report understand threads When I generate the reports from the command line, I get one csv file per thread. When generating csv files with the command line report generator it provides a per thread breakdown. it just wasn't clear that that data was being processed correctly when using the existing (generated) reports through the IDE. Maybe the ability to decide if a per thread report is required to filter out some of the noise. A couple of questions: 1) Is cross process instrumentation improved in the next version of studio. Sampling works ok but the ability to instrument a windows service does not seem to work at ...Show All

  • Visual Basic Cannot save to database?!?

    I have a form with tabs. The first tab is used to enter general data about a site. The second tab is used to enter data about specific applications to said sites from the first tab. The information in the first tab can be manipulated as it should, but I cannot do anything with the data in the second. Private Sub SaveToolStripButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripButton.Click Me.Validate() Me.ApplicationBindingSource.EndEdit() Me.ApplicationTableAdapter.Update(Me.Sludge2DataSet.Application) End Sub I get the following errors when deleting or adding data: Update requires a valid DeleteCommand when passed DataRow collection with deleted rows, Update requires a v ...Show All

  • SQL Server past and future date

    How should I find the dates for 3 days past and 5 days future. Such as TodayDate-3 and TodayDate+5 base in the date only, discarding the time   JIM.H. wrote: How should I find the dates for 3 days past and 5 days future. Such as TodayDate-3 and TodayDate+5 base in the date only, discarding the time SELECT convert ( varchar ( 15 ), DATEADD ( day , - 3 , GETDATE ()), 101 ) AS [3 Days Ago] , convert ( varchar ( 15 ), DATEADD ( day , 5 , GETDATE ()), 101 ) AS [5 days from now] Adamus ...Show All

  • Visual Studio Team System Code Analysis - No File

    I have run the code analysis tool on my website in Visual Studio. In the error list the majority of the problems have no file associated with the error so it makes it hard to fix. Why is it Hi Matt, FxCop performs its analysis on binaries and we rely on .pdb files for retrieving the file and line information. The .pdbs contain this information only for executable lines of code. Due to this, fxcop does not report the source and line # for some messages. If you find some some instances where you feel the source information should have been displayed but it is not, please do report it to us. Thanks Ravs ...Show All

©2008 Software Development Network