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

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

yoPCix

Member List

ChrisBCritter
klika84
arcnazgul
Senthil Murugan
Rupesh
Nixies
bswick
markstamp
annag
basedissonance
chintanpatani
BillCondo
citizenjimi
Elqueso
Uwe Lesta
J. Lewis
Sathianantha Thilagar T
sxtn
corny_cory
krwoolf
Only Title

yoPCix's Q&A profile

  • Architecture the best orm for .net?

    I would like to know your favorites, i am looking for a free one and with caching capabilities. well I would say to look at the following and weight their pros/cons with your requirements nhibernate gentle.net (2.0 is looking great is is completely based around concepts put forward in DDD by eric evans) wilson O/R (its not free but it has a minimal price, $50 if I remember correctly that includes source) A nice thing about this particular implementation is the sproc support. All come up within the first 5 pages on a google search, let me know if you have trouble finding any of them. Cheers, Greg ...Show All

  • Windows Forms TextBox with wordwrap=false still wraps at a certain point

    Hello, I have a TextBox that I need to display some data in. I need each bit of data to be on its on line. My lines are somewhat long, so much so that even with wordwrap set to false, the TextBox wraps even though a scroll bar is showing. Is there a way to override this width so that it doesn't wordwrap Thank you for your help, Are you sure you are not accidently reading in a RETURN or LINFEED Character Zep-- ...Show All

  • Visual C# Thread & ProgressBar

    Ok. I know this is a wierd question. But I would like to know how to connect a progressbar to a thread. I have a download function, and when the user clicks a button, the function is a thread you could say. So basically, I would like to track the progress of the download or thread in a progressbar. Here is my thread.   Button_Click Event(Object Sender, EventArgs e) {           Thread MyThread = new MyThread(Downloader);           MyThread.Start()   } That's not at all a weird question! If you're using VS200 ...Show All

  • SQL Server prorating the date fields with cost

    Hi all I have got 3 columns in my table- start date,finish date and cost..in the following format... start_date finish_date cost 12/12/2000 20/12/2000 $2000 01/09/2000 12/10/2000 $400 Now if the month and year of the start and finish date is same, the cost remains same... but if the month of the two dates are different, i have to distribute the cost between the two months by calculating the cost for the number of days for both of the months.. but i am not able to figure out how i am using sql 2005 .. my table has got about 1 million rows... pls help..... dll is as follows GO CREATE TA ...Show All

  • Visual Studio Team System Testrun Deployment Issue : xxxx is not trusted

    I recently received a webtest from my colleague, but when after I "Add Existing Item" into my project and when I try to run it, it gives an error: Test Run deployment issue: The location of the file or directory '........webtest6.webtest' is not trusted. How can I run this webtest Is this file on a UNC share or mapped network drive If so you need to add these directories as trusted URLs to the .Net Framework 2.0 Configuration (See Administrative Tools) ...Show All

  • SQL Server Upgrade Installation

    Hi Guys, I would just like to ask where could I find documentations or site on Upgrading Previous CTP version of SQL Server 2005 to SQL Server 2005 RTM with clusterring.   Thanks...     Larry, There is no direct upgrade path from pre-released to RTM. You'll need to uninstall the CTP (this will leave your databases behind), install RTM and then attach your databases. During the uninstall of the CTP make sure you uninstall in the following order: 1) SQL Server components 2) SQL Native Access Client 3) .Net Framework Cheers, Dan ...Show All

  • SQL Server Unable to Uninstall SQL server 2005 Express

    When I try to un install SQL Server Express (VS 2005 Beta 2), which is not functional, I get an error message: The SQL Server System Configuration Checker cannot be executed due to WMI Configuration on the machine MACHINE_NAME Error:2147746132 (0x80040154). I ran the Windows Install Cleanup tool but that didn't help. SQL Server 2005 Express is still listed in the list of Applications in the Add/Remove dialog. I tried the uninstall for SQL Server 2005 CTP and had the same error message. What can I do about this I assume this is long since resolved, so I'm marking it as fixed to clean up our records. If you still need help here, pl ...Show All

  • Visual Studio Express Editions attempting to create a COM object.

    I am trying to create a dll to be used for sourcesafe 2005 automation. From the help there appears to be to ways to create a com object. First open a COM template. This option is not one of the available templates when i choose to add new item, after opening the class library project. The other option is to choose the Register for COM Interop check box on the compile tab. I do not have this box either. When i go to the build i also do not have the option to: Select Build Solution from the Build menuSelect Build Solution from the Build menu If i do a build a dll is created, but is not registered and cannot be registered with re ...Show All

  • Visual C# Windows Service and Events

    Hi there, sorry for bothering again with this toppic, but I just can't find anything about it. All my researches about windows services brought out more or less the same results: - Windows Service that falls through the OnStart()-Method and does something for one time - Windows Service with a Timer component - Windows Service with a FileWatcher component But what about other events There must be a way to to put the service to work permanently , right Something similar to a while-loop in the OnStart()-Method... Thanks, Finch82. Thanks --mc, I knew about the while loop and the po ...Show All

  • Windows Forms Source code, server and future

    So as several of you have noticed, the source code for 1.2 hasn't been released yet.  I am trying to figure out what is the best approach for releasing the source code and the future of Terrarium 1.2.  Here are the current thoughts.  I'd like to get your opinions on which options you prefer. 1. Release 1.2 Server (this will happen, regar ...Show All

  • .NET Development SatelliteContractVersionAttribute

    The documentation at http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbconversionnumbersformainlocalizedsatelliteassemblies.asp seems to suggest that satellite assemblies won't work if their version.release.build.revision number won't match that of the main assembly Is this really the case I have a version of an exe at 1.0.2302.14758. I have resource files AL'ed with /template: to older versions of the exe. However, they seem to load fine. For example I could load Spanish strings from a resource file that is at 1.0.2299.27553. What is the real situation Does all four components of the revision number ha ...Show All

  • Windows Forms I am having update trouble

    Is is possible to use the wizard to create the update commands when the SQL is hand coded. I want to concat a firstname +', ' + lastname as Patient in the query and have this bound to a datagrid but I keep getting an error: Update requires a valid UpdateCommand when passed DataRow collection with modified rows.: The query builder said it was succesful in creating the update statement. How sohuld I go about setting this up using the dat source wizard or is straight SQL the only way to go. I figured it out. The table did not have a primary key. Thanks. ...Show All

  • Windows Search Technologies IFilter Preview

    What interface and registry settings do I use to supply the picture for the Preview box in the Windows Desktop Search window   I tried adding an IViewObject2 to my IFilter DLL but it never gets called. Joe, Thanks for answering, however a statement in a 3rd party blog hardly constitutes an answer. I have no way of knowing from whence Tom comes. I have have opened an MSDN support incident through my Certified Partner account, so I suppose I will have to pay the answer, if it ever comes. Making someone wait months for an answer could hardly be taken any other way than "blowing off your questions". Ha ...Show All

  • Visual C# Process.GetProcesses() and user privilege

    I have a VS 2003 C# application that works fine in most environments. It has recently been installed in a corporate environment (WinXP / Server 2003) where the user workstations are pretty well 'tightened-down' from a security point-of-view. The application makes use of the Process.GetProcesses() and it appears that the application throws an exception when this is called due to insufficient privilege. So my question is -- from a security perspective, what changes in groups or policy or whatever need to be made such that Process.GetProcesses() will not throw Obviously, making everyone an admin would solve the problem, but I am looking for so ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Direct9.0SDK Itanium Version

    I need Direct9.0SDK Itanium Version to compile, thank you for telling me where can I find the Itanium Version SDK. ...Show All

©2008 Software Development Network