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

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

resyuz

Member List

zoran maksimovic
OwlNZ
smilesai
Alex1123123
Perry Bynum
lewiscobley
Chris Aus
oaix
Robert McGinley
DarcyThomas
LukeFothergill
DaverDee
jessie2
nkh121
Phorceful
Sai Kakarlamudi
pschmidt
poundsmack
Qing
swordman
Only Title

resyuz's Q&A profile

  • SQL Server SQLExpress Intermittent Login Errors

    This is very strange... After installing the Advanced Services package, I started getting errors connecting to a database (.MDF) that I've been using for weeks/months. The error was something like "login failed for machine\user". After twiddling with the connection string and starting and stopping the SQLEXPRESS service it started working again. Did some more work, everything was fine, shutdown and went to bed. This morning, I am unable to connect to the database - nor any other database, it seems. This time I'm getting "cannot find the physical file" type errors. Any leads on solving this would be much app ...Show All

  • Visual Studio Self-contained Embedding

    Is it possible to make a self-contained embedding as AClass->BClass->AClass At present there are quite severe restrictions on the domain models that we support.  Every class can only be embedded once; and every class that can have a shape on the toolbox must be embedded in the root class.  The consequence of this is that the shape you propose is not supported.  These restrictions will be relaxed in our V1 release. Steve Cook [MSFT] ...Show All

  • Visual C# Retrieving from a DataRow

    Can I retrieve a field from a DataRow wtihout having to cast it to the correct type I have a class that contains a DataTable member. The default constructor fills it from a table on an SQL server. Once created, getters return lookup items from the table, based on received criteria. The getter methods accept a string or set of strings, apply a Select on the member tables, and set a result string from the data table. For example: public string getLocationData(string SiteID, string Location) { string result; DataRow[] rows = LocationInfo.Select("Practice = '" + SiteID.Trim() + "' And Location = '" + Location.Trim() + "'"); if(ro ...Show All

  • Visual C++ Problem In MFC AppWizard(exe) 2

    my code is like this: double kk; kk=1234.123; bb.Format("%d",kk); pOUTPUT->SetWindowText(bb); The output from the program above is not 1234.123. How come like this Is %d incorrect Please help me solve this. This control might help you out: http://www.codeguru.com/Cpp/controls/editctrl/maskededitcontrols/article.php/c3915/ Tom ...Show All

  • SQL Server Directly printing Report from RS without previewing

    Hi All,    Is there a way to send a report from Reporting service directly to the printer without previewing in VS 2005 web application I tried out an example which exports the report into a pdf and then sends it over to the printer but apparently it did not print. It stopped working after saving the reoprt on the client machine. The article is located at http://www.codeproject.com/vb/net/RSPrintLandscape.asp Thanks for the help in advance. Sanat Thanks for the link Brian - this is almost exactly what I need to do (automatically print local reports). My ADO.NET skills are not quite up to par - how would I modify the ...Show All

  • Visual Studio Express Editions agreed

    I am the CTO of a large Microsoft-centric tech consulting service. I have spent considerable time over the past month studying and trying out this new starter kit technology. While I must say these starter kits are a great idea, the reality is that they are so poorly supported as to make them worse than useless - they are a waste of time and energy. My take is that they can't be easily installed correctly, as I have attempted installs of each starter kit on various systems, local and remote, and nothing runs. I have wasted hours on these forums, finding an incredible number of similar postings that mirror my own experiences, but none con ...Show All

  • Windows Forms Thread operation not valid

    I see the following in the output A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll System.Transactions Critical: 0 : <TraceRecord xmlns=" http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord " Severity="Critical"><TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Reliability/Exception/Unhandled</TraceIdentifier><Description>Unhandled exception</Description><AppDomain>PremiumCharger.vshost.exe</AppDomain><Exception><ExceptionType>System.InvalidOperationException, mscorlib, Version=2.0.0.0 ...Show All

  • Visual Studio 2008 (Pre-release) NAT traversal

    Can anyone recommend a book or article covering the topic of NAT traversal and WCF. In particular, I'm curious as to how a CallBack interface is affected when I use duplex communications. Hmmm.. Can you send me an email at smason@microsoft.com and I'll reply with the ppt. Thanks! Scott ...Show All

  • Smart Device Development Sending SMS

    Hello Everybody Can any body help me in writing VB.Net code for sending SMS over GSM through .Net compact frame work Thanks you need an sms gateway to use to send sms text messages. These can be purchased from some company on the internet. The company usually has a web service which you use to send the text message to including the recipient number and text message. ...Show All

  • Visual C# UserControl Events

    OS: Windows XP Pro Lanaguages: C# Program: Visual Studio .NET 2005 hi ppl. im lookoing for help, i have a problem. i created my usercontrol and it has nothing on it but a listview that is filling my whole user control.. and some little pictureboxes arround it... what ever that does not matter... the thing is that when i add the control to a form that im using i use an event... "Enter" ... so when it become ActiveControl or the focus enter,,,it trigger the event... but that never happens... then i knew why.. ...Show All

  • SQL Server Change query issues

    I am trying to take this statement: Select Total = SUM(gt) FROM (Select Distinct CustomerName, CustomerNumber, FeeGoal_AZ AS FG, FeeSchedule, (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS gt from DCR WHERE branch='00002' group by CustomerName, CustomerNumber, FeeGoal_AZ, FeeSchedule ) as dTable and change up (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS gt I need that part to do this instead there: (PostedAmount + Sum of all PDC where the PDC in this month + Sum all CC where CC in this month) / FeeSchedule) * 100 as gt Here is my failed attempt: ...Show All

  • Visual Studio 2008 (Pre-release) Canvas, Rectangles, ClipToBounds slowness

    We are thinking about starting a new moderately complex graphical application in WPF. But before committing to the platform, we are testing features to see if WPF can handle it. >:) One test application so far has a Canvas with ~800 Rectangles (added with C# using “canvas.Children.Add(..)”. These rectangles are movable by dragging them… implemented with Canvas.SetLeft(rect, newLeft) and Canvas.SetTop(..) from the MouseMove handler. I need some tips on how to speed this up. Currently dragging a single rectangle around causes 100% utilization with 20 FPS on a Xeon 2.8GHz… even turning down to 50 rectangles seems ...Show All

  • Visual Basic Printing A Calendar Control On A WinForm

    Using vb2003 how do i do send a forms contents to the printer in this case a calendar control. The previous samples given appear to be using richtext controls i simply need the calendar sent to the printer (like printscreen basically) Thanks in advance. You can try the code on this site: http://weblogs.asp.net/mschiffer/archive/2004/07/13/181111.aspx ...Show All

  • Visual Studio Team System "Audio/Video Files" is invalid Source Control File Type

    I attempted to add a new C++ source control file type to VSTFS Beta 3 and received the error: Failed to update file types to server myserver.mydomain.com for the following reason.  TF10165: The workspace name Audio/Video Files is not supported.  It must be less than 64 characters and cannot contain any of the following characters:  "/:<>|* If I rename the built in type Audio/Video Files to Audio-Video Files, everything works.  I did not change anything with Audio/Video files.  I think the name should be changed by Microsoft before the release is made. Michael This is documente ...Show All

  • Visual Studio Team System Problem with Tests after renaming project

    Hi, We ended up having to rename both the project under test as well as the associated unit test project. The unit test project used to create a binary called TestContext_UT.DLL. It now creates a binary called UnitTestTest.dll. When you attempt to run a unit test, however, the test continues to look for TestContext_UT.DLL as the storage for the test. Where to you change that information One more question, why can't I delete a test from the test list. I can disable it, there is a CUT in the menu, but it doesn't do anything As I was adding and removing tests, the test list continued to contain items that no longer existed. Thanks. ...Show All

©2008 Software Development Network