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

Software Development Network >> Andy Thevelein's Q&A profile

Andy Thevelein

Member List

BranchL
big9s
veronika
David Roberto Johnson
Samer Selo
Rob Caldecott
Eric Cann
exina
Chris O
Kyleruby1
Brian_Russell
aleksandar uzelac
TeamonD
DW Developer
RicardoX
Kifaro
Risto Ylipaavalniemi
sivad
Tweed
Sunil Agarwal
Only Title

Andy Thevelein's Q&A profile

  • Visual J# plz help

    HI, i need to know all about visual J# it's a homework in University of Programming plz if anyone know a page of Visual J# where is all the information like a) Description b) OS which supports c) Requirements of system Process of Installing the Visual J# how to activate, configure, and test the installment How does it work, how it compile, how to execute the applications plz if someone know something post me at chiraginotz@yahoo.com immediatly i need it for tomorrow help me and if u can send me in spanish i will gratefully thanx to you thanks and Goodbye As Jaiprakash said, http://msdn.microsoft.com/vjsharp/default.aspx  should be ...Show All

  • Visual Studio Team System The report server cannot create the performance counter

    After installing SQL Server 2005 and reporting services I recieve an error on bootup telling me to look at the Event viewer.  In the event viewer I see: The Report Server cannot create the Cache Misses/Sec (Semantic Models) performance counter. Source: Schedule and Delivery Processor Category: Logging Event: 113 The error is in MSDN with less description that what event log gives. I did find a blog entry describing the problem but his report server did not start, mine shows up fine in services when I check. It has three other errors creating the three more perfomance counters : Total Cache Misses Cache Hits/Sec Total Cache Hits. I w ...Show All

  • SQL Server Unable to install MS SQL Server..

    Dear Gurus.. I am having problem in installing the MS Sql Server on my System. Configuration: XP sp2, vss .net 2003 Problem is, system is giving the message (shown bellow), and i have the option to install only the SQL Client. Please help... Setup Message Microsoft SQL SERVER 2000 ENTERPRISE EDITION server component is not supported on this operating system. only client components will be available for installtion. enterprise only installs on Win 2000 server and Server 2003. need to install the msde, developer or personal. Go ahead and install the client tools then install this ...Show All

  • Software Development for Windows Vista Is SDK download link broken?

    I have been trying to download the January CTP SDK, but looks like the link is broken. The link for WinFx runtime components is fine, it only the SDK link thats giving the problem. Anyone having a similar problem Hi there, not sure which link is the busted one. There are a few up there. We'll find it though. In the interim, you should be able to use the link below for Jan CTP SDK. http://www.microsoft.com/downloads/details.aspx FamilyId=64750EEF-D4A7-4CC8-92F2-9A201268A231&displaylang=en ...Show All

  • Microsoft ISV Community Center Forums Set Folder property

    I'm setting several item properties, then saving the items into a specific folder, and want to display these properties as a column in the Explorer list. However, when I try to add properties that exist in the folder's items to the Arrange By: headings, they are not available in the folder. I want to add the same properties to the folder when I create it programmatically so the user can see them in Explorer. How do I add the equivalent of Item.UserProperty to a folder I'd appreciate any and all assistance. ...Show All

  • Visual Studio Tools for Office Enable/disable popups in main menu

    Hi; We have an Add-In where we need to enable/disable a couple of menu items based on the location of the caret in the document. As an example, think of the Cut menu item in Edit - it is only enabled if text is selected in the document. Is there any event or any other method where we can enable/disable the menu items just before the menu is displayed. Possibly an event that occurs when the user clicks on the main level menu that will cause it's menu to drop down At present we use the select change event. But this is a bad solution both because it is fired all the time so we are using a lot of CPU cycles and because it does not fire when the ...Show All

  • Visual Studio 2008 (Pre-release) Error while installing WinFX RC Beta 2

    Every time I'm tying to install the WinFX RC an error occurs. When I have downloaded 46MB of 48MB the installation aborts. It would be interesting if anybody else have this problem too. I also tried to install it on a 'clean' System, but the error occurs too. Is it possible that the server is overloaded -Daniel EDIT: I figured out it has something to do with the languagepack: [05/24/06,13:31:04] WinFX Language Pack - DEU: dlmgr: entering CDownloadJob::Complete() [05/24/06,13:31:04] WinFX Language Pack - DEU: dlmgr: leaving CDownloadJob::Complete() [05/24/06,13:31:04] WinFX Language Pack - DEU: dlmgr: FVerifyTrust.Trust result= [05/24/06,1 ...Show All

  • Visual Studio Express Editions stupid newbie needs help with serial port communication

    Hi, I hope someone can help me... I'm trying to use visual basic 2005 to recieve data from an ooPic device which is transmitting an incremental value via the serial port... the code used to do this is described here: *********** Do variable = variable + 1 serial.string = str$(variable) Loop *********** I'm using this so i can try see if i can recieve this data using visual basic 2005 to display the value in a window when a button is clicked. I have no clue where to begin. I managed to be able to send data to the ooPic using the code below: ****************** Private Sub Send_string_Click( ByVal sender As ...Show All

  • Visual Studio Team System Error 28703

    Installing Foundation Server Trial Edition in Single Server mode. I am installing under a domain account that has admin rights to the local box, and is also the account that runs all SQL Server 2005 services and is explicitly in the SysAdmin role on the SQL Server Have separate domain level accounts (non-admin) for the Foundation Server Service and Reporting Service. At the end of the installation I get : "Error 28703. Unable to connect to the SQL server. Please check that you have the necessary permissions and the SQL server process is running on the data tier. See the setup logs for more information." No sure where ...Show All

  • Visual Studio 2008 (Pre-release) API / example for parsing e2e files.

    Hi, I would like to build a management console that displays part of the information displayed in the svcTraceViewer utility. Is there an easy way for parsing the *.e2e trace files generated by WCF Thanks, Dan. Hi Dan, You have a lot of flexibility here. Writing your own listener is certainly an option as Madhu suggests. The trace files are straightforward xml files (without a root tag), so parsing them using the .net xml classes shouldn't be very difficult. Some advantages to writing your own trace listener are that it makes client side processing easier and (if the standard listener isn't also used at the same tim ...Show All

  • .NET Development WebRequest is breaking me in 2.0

    Trying to get my code ported to RTM and I've run into a nasty snag. Here's the code: public Image RetrieveImage( Uri path) { WebResponse Response = null ; Image image = null ; HttpWebRequest request = ( HttpWebRequest ) WebRequest .Create(path); request.Credentials = CredentialCache .DefaultCredentials; try { Response = request.GetResponse(); if (Response.ContentLength > 0) { image = Image .FromStream(Response.GetResponseStream()); } } catch ( Exception e) { ExceptionManager .HandleException(e); } finally { if (Response != null ) { Response.Close(); } } return (image); } This code h ...Show All

  • Smart Device Development Multiple forms and multiple instances in task manager

    I have an application for smartphones that opens multiple forms. The smartphone task manager displays each of these forms when opened. I always had the impression that the task manager was supposed to display 1 instance of your application. Can someone clarify what's going on here and if I'm doing anything wrong Thank you. NP. The default settings for a new form in visual studio are pathetic, I don't recall ever creating a form and wanting it to use the default behaviour. ...Show All

  • Visual C# PInvoke Doubt.

    Hi, i am working for Certificate Management module in a Smart Card Management System project. I am planning to use Platform Invoke to access the XEnroll.dll, CertCli.dll and Certadm.dll. I am planning to create an wrapper like the following public class XEnrollWrapper { [DllImport] << Function that i like too call from the win32 dlls>> } My Question is: The certcli.dll or XEnroll.dll may be changed/replaced entirely in feature, in this case i have to change not only my wrapper and also the core library i am going to develop because the prototype of the function in the dll may change or the function i am u ...Show All

  • Visual C# How i can Embed swf file in the form..?

    Hello,all.. How i can embed a swf file..in a form.. which object can i use ..(i am using C# 2.0..not C# 1.1..).. Did any one try..that..please help..i have a column in database called fld_Data..which is of type of image..datatype..it contains all data....(images(jpg,gif,) and swf )..the question..i know how to show the images on PictureBox. Control..but the question how i can show swf flash file..in that control..or another controls.. best regards. Bassam Basamad The most Flash player controls don't accept a stream but want a file path or something like that. I don't know wish Flash player control you are using, but ...Show All

  • SQL Server datatypes for SQL

    I'm having considerable diffulcty finding the definitions for the various data types. Specifically, What's the difference between nchar(xx) and nvarchar(xx). Any help in finding the definitions in the help system would be appreciated " nchar and nvarchar (Transact-SQL) " http://msdn2.microsoft.com/en-us/library/ms186939(en-US,SQL.90).aspx "Data Types (Database Engine)" http://msdn2.microsoft.com/en-us/library/ms187594(en-US,SQL.90).aspx    [quote from="Books Online"] Character data types that are either fixed-length, nchar , or variable-length, nvarchar , Unicode data and use the UNICODE UCS-2 cha ...Show All

©2008 Software Development Network