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

Software Development Network >> Tyler Free's Q&A profile

Tyler Free

Member List

Petulka7
Rikard
Troy Jerkins
Gaoqiang
Jean Philppe HERLOIN
Mr Adam
pricebri
M. Ueberall
Carlos Magalhaes
jchoquet
Samuel Cheah
codecraftsman
BratZeid
Rakesh Gujjula
new2C#
anonymous5000
Bertil Syamken
Angel Valdez
Jochen Kalmbach -MVP-
Pdoh
Only Title

Tyler Free's Q&A profile

  • Visual Studio Attaching process to Windows Service

    I have a windows service that has been built (VS 2005 Beta 2), installed and is running ( I am getting output in the event viewer, and part of it the service is working correctly).  But when I try to debug it using the "Attach to process", the service process is greyed out, and I am not allowed to attach to it.  I am running Windows Xp Pro, SP2, as an admin. Not sure if this is a security or permisson problem so I also have tried adding "Everyone" to the "impersonate a client after authentication" in the user rights assignments in local security settings, but it didn't help. I installed the service using a Setup Project added ...Show All

  • .NET Development Dynamic creation of XSLT from C#

    Hi, This is my first posting, 1. From C# i want to create a new XSL 2 . can i append XSL file fromm C# , is it possible if so how can any one hep me out thanks Radhkrishnan.K thanks for your reply, Dynamically i want to alter the XSL file or i have to create the XSL file, that is my requirement, because I am converting one form of XML to another form of XML using XSL,C#, the source XML dymanically i am creating from my C# emvironment, so i want to alter the XSL according to that, I hope you understand my requirement. Thanks Radhakrishnan.K ...Show All

  • Windows Forms Windows form keeps dissappearing

    Hi, Ive got a rather silly question... hope someone can help. I have created a project with several forms. One form in particular is causing me problems. I cant seem to find my main form (form 1). This is the second project this has happened in. The solution explorer lists all my forms except form 1 which is my main form. When i debug/run the code, my form comes up as per normal. Whats going on Why cant i find my form in solution explorer or anywhere for that matter I think i may have overlooked a simple concept here but novice coders tend to do that! I would be really grateful for any help. Cheers Aaron ...Show All

  • Windows Forms About System.Windows.Forms.Timer, Stop, and GC under heavy load.

    Hi, quote from Forms.Timer.Stop() MSDN documentation: A timer that is disabled is subject to garbage collection. The application code I work on happens to do things such as: void MyTickEventHandler() {    timer.Stop();    /* do a bit of work */    timer.Start(); }   Under heavy loads, the timer sometimes seems not to restart anymore at some point (= the timer get dead). Given the documentation, I strongly suspect (could not hook the Disposed event yet but it may help!) the GC to do some job precisely between Stop() and Start(). I'm probably going to put a GC.KeepAliv ...Show All

  • .NET Development HTML Mail using SmtpClient

    Hi, I'm using .NET 2.0 (Beta2) and I want to send an email where the body is html. I'm using the System.Net.Mail.SmtpClient and System.Net.Mail.MailMessage classes. Before sending the MailMessage I add an alternteView using message.AlternateViews.Add( AlternateView .CreateAlternateViewFromString(<html string>, null , "text/html" )); but when I receive the sent mail it is blank. If I set the MailMessage.Body property to the Html string the it arrives as raw HTML, again in plain text. MailMessage no longer has a BodyFormat property as in the .NET 1.1 framework!! Can anyone help me Regards Graham Yo ...Show All

  • Architecture Architecting a System is a Thought Process or Practice or Combination of both of these or others too

    Architecture is a work combining - "Thought Process" or "Practice" or "Pattern". What quality does it require Abu S. Md. Ismail wrote: Hi Rohan, This is not a simple question, where the answer will be in one line or few lines, but I believe the answer will be the every ones point of view !!! Therefore, it is open to discuss. I think you also agree with me. :) Thanks, ...Show All

  • SQL Server Converting AS2000 DSO from VB6 to VS2005

    I have a VB6 program that uses Analysis Services 2000 DSO to Automatically Process an AS2000 Database. I ran the Upgrade Wizard in VS2005 for Visual Basic on this VB6 program but the result has an error I can't find how to correct. Here is the original code - Dim mdDatabase As DSO.MDStore Dim dsoServer As DSO.Server Set dsoServer = New DSO.Server dsoServer.Connect ("CubeServer") Set mdDatabase = dsoServer.MDStores("TestCubes") mdDatabase.Process Here is the code as a result of the 2005 upgrade wizard - Dim mdDatabase As DSO.MDStore Dim dsoServer As DSO.Server Set dsoServer = New DSO.Server dsoServer.Conn ...Show All

  • Visual C++ Get key user entered

    I searched in msdn library, but i haven't found anything good... I am actually doing a game, all the code of how it should move is ok, but the only thing I need is to be able to determine where is the mouse and what key did the user press. Example: you press somewhere, it pops a dot at that place Example 2: you press right arrow, the dot moves right... I am ok with the code of displaying the dot, but not with the getkey function or whatever it could be... I am writing for a Win 32 API application (if it was console, I would be stupid to ask that!) I don't think I'm using MFC, but if needed, I ...Show All

  • Windows Forms Datagridlistview Moving Rows from One grid to another

    Hi - I am trying to move rows from datagridlistview1 to datagridlistview2 by manipulating the underlying datasets. I've got it moving ok, but I also want to remove the moved row from the datagridlistview1. When I use the remove method on the underlying dataset, I get an index out-of-bounds error. Any help would be appreciated since there is little info on this topic so far.     Sub SelectFiles()         Dim row As Integer         Dim myDataRow As DataRow         Dim cm As CurrencyManager      & ...Show All

  • Visual Basic Click once requires system to be updated to Crystal...ReportSource Version 10.2.3600.0

    Should the click once publisher or the build project have built these references and included them in the build Is the Crystal Reports Prerequisites package selected, and does the bootstrapper indicate it is being installed One possible workaround would be to mark the files as Excluded, instead of as Prerequisites. This will turn off the ClickOnce runtime prerequisite check, and should not throw the error. However, if you that, and the Crystal Reports components are not being downloaded and installed, then you'll get a runtime exception when your app loads, or attempts to use the Crystal Reports components. ...Show All

  • .NET Development Mapping generic access rights to object specific rights.

    Firstly, thank you for the AccessControl namespace in .NET 2.0. This new class will make manipulating security in .NET far easier. I noticed that when you call the GetAccessControl function from an object, no mapping from generic access rights (eg. GENERIC_READ to FILE_GENERIC_READ) is done. The resultant access control list therefore returns duplicated ACEs everytime (one which represents the specific right, one which represents the generic right which propagates to children). For example: calling {   Microsoft.Win32.RegistryHive Hive = (Microsoft.Win32.RegistryHive)     ( this .regHiveSelect.SelectedValue);   ...Show All

  • Visual C# Entity must be parameterless?

    I am new to write application that connect through internet via web services. I wrote several entities with parametered constructor. But I got the following error when I run through Internet(but not on LAN). Does it means .NET entities that pass by web services must be parameterless Thanks a lot. System.ApplicationException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> There was an error generating the XML document. ---> Entity.eWarehouse cannot be serialized because it does not have a parameterless constructor. at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapCl ...Show All

  • SQL Server LIMIT Clause

    It seems current version of SQL Server doesn't support LIMIT clause in SELECT statement. Will future version of SQL Server support it Thx. Maximilian, I don't know if the keyword LIMIT will be supported, but even in the current version, you should be able to get the same functionality with the enhanced TOP syntax and/or the new ranking functions. For example, to delete just 10 rows: delete top (10) from ... and to select rows 50-59 in some order: with T as ( select row_number() over (order by someColumn) as rn, * from someTable ) select * from T where rn >= 50 and rn It seems current version of SQ ...Show All

  • Visual Studio Team System problem on custom rule (fxcop v1.32)

    Hi, I use this method: public override ProblemCollection Check(Member member) { Method method1 = member as Method; return null; } With this example, there is a problem: public class Class1 { public void myMethod() { object obj; try { obj= new object(); obj = 10; } catch { obj = 10; } finally { obj = null; } } } When i look method1.Instructions, the values aren't good: method1.Instructions[0].Opcode = _Locals method1.Instructions[1].Opcode = _Try method1.Instructions[2].Opcode = _Try method1.Instructions ...Show All

  • SQL Server Multilingual Support in Analysis Services

    Hi Currentely i am using analysis Services with SQL SERVER 2000 OS:- Windows 2000 Server Datasource:-Oracle We need to show the data in the cubes for multiple countries. But we are not able to show the data for diferent languges at the same time becoz in windows 2000 default language on the server can be set to only one language and the data in the cube can be shown in same language Ex Let say we wud liket see the data in the cube for Russia and turkey on the same server.If we set the default language of the server as "Rusia" or "Cyrlic" We are able to see data for Special Russian cha ...Show All

©2008 Software Development Network