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

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

eligh_ll

Member List

JohnPrem
aaks
Ultrawhack
Michael Gates
Arvind Robin Kumar
charles C
William Xie
sllik
Dr. Zoop
Jeanvo
Rich Baumet
cliffski
pranag
David Krmpotic
Ksev
DmitryMS
James2007
TruePsion
Speedbird186
The_Learner
Only Title

eligh_ll's Q&A profile

  • .NET Development Help in regular expression

    Hello, can someone help me in providing a regular expression who 'se adequter with a string who have a min required length 6 characters . in these caracters 2 , minmum, are none alphanumerical characters thanks Maaloul wrote: .. adequter with a string who have a min required length 6 characters . in these caracters 2 , minmum, are none alphanumerical characters thanks The issues in red need to be clearly stated. It looks like these are the rules 6 characters minimum 2 characters non alpanumeric [A-Z] (Implied) 4 alphabetic characters From those rules ^.*( =.{6,})( =.*[@#$%^&+=]){2,}( =.*[a-z\d]).*$ ...Show All

  • SQL Server SQL2005 Data Import Error, Unicode data is odd byte size for column <n>. Should be even byte size

    Hi, I have a problem importing data from SQL Server 2000 'text' columns to SQL Server 2005 nvarchar(max) columns. I get the following error when encountering a transfer of any column that matches the above. The error is copied below, Any help on this greatly appreciated... ERROR : errorCode=-1071636471 description=An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Unicode data is odd byte size for column 3. Should be even byte size.". helpFile=dtsmsg.rll helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC} (Microsoft.SqlServer.DtsTransferProvider) Many thanks This solution will wo ...Show All

  • Visual Studio Team System Why is TFS not available to Empower Program subscriptions?

    I checked with Rob Caron. Although Empower comes with MSDN Premium, the included version of VS is only Professional. You must have one of the VS Team Editions + MSDN Premium to get TFS Workgroup Edition, thus Empower doesn’t qualify :-( I believe TFS Workgroup should come for Empower: After MSDN transition -> to software developer lets say, Empower includes VS PRO + MSDN PREMIUM => should get TFS Workgroup. http://msdn.microsoft.com/vstudio/teamsystem/products/compare/default.aspx ...Show All

  • Visual Studio Team System Web Test using visual studio 2005

    Hi, i m using visual studio 2005 build in feature to test the website, adding the new test to the solution by going in the test menu is gud.. but when i right click on the test and say new test, i dont find any web.test in the dialog only two options, which i get are orderedtest and unit test. i m using visual studio 2005 team suite but cant find the web.test .... do i need to download this addins or whts the solution... I am not sure if I understand your question. If you have the dev sku and want to run web tests, then you need to upgrade to suite sku which has the dev plus the test sku features. There is no way to get webtests working in the dev sku. ...Show All

  • Visual Studio 2008 (Pre-release) Change backcolor of disabld control

    Can we change the backcolor of textbox control in Xbap application in framework 3.0 if yes How.... Actually my question was wrong ....... i want to know..." How to change the backcolor of a disabled textbox " ...Show All

  • Visual C# How to convert Parameterized Delegate from C# to VB.Net?

    Hi I want to convert this code segment to VB.Net but none of the converters worked. using System; using System.Windows.Forms; using System.Threading; using System.Reflection; private static Thread m_SplashThread = null;  private static Form m_SplashForm = null; Dim splashFormType as Form ' actually splashFormType is refrence to form already added to application  m_SplashThread = new Thread(new ThreadStart(delegate(){createForm(splashFormType); Application.Run(m_SplashForm);})); Private static voic createForm() { 1 Create a new instance of form 2 set properties 3 assign new instance to form m_SplashForm } How it can be converted any way Please comments Thanks  Idea seems ...Show All

  • Internet Explorer Development My First Web Application

    Hi I'm intermediate at vb.net, but I want to work with web also now. I want to make a web application in visual studio 2002(pretty much same as 2003) do you know how I could do it Note: I do 99% of my programming on my laptop which doesn't have internet. Could I still Practice making web applications and learning on it Given that your quest is to learn ASP.NET... I'd suggest starting it over at the ASP.NET forums where the folks there tend to think in a more ASP.NET centric sort of way than we do here. Also, rather than learning with Visual Studio 2002... you might want to take a look at the free Visual Web Developer which is based on Visual Studio 2005 and targets the latest version of ASP.NET. Did I mention that it's fr ...Show All

  • Visual C++ Visble Clip bounds in a Graphics object

    I have created a Graphics object using Graphics(HDC *hdc) constructor. In this case how does the graphics object knows about the Visible region of the window. It does knows that other wise how does it can implement GetVisibleClipBounds function. In my case if after the creation of the Graphics object the window is resized i.e. the visible region is changed, anything drawn on the new found area is not actually drawn. As far as i can see the visible region is not getting updated in the Graphics object, can anyone help me with this. Will appreciate it Samit You can use GetClipBox function to get the closest bound rectangle area visible for drawing Check this sample too. ...Show All

  • Smart Device Development Open the Add New contact app inside Contacts

    Hi, How can I directly open the default Add New contact application inside mobile Contacts with a click of a button in my application I know it would be something like this but this code returns error Win32 app can't be found. I'm using C#. private void btnNew_Click(object sender, EventArgs e) { System.Diagnostics.Process.Start("\\Windows\\Contacts.exe") } Anyone can help Thanks. Thanks. Seems like my assumption was right. By the way, System.Diagnostics.Process.Start(" \\Windows\\Start Menu\\Programs\\Contacts.lnk works at first place but once Contacts page is displayed, it returns error - the same error message: Win32 exception. ...Show All

  • Smart Device Development Create product registration

    Hello! Simple question: How do I protect my application with a registration code I cannot seem to find any answers to this. Thanks, Martin Take a look at InTheHand's library - it has support for regisaration code generation and checks. It has been written for WM2003 though ...Show All

  • Software Development for Windows Vista Delete WorkflowInstance from Database Tables

    I use one DB for Persistence and Tracking. This database therefore holds all workflows started. These workflow were started for different portals used by different clients. So if a client needs to be setup from scratch, I need to find the according workflows in the database and delete them. The other workflows (for the other clients) should stay untouched. Because of the amount of tables created (Persistence only uses 2 tables, Tracking about 20) I wanted to ask if someone knows how to do a task like this. The table "Workflow" holds the different workflows. Now I have a reference (WorkflowTypeId) which I can use to delete the instances. Am I correct Thanks I'm confused by "specific ...Show All

  • Windows Live Developer Forums Windows live custom domains: sign in out

    Is there any way of only providing sign up and sign out via your own custom domain. i.e I can only sign in at mydomain.com and when i sign out the link resolves to mydomain.com Any guidance appreciated No, there is no way to limit the domain name within the sign up process. Users can save their local settings if they want to get signed in automatically. ...Show All

  • SharePoint Products and Technologies Opening a page with FrontPage

    Why am I asked to check out the page when I attempt to open it with FrontPage For some reason, one of two people both having Administrative permissions can open the page without being prompted to check out and not the other. What would be the reason for this And, how do you turn the publishing off ...Show All

  • Visual Studio 2008 (Pre-release) I was wondering about automatic and not about explicit lazy loading.

    While on the subject of loading foreign key references... Is there some mnemonic I can throw into the LINQ query to tell LINQ to Entities that I want to pre-fetch all of the type data because I want to filter on it When I do: var filteredQuery = from game in gamesDb.VideoGames where game.Type.Name == "Nintendo Wii" select game; foreach (VideoGames g2 in filteredQuery) Console.WriteLine("{0} : {1}", g2.Title, g2.Type.Name); That thing works fine, and I don't have to loop through and call TypeRef.Load() Is there something I can stuff in the query when I'm not using a where clause that will force the TypeRef to pre-fetch   Daniel Simmons - MSFT wrote: This topic is one we have debated a ...Show All

  • .NET Development Moving from old API functionality to Framework 2.0

    Dear folks, I’ve inherited an old vb6 project which uses API nt services along with functions such as the following: Private Declare Function OpenSCManager _ Lib "advapi32" Alias "OpenSCManagerA" _ Private Declare Function CreateService _ Lib "advapi32" Alias "CreateServiceA" _ Private Declare Function DeleteService _ Private Declare Function CloseServiceHandle _ Private Declare Function OpenService _ Private Declare Function QueryServiceConfig I haven’t idea how to develop this logic through Visual Studio 2005. So that I’m looking for the same stuff but totally focused to Net 2.0. How do I Thanks in advance for any ...Show All

©2008 Software Development Network