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

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

dakota367

Member List

Lechal
Gidjett
Anton Papst
Kevin Hoffman
April m
Raquel23
Dominator Legend
Aatu
Giovanni A. Costa Rosa
Avi_harush
SoMeDuDe
Demokratizator
spolsky
DMottorn
Shady9399
RichParker
jrsearles
WXS123
Axe22
EoF
Only Title

dakota367's Q&A profile

  • Software Development for Windows Vista Work Flow WIth Bar Coding

    I was wondering if anyone had put together any good classes to work with barcode systems Thanks In advance John Russo scaleprogrammers.com Hi, John You may wrap your barcode system within a web service, You workflow can then call with your barcode web service.  You may also expose your workflow or the host as a web service, then barcode system can call them as well. You can have a look at the workflow Lab 06.  Hope this solution will solve your problem. Jim ...Show All

  • Visual Studio integrating Windows Vista SDK documentation into Visual Studio 2005 IDE

    Can some one tell me how to access Windows Vista SDK documentation from Visual Studio 2005 IDE I thought this would be automatic after installing the SDK. Thanks in advance. The installation sequence was: Windows Vista Ultimate (New Install) > VS 2005 > MSDN Library (August 2006) > Windows Vista SDK > NET Framework 3.0 > VS 2005 Extensions. In any case, I have completed the integration using the help collection manager, as you suggested. Thank you so much for your help. ...Show All

  • SQL Server Flattened parent-child hiearchy produces wrong results

    Why would the following query on the Employee attribute hierachy from Adventure Works produces wrong results select [Measures].[Reseller Sales Amount] on 0, [Employee].[Employee].[Employee]. Members on 1 from [Adventure Works] where [Date].[Calendar Year].&[2003] As a result of this, Report Builder reports involving parent-child dimensions are all wrong. Hello! If you paste this code in management studio(MDX-query) will it produce the expected result I am not sure about what team in MS that are resposible for Report Builder but I suggest that you put this question in the Reporting Services discussion group. HTH Thomas Ivarsson ...Show All

  • Visual Studio VSS 6.0 with VS 2005.

    Hello there, I got a trouble here. I've use for long time VSS 6.0 with VS 2003. But now i'm using VS 2005. With the VS 2003, i can make/set VIRTUAL FOLDERS at IIS normally. But working with the VS 2005 in VSS 6.0, when i set the folder at IIS it's ok. But when i go to open the PROJECT from SOURCE SAFE CONTROL in VS 2005, it's make a new copy of the project at InetPub folder's. It's the trouble. Example: I set the virtual folder "localhost://"myname" But it's creates "localhost://"projectName" I would apreciate your help. Thanks in advance. Huh My trouble's to create a virtual folder ... and redirect the project to it. Openning t ...Show All

  • Visual Studio Dynamically changing ReportViewer properties

    Hi, I have created six reports, Report1.rdlc, Report2.rdlc,.....Report6.rdlc, I want to use a single form to run these reports, that is in the Form_Load event of the form I want to write codes to select a reprot to display. Can anybody tell me how to dynamically change the properties of the ReportViewer control placed on the form. Thank you, shahid Take a look at this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=196684&SiteID=1 It has some sample code that will do what you want. ...Show All

  • Visual C# why the format is not uniform

    private void port_DataReceived(object sender, SerialDataReceivedEventArgs e) { comport.ReadTimeout = 300; String s = comport.ReadExisting(); using (StreamWriter sw = new StreamWriter(@"C:\test.txt",true)) { sw.Write(DateTime.Now.ToShortTimeString() +" "+ s); sw.Flush(); sw.Close(); } } The above method is used to write data from the SerialPort to a text file. Below is the result I get in the test.txt: 4:22 PM 1 4:22 PM 2 3 4 5 6 4:22 PM 7 4:22 PM 8 4:22 PM 9 a 4:22 PM b 4:22 PM c 4:22 PM d 4:22 PM e 4:22 PM f Why for "3,4,5,6" there are no time ahead I was lost and could no find the reason.... ...Show All

  • SQL Server Transaction Question

    I'm fairly new with Service Broker and have been working on my first Service Broker application. I am using it in a .NET based application we've created. All transactions in our application are started, rolled back or committed from within our C# code tier. From what I've read, any time a message is put on a queue or read from a queue, it should be done from within the context of a transaction. Here are my questions. 1) Since our .NET app begins all transactions, I cannot begin and end a transaction in any stored procedure our app calls, that puts a message on the queue, because that would conflict with the transaction we already have in place, created in our .NET app. Is this correct 2) If #1 above is correct, any message put on ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Adding a .x Model to the Pipeline by hand

    Hey all, I was just curious if there's any way to add a Model from a .x file to the project by code (ie- without using the GSE's asset creation functionality). I've disected my .csproj file, and I got something like the following, but I don't really know how to translate this to code. ContentPipeline.xml is just an internal cache file used for the incremental rebuild functionality. You can ignore this. The content pipeline is only needed to compile your meshes and textures. The *.cs or *.py source code is compiled separately (although in the case of Python I think maybe you just run the .py files directly without needing to compile them first Don't know exactly how that works). Once you've run the content build, you will ...Show All

  • .NET Development Setup failing?

    Plece helpe me i can not install NET formework version 1.1.4322 or any version ...Show All

  • SQL Server file corrupted message on query of restored db

    The analysis services database is operational on original server where it was processed. I backed it up and restored backup on another machine, and it fails to display data with message like this: The query could not be processed: o File system error: The following file is corrupted: Physical file: \\ \F:\MSOLAPDATA\mycube.24.db\cubedev.119.cub\datafacts19.172.det\cubedev.67.prt.fact.data. Logical file . I tried the backup 2 times - both in compressed mode. When uncompressed the database takes up 70GB. can anyone suggest what might be the reason for this The datbase works fine when I query it on the original server. Both machines have the same version of SQL 2005 - SP2 Dec CTP. Looks like unfortunately ...Show All

  • Visual C++ class destructor not operated.

    Hello, I have a question about destructor in a class. In the below code I was expecting the destructor part of the code to be executed and the message printed out. However, I only see the constructor message. This is the output: "We're in the constructor with arguments Press any key to continue . . ." Why is the destructor message not printed #include <iostream> using namespace std; class Point { public : Point( float f_x = 1.0, float f_y = 1.0, float f_z = 1.0); ~Point(); private : float x, y, z; protected : }; Point::Point( float f_x, float f_y, float f_z) { cout << "We're in the constructor with arguments" << endl; } ...Show All

  • Visual Basic Streamwriter in VB 2005

    This SHOULD be easy. I must be missing something. I'm assembling a long string and trying to write it out to a file. If I display it in a message box or textbox, it looks fine. But when I write it out to a file, it gets chopped off. I thought it might be my data, because it is supposed to be HTML, but it seems to be related to the amount of data, because it chops off at about the same number of lines no matter what the data. I tried breaking it into smaller strings and doing two writelines, but it still does the same thing. lname = names(1) outFile = "D:\Class of 57\updatehtm\" & lname & ".htm" output = New FileStream(outFile, FileMode.OpenOrCreate, FileAccess.Write) fileWriter = New StreamWriter(outp ...Show All

  • .NET Development CLR components cannot be added to a project using old Syntax c++

    Hi, I am working on migrating a Visual C++ project into .NET environment. The project in its current state compiles and runs just fine with CLR support, and I can use clr components such as windows forms provided that I write the code myself, but Visual Studio does not let me add a Windows Form, using the Add New Item into the project, and it gives me the error "CLR components cannot be added to a project using old Syntax c++. Please convert the project to use the new syntax." Does anyone know what the problem might be Thank you. The VS2005 Windows Forms designer can only generate code in the C++/CLI syntax and no longer supports the Managed C++ syntax. You'll either need to convert y ...Show All

  • Visual Basic How do I do this? Threading?

    Ok I'm still relatively new to programming... I'm an aero engineer, and I'm trying to pick it up as quickly as possible, cause I've only had a few months to learn two languages to start programming a relatively complex aerodynamic program. So... Here's what I'm tyring to do, I've got a combobox event that does some work then needs to wait on the result returned from a radiobutton event that can't be done until after the combobox event has started. Where should I start Should I use threading And if so, I know what threading is, but programatically, I have no idea how to use it. I have several books, but they haven't been very useful in this area. Any suggestions I don't know if this solution will work fo ...Show All

  • SQL Server Getting a field from subtotal

    hi all, i have a problem in my report; some fields grouped by matrix and include a subtotal. In column group there is 2 field and one of them contain integer values. I want to sum all of the this fields and minus from a rowgroup field. Is there a way for to sum fields in coloumn group or getting total field from subtotal I'm having trouble understanding your problem and your English. Could you try to rephrase your question and add a little more detail Thanks ...Show All

©2008 Software Development Network