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

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

kevin_i_orourke

Member List

Henry_Yang
paschott
noobzilla
Steveinbeloit
iq662000
Carlos Marcelo Farías
R0nda
MikeS
Richard Meijer
noNchaoTic
davidg12
ascanio
MasterG
jfkrueger119584
hazz
robinjam
StGeorge
fluffy061585
Kshama
CJira
Only Title

kevin_i_orourke's Q&A profile

  • Windows Forms How to display Access Key without press Alt key?

    Hi, we know we can make a access key with "&", say, "&File", so when we press the alt key, it will be displayed as " F ile". now my question is, could we just display " F ile" without press alt key My Outlook 2003 is just behave in this way. Hi Tyrael, this is a system setting and MenuStrips behavior depends on how it is set. You're probably using the Windows XP - open Control Panel, Display settings, and select Appearance tab. Click the Effects button and uncheck "Hide underlined letters for keyboard navigation until I press the Alt key". I guess Outlook ignores this setting... Hope this helps, Andrej ...Show All

  • SQL Server Running under 64-bit OS

    In configuration manager, the parameter "running under 64-bit os" is grayed out on my sql services. How can you change this Where does it get set At install Thank you! I actually have only one 64-bit instance of SQL 2005 and several 32-bit instances of SQL 2000 on the server. No 32-bit instances of SQL 2005 are installed. I'll trust that it's running in 64-bit mode. ...Show All

  • .NET Development Xsd.Exe problem or my Xsd?

    Im trying to Read an Xsd in a DataSet, like: dsDataSet.ReadXmlSchema( @"\\test2.xsd" ); But its throwing an exception, like Exception: Type 'http://tempuri.net/test/ts:AddressLevelType' is not declared, or is not a simple type. Even throwing the above exception while Trying to convert the test2.xsd in to Class/DataSet using Xsd.Exe utility. Is it the problem with my XSD file Without seeing the content of your xsd file, it's hard to guess what the problem is. But first, please check this KB article: http://support.microsoft.com/kb/317611 ...Show All

  • Smart Device Development No modules loaded for debugging-PDB files cannot be found.PLease Help

    Hi, I'm developing a app through vb.2005 using compact framework2.0. But when I run the application it doesnt let me do any debugging. After hours of research I found out that the pdb files dont get loaded..On the modules window it says: mscorlib.dll mscorlib.dll N/A N/A Cannot find or open the PDB file. 1 5/9/2006 12:59 PM 4FA00000-4FADE1C8 [8e2939e6] Warehouse (PPC).exe: Managed Warehouse (PPC).exe c:\localsymbols\Warehouse (PPC).exe N/A N/A Symbols loaded. c:\localsymbols\Warehouse (PPC).pdb 2 2/1/2007 5:11 PM 4FB00000-4FB11A00 [8e2939e6] Warehouse (PPC).exe: Managed System.Windows.Forms.dll System.Windows.Forms.dll N/A N/A Cannot find or open the PDB file. 3 5/9/2006 12:59 PM 4FC00000-4FC ...Show All

  • Visual Studio Tools for Office MailLogon Problem in Excel Workbook

    Hi, I have an Excel application which loads DLL when opened.After making some DB operations it emails itself by using MailLogon and SendMail methods.(Actually DLL code makes these) This works perfectly. Now my problem is, I want to make an ASP.Net application and when user clicks a button , I want a BAT file to be activated and open this workbook.Everything is fine.But When excel file finishes all operations and tries to Logon mail system (which is outlook) , it gaves an error "Exception from HRESULT: 0x800A03EC" . This problem does not occur when I double click BAT file by myself it sends email but does not send when I run this BAT file from ASP.NET .I think I am missing an update for MS EXcel but I can not handle it.Does anyone ...Show All

  • Visual Studio Express Editions C#.net

    sorry guys if this is in the worng place. I am just getting started in the world of programing and i have sighned up for a course on c#.net and am trying to get the basics down before the couse arrives by looking on the net etc. my question is, is this language also known as Visual C# or is this a completely different language to C#.net Thanks for any help Good question!.Net and Visual C# are not the same thing, but Visual C# uses .Net to make Windows programming much easier. The short version is, if your course is C#.net, then Visual C# is what they are talking about. Here is a description of .Net technology: http://msdn.microsoft.com/netframework/technologyinfo/overview/default.aspx And ...Show All

  • Visual Studio Team System Upgrading TFS trial edition

    I just upgraded our TFS application tier server with our new key, which was easy. Now I want to upgrade my data tier server as well. However, there is no way to enter the key there. Is that right Thanks, Thijs Adam, Thanks for your reply. I found that article also but it does not mention the TFS upgrade for a dual tier setup. It only mentions data tier and app tier where the SQL upgrade is concerned. So for now it seems that once you upgrade the app tier the data tier just follows that. Which raises the question: why do I need 2 licenses then ...Show All

  • Visual C# how can i remove "." from a number

    I have a number like 2454139.20058 and i want to remove the "." and show as: 245413920058 Try this: string full = "2454139.20058"; string processed = str1.Replace(".",""); I hope this will help. Best Regards, Rizwan aka RizwanSharp ...Show All

  • SQL Server Restricting password to contain atleast one letter and one number

    Hi, how should I apply restriction on the password field to have atleast one number and one letter The password field is 6 characters long. Thanks, You can't do this because the actual clear text password of SQL logins is accessible only to SQL Server for security reasons. On the other hand, if this is application controlled login information (your own user tables) then you can do whatever you want with it. You can use CHECK constraints on the column like:   CHECK( password like '%[0-9]%' and password like '%[abcdefghijklmnopqrstuvwxyz]%')   The 2nd LIKE expression pattern depends on the collation of the database but it will work for any case-insensitive c ...Show All

  • .NET Development XSL Transformation not generating expected result after upgrade to .Net 2.0

    I am currently upgrading a .Net 1.1 project to .Net 2.0 and one of my XSLT is not generating the expected results. I even used the new XSLCompiledTransform object , didnot help much .. Below is the XSL File , it takes in some parameters , does anyone know of any part of the XSL that is obsolete or so. Looks like <xsl:if> is not working .. Any suggestions or comments are greatly appreciated. < xml version = " 1.0 " encoding = " UTF-8 " > < xsl:stylesheet version = " 1.0 " xmlns:xsl = " http://www.w3.org/1999/XSL/Transform " xmlns:asp = " remove " > < xsl:output method = " html " /> < xsl:template match = " / " & ...Show All

  • Software Development for Windows Vista InkCanvas exception

    Help! I am using .NET 3.0 Beta 2 and VS2005 on Windows XP Tablet PC 2005 edition. Whenever I try and use the <InkCanvas> element I get an unhandled NotSupportedException as soon as the mouse/pen is moved into the ink canvas area. Full details of xaml used and exception below. The exception occurs in the app.Run method. < Grid >< InkCanvas /></ Grid > System.NotSupportedException was unhandled Message="DLL version not correct." Source="PresentationCore" StackTrace: at MS.Internal.HRESULT.Check(Int32 hr) at System.Windows.Media.FactoryMaker.get_ImagingFactoryPtr() at System.Windows.Media.Imaging.FormatConvertedBitmap.FinalizeCreation() at System.Windows.Media.Imaging.Fo ...Show All

  • Visual C++ Can't quite figure out error LNK2001

    Hi, I am hoping someone with sharper eyes can help me with this error I am getting. I know it is probably something that I overlooked like missing required function or different argument types to a function, etc, but I just can't quite get around to actually pin-pointing the problem after having spent two days on this. :-( Thx in advance. Linking... VanillaOptions.obj : error LNK2001: unresolved external symbol "public: virtual class BaseOption * __thiscall OptionFactory<class BaseOption,class EuropeanCall>::CreateOption(void)" ( CreateOption@ $OptionFactory@VBaseOption@@VEuropeanCall@@@@UAEPAVBaseOption@@XZ ) C:\tmp\CPP\Calvin\MC_VS_2005\MC\Debug\MC.exe : fatal error LNK1120: 1 unresolved externals Build log was s ...Show All

  • Architecture UIPAB - Open Navigation - Strongly typed state class

    Hi All, I am trying to implement strongly typed state class in UIPAB. In Graph navigation I am able to achieve the same. In Open navigation, the UIPAB framework always loads the state class that is specified as default="true" in the <state /> tag, which means I need to have a common state class for all my open navigations. I am having dozen of views and corresponding business entities that i need to implement strongly typed state class. How can we have individual state class for every open navigation views Is this possible or is it a limitation in UIPAB Thanks Niranjan ...Show All

  • Visual Studio Team System Organizing Team Projects

    We develop software for several customers. Most customers have one or more completely independent projects with other persons, dokuments, tasks etc. My question is now, what would be the best way to organize my projects in Team System. The only wayI found by now, is to create a new Team Project for every of my projects. But there are a lot of them and I'd prefer to group the Team Projects by customers. For exmaple in Visual Source Safe we had a hirarchy Customer / Project / Module which was very handy. But I found no way to create a structure like tghis in Team System. I found a possibility to create different folders in a Team Project, but I cannot create a Team Project for every customer and then place the differen projects in d ...Show All

  • SQL Server Basic: Starting SQL Server

    Hello, I am having trouble just starting SQL Server 2005. When I try to use Management Studio, I do not see any server name. I just need to be able to start it up! Thanks, pagates Hi pagates, One of the easiest ways to start SQL Server 2005 is go to Start -> Control Panel -> Administrative Tools -> Services . Look up for a service by the name SQL Server or SQL Server (your instance name) , right click -> Start . If you do not see this service listed, it is likely that you have installed only the client tools for SQL Server 2005 and not the server. Hope that helps, Amol. ...Show All

©2008 Software Development Network