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

Software Development Network >> 5Bucks's Q&A profile

5Bucks

Member List

MT100
Omkar Singh
DMartin
Lytse Sippe
LordFord
hermanluk
Rick G. Garibay
manicm
longrujun
Roy Muller
pablo-ms
VidyaMN
sdflksdfsda sdfklsdf sdk ksdfk s
Malini Reddy
twjolly
Eliasoft
janislkovach
Laurence Melloul - MSFT
Guy Pilk
Samuel Zhang
Only Title

5Bucks's Q&A profile

  • SQL Server Updating Table Structures

    Colleagues: When I try to save changes made to tables in SQL Server 2005, I get a time out error about 30 seconds after I initiate the save to the changes made to the table. I then have to back out of the "modify table" operation and I lose my changes.  I never had this problem with SQL Server 2000, even in tables with millions of rows - it would take a while, but I wouldn't get the time out messagand the updates would be saved.  Any ideas as to what's going on Thanks, SMM 29.11.2005 Hi Christian: Thanks for writing - here's the error message I get after initaiting a save of a change to a tab ...Show All

  • Windows Forms Using Updater Application Block as a service ...

    Hi everyone, I hope that this thread isn't too off topic, but I can't find anywhere else to post it. So here's my problem...I'm trying to use the updater application block as a service, but I'm running into the following error.  If the application is open while trying to run an update, it throws the following exception: An unhandled exception of type 'System.IO.FileNotFoundException' occurred in Unknown Module. Additional information: Could not load file or assembly 'Microsoft.ApplicationBlocks.Updater, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. ...Show All

  • Visual Studio 2008 (Pre-release) Complex query that causes problem ?

    I wote the following: // One database that contains Users table I want to import to new database FirstDb db1 = new FirstDb(connStr1); // The destination database that is slightly different from the first. SecondDb db2 = new SecondDb(connStr2) ... var q = from e in db2.Users            where e.GroupName == "Group1"            from o in db1.Users            where o.LoginID == e.UserID && o.CategoryID == ... // Then I do some check against sequence q if (q.Any()) . ...Show All

  • Visual Basic Insert - Select statement with variables. VB 2005.

    I have a TableAdapter. I'm trying to create Insert query with wizard: INSERT INTO InvDetails                       (InvoiceID, Job, Qty, ProductID, Price, Amount) SELECT     @nID AS InvoiceID, 'P/U' AS Job, Qty, ProductID, Price, Amount FROM         InvDetails AS InvDetails_1 WHERE     (InvoiceID = @oID) It works fine, when I execute it in Query Builder window. It asks for @nID and @oID values and everything is fine. But when the query is saved, it doesn't sho ...Show All

  • Visual Studio Team System What happens when the trial expires? Where is Team Suite? How do I upgrade? Partners?

    Some frequently asked questions... Q: I am an MSDN Universal Subscriber; why can't I see any of the role-based products or Team Suite in the MSDN Subscriber Downloads Center A: You have not yet submitted a transition request. You must transition from MSDNU to one of the role-based products or upgrade to the Suite. See http://msdn.microsoft.com/subscriptions  for more information. Q: How long does the transition request take A: For a retail subscriber it will take 24-48 hours from transition choice to access the new level/role. For a Volume Licensing admin to assign a role choice and then the user to get download access should be nea ...Show All

  • Windows Forms From java packages to C# assemblies, how to redesign?

    Hi I am a new c# programmer since my project let java on the tablet to do programming on windows.  I was building an application all customized.  I had : 1.  my own custom widgets (text areas, buttons, backgrounds).   2.  what I called my components (group of widget ) ex: group of my buttons to build a keypad 3.  the main applicatio ...Show All

  • Visual Studio How to get data from xml files in VS 2005?

    I have several xml files with data and tables in them. Is it possilbe to set data source of the report from xml files How to do that in VS2005 Thanks! auhe I was able to set up a report connecting to an XML file and preview the report. But when I run the application, it is asking for a user ID and password. I am not sure what it is expecting. Can you help Dave   ...Show All

  • Windows Forms Need help with Side By Side and No Touch

    Perhaps this isn't the place to ask but I need a bit of help in getting No Touch to work and forcing the app to start with a certain version of the framework.  How do I get a 1.1 app to use the 1.0 framework.  I have a 1.0 and a 1.1 version of my app and can get them to start with whatever framework I need b ...Show All

  • Windows Forms Custom control cannot be moved in VS.NET designer

    Hi all, I developed a custom control derived from ScrollableControl. After I dragged my control onto a test Form, the control can be selected, but I cannot use mouse to move it around or resize it as I can with normal controls. However, If I used the property browser to change its Location or Size property, it takes effect. What is the possible cause of this problem Thanks in advance If your TestControl works fine, then I have no idea what is the real cause of the problem. In my case, however, when I removed the line base.AllowDrop = true, it solved the problem. And it's definitely not b ...Show All

  • .NET Development Session timesout prematurely

    I am having an issue with session timing out early. I have sever web sites running on a single server. The timeout is set to 20 minutes but it will time out at different times as short as 20 seconds. What would cause this besides an exception. Is there a threshold for session state in the servers memory Please help!! Your session can restart because of lots of reasons. I believe Every single time the web.config or executable files in the bin directory are written to this may cause session variables to be thrown away due to the application being rstarted. ...Show All

  • Visual C++ Module manager

    Alright, i need this in my program, and because i cant find any information about it on the internet, i had to ask it. Some more explanation, with a module manager, i mean that peaple can create a user controll wich my program can load and use on runtime. so in my program you get a form wich askes for ( for example ) a dll file in wich a usercontrol is created. when you click ok, you see the usercontrol from the dll. Can anybody turn me in the right direction thanks already! Alright, i kind of solved this problem myself :) after lots of research, i finally found the name of the assembly class in a topic, ...Show All

  • Software Development for Windows Vista Possible to make working WWF runtime on Windows 2000 ?

    I very need to make my WWF program Windows 2000 compatible, but in WWF compatibility list Win2000 is not presented... Is it Possible by some patch to make working WWF runtime on Windows 2000 even only for runtime - for client users compatibility, not visual studio WWF tools, that I can use under Windows XP for development. Thanks you Unfortunately Windows 2000 is not a supported operating system. Please do not use WWF as an abrevition for Windows Workflow Foundation, use WF. ...Show All

  • Windows Forms Sample Code: TreeGridView - collapsing/expanding DataGridView

    I've just started a blog and the first main post is a sample that I wrote to customize the DataGridView to support collapsing and expanding. I call it a TreeGridView: http://blogs.msdn.com/markrideout/archive/2006/01/08/510700.aspx   Let me know what you think!   -mark DataGridView Program Manager Microsoft This post is provided "as-is"   Fantastic code Mark!! I have been looking and wondering if this was possible with the datagridview for sometime now. Thanks Alot!!!! ...Show All

  • .NET Development .NET 2.0 Error

    I have created a webservice at the location //localhost/WebSite using VS 2005 Beta 2. The webservice contains nothing but the helloWorld web method. When I run a debug I get a server unavailable error in IE and the following in the event viewer: Warning: Failed to initialize the AppDomain:/LM/w3svc/1/ROOT/WebSite Exception: System.Web.Hosting.HostingEnvironmentException Message: Failed to access IIS metabase. Error: Failed to execute request because the App-Domain could not be created. Error: 0x80131500 Does anyone have any idea why this is happening or how I can fix it If more information is needed please let me know. Thanks ...Show All

  • Visual C# How can I post HTML contents with HttpWebRequest?

    Hello friends,            I want to post contents of an HTML file using HttpWebRequest. can any body help me wow this can be done   The size of the file is more then 10kb. I think Query string is not helpful due to it's length limitation. of 2083 charectors. Rgds, Kiran Suthar. Hi, You can try this code: private string GetContent(string pFilename)         {                      string str_path = "url"      &n ...Show All

©2008 Software Development Network