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

Software Development Network >> 1gotoguy's Q&A profile

1gotoguy

Member List

Karel Kruizenruiker
jero529
AJN
Maleeha Ismail
ornorn2
Tom Arnold
Ramon Balboa
churchill
Steve Allen
David Clausen
Erling Johansen
mmmmBeeeer
Thankaraj
jodz
louise g
IP
M.D.A
John Marsing
Derek.Zhang
famwam
Only Title

1gotoguy's Q&A profile

  • Smart Device Development pocket pc emulator 2003 issue

    hi, I got the following error, when i connect the emulator from Visual studio .net 2003 from "tools" menu then "connect to device". The Error is " Emulator device installation failed,most common cause:user does not have administrator permissions" can you help me, how to resolve this. i have installed pocket pc 2003 sdk , visual studio .net 2003 and emulator images for pocket pc 2003. thanks and regards, Naga.S Sorry, but this forum is for questions related to the DeviceEmulator, which is the new emulator that first shipped in Visual Studio 2005. You might want to ...Show All

  • .NET Development BackgroundWorker problems

    Ok.....I have a while loop that executes an increment on a counter for a couple thousand times. I want to be able to show the progress on the counter using a progressbar. Now, I am executing the while loop in the DoWork method of the background worker and updating the progressbar in the ProgressChanged method and when i call RunWorkerAsync then things go wrong. My problem is that the progressBar updates properly and the count increments...however my form's UI is unresponsive...it registers click events on the cancel button but it waits until the backgroundworker completes before it actually does what it has to do. If i introduce a Thread.Sle ...Show All

  • Visual C++ Programmatically Create Workspace (DSW) and Project (DSP) Files from List of *.* Files?

    I often bring a list of .C and .H files from a customer's project to my computer, but do not have a Project or Workspace or MAKE file.  I would like to open a new Visual C++ workspace and project and attach a list of .C and .H files.  I do this now manually. Is there a way, or has someone already written a script to create the DSW and DSP files (and other files created by Visual Studio for a new Workspace/Project)   I want to:    1. Start with a folder with a list of .C and .H files.    2. Run a script (it could be an EXE program written in Visual C++ <grin>)    3. Have a ...Show All

  • Software Development for Windows Vista LockProfile of IStreamBufferSink

    I am working timeshift function in Windows vista. I have to use IStreamBufferSink::LockProfile function. But it is failed in Windows Vista. In DirectX C++ MSDN, it is written that This topic applies to Windows XP Service Pack 1 only. How can I do for use LockProfile in Windows Vista Pls, help me. Wherever it says "This topic applies to [some version of Windows]" in the DirectShow documentation, it should really say "... or later ." (We're trying to fix all of these instances in the docs.) If something is removed for Vista, it will be clearly marked as such. Regarding LockProfile, a ...Show All

  • Visual Studio Unable to Delete Subreport in VS 2005 Embedded Designer

    Is this a problem in the Beta package or am I missing something   I insert a subreport (linked, unlinked, on demand or not) and am unable to ever cut it from the main report. thx, Linda Williams Hello Linda, Do you know the CTP version you were using June, July or August I just want to verify that it is working for me in that build. Thanks, Keith - Business Objects ...Show All

  • Visual Studio Tools for Office newbie to vsto with problems

    My Apologize is there is a thread about this already, but I've searched the forum and haven't found anything. I just installed VSTO and can't seem to run any of the code. It starts up the app (I tried word and excel) and then nothing happens. I tried to have a message box in the thisdocument_open event and nothing pops up. If I place a breakpoint over that line, it says this line will never execute. I also tried loading the VSTO Labs and those don't run either. I re-installed office -pro 2003 and VSTO. This is solved, thank everyone for all the help. I originally started out with an instal ...Show All

  • SQL Server Existing Statement with Calculated Members

    Hi, I have a Calculated Measure that makes use of the Existing statement to establish the members of a particular attribute hierarchy of my "Geography" dimension that are in context at any particular time. These are then summed over to produce a value to be used in the rest of the calculation. This has been working fine until I came to create a calculated member (e.g. a group of members from a different attribute hierarchy) on the Geography dimension, at which point the Existing statement appears to not be able to correctly pick out the correct context. I realised I will need to work around this by using filter as an alternat ...Show All

  • Windows Forms How do I set the color of an InputBox scrollbar?

    Also, how do I get access to styling type properties of MessageBox and InputBox, the problem for me being that they are static methods of some class, and not objects themselves with readly accessible properties. Thanks in advance You are more likely to get an answer on Windows Forms related questions in the Windows Forms General forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=8&SiteID=1&PageID=0 ...Show All

  • .NET Development Search and copy strings from steam in txt file

    HI, i made program that download html page as .txt file and open .txt file as steam in C#. Now i need to search this .txt file which i could load with streamReader, find the words i need to and paste them to the new file or database.. But i dont know how to use indexOf /to search the file/ with stream Could you help me please IndexOf(....) will give you the starting index of the word you are searching. The best approach i think is that , as you are searching for words, split the entire string by using the Split() function, this will give you array of words in your string. Now compare each w ...Show All

  • SQL Server Foreach Loop Container in SSIS

    Could someone send me any links or information on how to loop through an ADO.NET dataset in SSIS I need step by step information please. Thank you, Shiva Here are BOL topics that might help http://msdn2.microsoft.com/en-us/library/ms187670.aspx http://msdn2.microsoft.com/en-us/library/ms141724.aspx http://msdn2.microsoft.com/en-us/library/ms140016.aspx Some other helpful links http://www.whiteknighttechnology.com/cs/blogs/brian_knight/archive/2006/03/03/126.aspx ...Show All

  • Windows Forms System.Net.TLSStream

    I have a VB.NET application that needs to make a httpwebrequest to a secure server on a non-standard SSL port. Everything works fine connecting on port 443, but I am required for production work to connect via port 5004. When I use port 5004 I get an  error when my application tries to do its stream.write method. Error and stack call are  ...Show All

  • SQL Server conversation groups and processing in order on the target end

    Is there any way to ensure that messages sent on different dialogs have the same conversation group id on the target queue   I was attempting to set the conversation group id on the dialog before sending but learned that this only works on the initator end.   http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=174976&SiteID=1 I have messages that could be sent from different applications (and at slightly different times) that need to processed exclusively (i.e. have the same conversation group id). Message ordering is guaranteed within a conversation. Is there any reason that stops yo ...Show All

  • Windows Forms Strange Errors in VS.NET

    Have any of you experienced the following error while compiling a windows forms application: The application fails to compile and the errors are on lines numbered  16707566 +/- .  If you click on the error in the task list it doesn't take you anywhere.  The solution is to close the solution and re-open it. I'm just curious, and yes I am using ...Show All

  • Visual Studio Visio and Visual Studio 2005 (Standard)

    I have Visio 2003 (Professional) on my system and I would like to use it with Visual Studio 2005 for reverse engeneering without having the expense of upgrading my Visual Studio edition. Is this possible If not why not - seems to me one purchases Visio in good faith and then purchases VS2005 in good faith but they do not work together! If this is true it would be like being unable to embed an Excel spreadsheet in a Word document! Hoping someone hears... Thanks, Kurt Sorry, but the fact that you have class designer built in to Visual Studio 2005, while a nice feature is a cop out. I do really like th ...Show All

  • SQL Server Blanks in columns

    Quick Question I hope. Does having a lot of blanks in a column cause errors In 2 or 3 packages where I get 95% of the data in the Error Colomn I can find nothing wrong with the data at all it all either seems perfect or there is no data in the column in question usually I would have maybe 800 rows where data would have been inserted but in the other 40, 000 rows the column is blank Using the "Retain null values from the source as null values in the destination" doesnt seem to make a differance. This is the error description The data value cannot be converted for reasons other than sign mismatch or data overflow. ...Show All

©2008 Software Development Network