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

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

mroctober

Member List

Balmor
coreywelsh
csexpert
- Greg -
Joel Joines
Sushmitha
Colin Grealy
Big Rob
Hakop000
nfaustino
GVaughn
Vitaliy Voloshchuk
Deken
Kdean6869
Anzu
LarryNeedsHelp
Print
omni96
Meeta Kherdekar
Chris P.
Only Title

mroctober's Q&A profile

  • SQL Server installation bug found SQL Server 2005

    Hi! I had the earlier builds and this did not happen but: just downloaded SQL Server 2005 (RTM) from msdn When selecting to install integration services (amoungst other options), whilst installating it gives me an error saying I do not have admin privledges to install one of the .NET libraries/runtime files I cannot remember the file name at all im afraid. Error: 0x80131501 So I cancelled the install and just installed everything but the integration services... and it works fine now. I do not know if this is a bug but just thought I would let you know Hello. My fix is the same as yours. Install a little less at the time. Do it in t ...Show All

  • Visual Studio Team System Errors in Team Build - TFS RC

    I've recently upgraded to TFS - RC and all is going well, except for Team Build. All the solutions build successfully when they are on their own (i.e., in their own individual build), however when I combine them up into a single Team Build, it crashes part way through with the following Error in the Application Log. (Below) I can't see any errors in the build log, it just stops ! I have tried several orderings of solutions, and it seems to die around the same point, which is in the the 5th solution, regardless of which solution the 5th one actually is !. Any thoughts Regards Mark. Application log Error: TF53010: ...Show All

  • Visual C++ What happens inside CryptDeriveKey?

    I am translating the CryptDeriveKey to Java but the algorithm implemented doesn't work correctly. The code in Java is: private static byte [] CryptDeriveKey( byte [] key, int size, int algorithmType) throws Exception {     byte [] buffer1  = new byte [64];     byte [] buffer2  = new byte [64];        Arrays.fill(buffer1, ( byte )0x36);     Arrays.fill(buffer2, ( byte )0x5C);     for ( int i = 0; i < key.length; i++) {         buffer1[ i ] ^= key[ i ];            ...Show All

  • SQL Server Add the PageHeader, with Title of the report as trhe same time with the image through code

    I did some research and I found there is a way to generate the RDL file dynamically at http://msdn2.microsoft.com/en-us/library/ms170239.aspx , and at http://www.gotreportviewer.com/ (Generate RDL Dynamically sample). My questions are: 1) Could we add the title of the report with image in PageHeader of the report dynamically, using the same method as generating RDL file through coding 2)Could we generate the RDL file dynamically with the chart as the same method I mentioned If it is possible, may I have the syntax (code sample) how to do that ...Show All

  • Windows Forms ListView in c#

    How to rename a listview content in c# when a button called rename is clicked Willfin David. What do you mean 'rename content' You mean how to change the content A listview has a SelectedItems and an Items property. This contains all the items in the listview. A ListViewItem has a text and subitems property. You can change those... ...Show All

  • Visual Studio system.OutofMemory

    When I try to run a report from a database , I am getting an error saying "An error occurred during local report processing System.OutofMemory was thrown". funny thing when I run the sql in the dataset runs fine. I cleaned up my hard disk (just in case)..I only have 5GB free.. I have been reading documentation everywhere and I can't find anything. I haven't even tried to do the fancy things in the report yet I have only been trying to run a table with the fields on it... that's it no grouping...no parameters nothing.. any suggestion...please I am desesperate this project is due in 2 for my final....thanks ...Show All

  • SQL Server MDAC and SQL Server 2005

    In the SQL Server 2005 upgrade advisor help file it states the following... "Upgrade Advisor detected an older version of MDAC. MDAC versions before MDAC 2.8 SP1 do not support named instances. To allow application connections to named instances, upgrade to MDAC 2.8 SP1." I've installed our application which uses ADO (not ADO.NET) to connect to an SQL Server named instance on a client machine.  Our application installs MDAC 2.6.  Therefore on older machines such as Windows 95 MDAC is upgraded to 2.6.  Our application can still connect to the named instance without MDAC 2.8 SP1 being present. Is this statement in the upgr ...Show All

  • Windows Forms Form.Show() shows form minimized!

    I am making a multi form application. I want to make it so if someone hits the X on my child form, it shows the parent form again. I am using the Form.Show(); method, and also tried the Form.ShowDialog(); method. Either way, the parent form shows up but it is minimized in the taskbar. How can I get it to show maximized Thanks, Hello Yeshia, have you tried "Form->WindowState = Windows::Forms::FormWindowState::Maximized;" ...Show All

  • Visual Studio Team System Bug in team build report in beta3??

    I have strange problem with Beta 3 (I have to test it on refresh version also), when I launch a Team Build from Team Explorer, if I keep the "report" Team build generates, code coverage results are not included in that report page, but if I close the page just when it starts to be generated (when it first appears beginning team build), code coverage results are correctly included, it's not big problem for the moment (it's beta I know) but it is curious The 32 bit warnings that are generated is a known issue. Will you please open your test results in VS and check if code coverage data is present in the code coverage window You can do thi ...Show All

  • Smart Device Development VS.NET 2005 BETA2 : Could not establish connection to network

    Hello to all! I just create one simple solution in VS.NET 2005 Beta2 with 2 projects: -webservice project (just with default HelloWorld web method) -smartDevice project (who call HelloWorld web method) When I try to call WebMethod the error occurred (I use PocketPC 2003 Emulator): An unhandled exception of type 'System.Net.WebException' occurred in System.Web.Services.dll Additional information: Could not establish connection to network. When I write the same code in Windows project everything works OK. In VS.NET 2003 also works OK. I use this code: -----------------------------------------------     localhost.Se ...Show All

  • .NET Development CompileAssemblyFromFile parameter change in 2.0

    I have an app (built with VS2003) that uses CompileAssemblyFromFile has been working just fine. Now when some users load NET 2.0 on their system it fails. Doing a bit of research it looks like the parameters for this function have changed -> NET 1.1 (An string containing the filename) CompilerResults CompileAssemblyFromFile ( CompilerParameters options, string fileName ); NET 2.0 (An string array of filenames) public virtual CompilerResults CompileAssemblyFromFile ( CompilerParameters options, string[] fileNames ); I know that the users will have NET v1.1 on their system if they are running my app. How can I ...Show All

  • Windows Forms Moved Database - now Datagrids won't load

    I have a Windows Forms app that accesses an MS Access database. I save the database path and file name in a text file, and retrieve it at startup so I have the database path to connect to. I want to use this Database path whenever I need to make connections. I tried to create a form with a datagrid and only use code to populate  ...Show All

  • Visual Studio Express Editions Hot to protect my program

    Lets say that I create a program that is actually useful and I want to provide it to some people to use. How can I protect the program so that only the people I authorize can use it How is licensing implemented Thanks Hi Carl, You might want to take a look at the free Shareware Starter Kit available at: http://msdn.microsoft.com/vbasic/downloads/starterkits/default.aspx It includes code for product activation and registration - review the code to see how it works, and then "borrow" what you need for your own program. Hope this helps, Steve Hoag Visual Basic Express ...Show All

  • Visual FoxPro Connect to Outlook Express and Microsoft Outlook

    Dear Expert, Can I know how to connect to the Outlook Express and Microsoft Outlook using FoxPro Like the data in a memo feild how I connect or send out using the Outlook Express and Microsoft Outlook Or Can I generete email using FoxPro Thank you.     Outlook Express Not directly. It is not a COM Server MS Outlook Yes through COM Automation. You take a reference with oOutlook = CreateObject("Outlook.Application") and then you have complete control of its object model. You can use an Object Browser and Intellisense to inspect the DOM. ht ...Show All

  • Visual Studio How Can I add some data to specific page ??

    Hi I have report and I know it's only 3 pages …. If I need to add some text data to page 2 .. How can I do that Means How can I add text information (maybe from Parameters) to specific page .. Like only page 2 And thanks with my best regarding Fraas hi In second page add text filed with instabce name textTitle and i n run time u can get to this filed and write in anything u want TextObject textTitle; textTitle = Report.ReportDefinition.ReportObjects["txtDetails"] as TextObject; textTitle ="HELLO ..." I hope its will help u ...Show All

©2008 Software Development Network