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

Software Development Network >> NumberFour!'s Q&A profile

NumberFour!

Member List

Lawrence 007
wutwjd
Bassam72
Cosmin Nicolaescu
Rame
hr0nix
allenwfc
MarissaM
chazparks
ReneeC
Walter Poupore - MSFT
jasmine pham
sakarmo
ElliotHC
Andrej Tozon
Kvschaganti
polocar
OsoPolar
MasterBodyman
chakravarthy_b
Only Title

NumberFour!'s Q&A profile

  • Windows Forms Form size problem

    I made an empty form and it size is 300x500. When I run .exe file I can see that form with size 300x500. But when I run that .exe on another computer, form's size become 227x408. What is the problem Thanks, Soner. ...Show All

  • SQL Server Long wait times for simple SQL on 2005

    I have an existing application deployed on many SQL 2000 servers running without issue. We installed SQL 2005 (8 way DualCore) and the most simple trivial SQL statements are taking an extreme amount of time (e.g. an identical query in 2000 took 10 ms is taking a couple of minutes in 2005). The data in the tables being queried are very small (low row count < 400; and low row size < 1k). When profiling 2005 we see the connection going into a status of 'suspended' with a wait type of 'ASYNC_NETWORK_IO'. There just simply is not enough data being retrieved for a lag to occur returning data to the client. Has anyone seen anything like this Any thoughts I haven't seen anything relating to NETWORK_IO, ...Show All

  • Smart Device Development Problem with HttpWebResponse

    Hi, I have some problem with the following code : HttpWebResponse result = (HttpWebResponse)req.GetResponse(); //result.ContentLength -> 159 Stream ReceiveStream = result.GetResponseStream(); //result.CharacterSet -> "" //result.ContentType -> text/html; charset=utf-8 //result.ContentEncoding -> "" //result.Headers -> Date: Tue, 25 Jul 2006 10:58:47 GMT Server: Microsoft-IIS/6.0 MicrosoftOfficeWebServer: 5.0_Pub X-Powered-By: ASP.NET X-AspNet-Version: 1.1.4322 Set-Cookie: ASP.NET_SessionId=zmksm055kvyigzmlvxgohqe2; path=/ Cache-Control: private Content-Type: text/html; charset= ...Show All

  • SQL Server Saving changes in MDX

    Hi, I have written a report in Reporting Services 2005 which gets its data from a cube. I want to edit the mdx generated by the Mdx builder in RS 2005, so I click on the "design mode" button to do this. However, when i make the changes, i cannot save it. How can I do this Thanks, Ashleys. The only time it seems that you can't save the mdx changes are when they are not syntactically correct. Paste the same query into management studio and see if it runs w/o errors (and if you have @parameters in the query, use actual valuse for them instead). ...Show All

  • Visual C++ Constructors for global variables are not called???

    I have a VC++ project B that is linked into a static library "B.lib". This library is linked into project A which creates A.exe. The constructors for the global varaiables in B do not get called. 1. If I have golbal variables in A then there is no problem - the constructors for those get called. 2. I f the solution (Project A and B) get linked on my coleagues computer then there is no problem. 3. The whole soltion is shared between us via rational clearcase so we have the same sources and the same project files. - so it must be one of the flags of visual studio - but which Thanks, D. dannyg View Public Profile Find all posts by dannyg Add dannyg to Your Buddy List ...Show All

  • Visual C++ Is it possible to consume a VB.Net .dll from C (unmanaged not c++)

    I have a VB.Net dll that contains functionality I need to access from a C program. As GetProcAddress won't get me where I need to go (right ) and I cannot create an instance of anything (C not C++) is there a route possible to loading this library Gordon, Thanks for bearing with me on this. I am treading into unknown territory and the only thing I am finding is just how lost I am. First let me clarify that I am using the VS 2003 IDE not VS 2005 so gcnew and handles are not available (right ). Anyway, after much finagling I seem to have something that works. Well, at least the code you gave me can be compiled into something that runs. Now I have to see if I can apply this new found (oh alright given) k ...Show All

  • .NET Development Microsoft.Office.interop.word problems

    I may having issues with the microsoft.office.interop.word. Dim someword As Microsoft.Office.Interop.Word.Application Dim somedoc As Microsoft.Office.Interop.Word.Document someword.Application.Activate() somedoc.Words.Application.Run("sorting_macro") The issue is that when I run it i get an error that says the "someword.app.activate" --- object reference not set to an instance of the object--- Another issue is that when i run it i can also get an error that says: microsoft.office.interop.word_document failed Does anyone know how to make vb.net run a macro in MS word 2k3 any help would be grand!!!!!!!! thanks in advance for the help! Try this: Imports Microsoft.Office.Interop Publ ...Show All

  • Visual Studio Team System workItem user id

    Hi, I'm trying to integrate the workItem traking system with my database, so I need to get the users "IDs" out of the workItems objects like (changed by, Activated by ...). could you help me please Nobl you mean ...try to get the users ID's from the database... If so, the user details are stored in the database "TFSWarehouse" under this Person table which will get you all the details about the users and user id's and display name of the user..etc.. TFSWarehouse Persons __ID -> Person ID and to get the link like ChangedBy or Activated By ..you can get the info from the table "Current Work Item" under the TFSWarehouse database itself. In this table ...Show All

  • Windows Forms Can ClickOnce provide an 'Uninstall' method?

    I'd like to make it easy for users to uninstall a ClickOnce program. Is there a way to set ClickOnce to include an uninstall option Either as a link on the publish.html page, Or in the startup group created in StartUp > All Programs David: Thank you for your response. I feared that was the answer: The same one I reached after far too much time researching the question. Doesn't it seem reasonable that the Click-Once approach include an "Uninstall" option Certainly providing the user with such a handy, easy-to-use option wouldn't harm security, would it Again, thanks. N.C. Gordon. David Guyer MSFT wrote: I just checked system.deployment.dll, and I don't think there's any way to remove i ...Show All

  • Visual Studio Express Editions Saving Information

    Hello, I a making a program that will be opened once a day probably and some information will be imputed. How can I save the informaition to be used at a later date. I basically need to use something that is like a variable accept that the variable will be saved and after the program is closed and opened again it can be used. thanks Average Joe there are a good few topics about this. It depends how you want to save the information. You can save it into a database, a text file or perhaps an Xml file - the call is yours. It really depends what type of information is to be saved and who is going to be accessing it. When the program closes, simply save the data you want either when the us ...Show All

  • SQL Server Interactive sorting of a list

    I have a list data region that has column headings outside the list. I would like to be able to click a column heading and sort the list. However I cannot do this because the scope of the header can't access the list. Has anyone sorted a list by clicking textbox column headings Please help. Hi Patrick- In general, when applying a user sort, you can sort items that are at the same scope, or are in a child scope. You might try setting the textbox to sort on the data set wihch the list is using, and then set the sort expression scope to details. If you are using RS 2005, I've included a sample RDL below. Just copy the text to a file, rename the extension to .rdl and open it in report designer. -Jon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creators Club

    Quick question about membership in the Creators Club. I have 3 profiles registered on my Xbox 360. If I enroll my profile (GamerTag) in the Creators Club and upload a game will all rest of the local profiles be able to play the game as well All three profiles are Gold level profiles. Thanks, Mike No. I just tested this with Spacewar and a second profile (the one not associated with the Creators Club) and received the following message: http://www.tdprograms.com/i/2006/xna-noprofile.jpg ...Show All

  • Visual C# Code Tip (completion) problem in VS 2005.

      If I use 'b' or 'c' as a variable and if I type 'b' and space,  the code tip (compeletion)  will put 'base' or 'case' in my editor in VS 2005,  how can avoid this Hello All. smart pig: Double-check that you're not trying to use 'b' or 'c' outside of their declared scope. HTH. ...Show All

  • Visual Studio Team System Building BizTalk 2006 Project on TFS

    I am setting up TFS for the first time. We are going to do a single server setup for SQL, TFS, Team Explorer etc. The build server will be a separate server. I am planning on installing Visual Studio Team System for tester on the build server. I wanted to confirm if I also need to install BizTalk 2006 on the build server. I am assuming this is need to be able to build BizTalk Projects. Are there any instructions for installing BizTalk on the build server Does the install order matter Thanks Raj Sorry for the long delay in answering - I am not aware of any instructions for installing BizTalk on the build server, any gotchas in doing so, etc. If you have not already discovered this, however, MSBuild does not support building ...Show All

  • Visual Studio 2008 (Pre-release) this.Invoke dosn't work in 3.0 (Is Invoke Supported) Help Please

    Ok,i'm woundering why the msdn articles say invoke is supported in .NET 3.0 Framework but dosnt work at all..Even when i put in System.Windows.Forms.dll as a Reference & use " using System.Windows.Forms; " in my .cs file.. Why it tells me Window1 does not contain a definition for 'Invoke" (Error 1 'iSCS.Window1' does not contain a definition for 'Invoke' ) Run my code in .NET 2.0 on a Form and it works fine flawless, than the msdn articles say Invoke is supported for .NET 3.0 Framework.So if System.Windows; can use "Invoke" someone tell me how cause its not working even with .NET 2.0 Form Reference.. Can i get some help on this issue public void ReceiveMessage( IAsyncResult ar) { try { ...Show All

©2008 Software Development Network