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

Software Development Network >> Ludo-R's Q&A profile

Ludo-R

Member List

Saji
WQP
Craigton
ComPro
Maheswar
JimmiJ
Yu Ro
YvesR
Pockey
Peter Peng
imin83
Rolan
Roger McKinney
Supermatthew
scdlewis
Paryse
dragoncells
IceAngel89
gfheiche
bitskull
Only Title

Ludo-R's Q&A profile

  • Software Development for Windows Vista INSTALLATION ERROR

    Content of log files, [07/24/06,14:20:30] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603 [07/24/06,14:20:49] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 - was not attempted to be installed. Thanks. I passed it on to the owner of the .NET Framework install, and he'll get back to you. ...Show All

  • Visual Basic MS Access and VB

    Hey everyone. I know this is probably a stupid question but I am currently trying to prove my professor wrong. He told me what I wanted to do for my project is impossible and I don't believe so. I am writing a small program to keep track of a Golf Tournament for my small local college. These are the following things im trying to figure out. 1. How to take information from a VB form and input it into my Access database. 2. I then want to have another form populate a drop down box so that people can select players and drop them from the table. 3. I then want to also have another form that has another drop down box with the current players populated in it so that employees can select them and then modify their data and resave ...Show All

  • Visual Studio Cab Project/Deployment Project and MSBuilder

    I inherited a solution that contains 3 projects: 1 that generates an OCX, 1 that creates a .Net wrapper for the OCX and the last that is a Deployment Project which puts the OCX into a CAB file. As the build was not previously automated, that's the current goal. The problem is that the first 2 projects build fine but MSBuild reports the following: warning MSB4078: The project file "Web Deployment\Web Deployment.vdproj" is not supported by MSBuild and cannot be built. I assume that there is a way to do this, but I'm not a build guy, any help would be greatly appreciated. ...Show All

  • Visual Basic Contatenation

    I'm very new to VB programming and I am trying to take the first name and a last name from two textboxes and cont. them into a txtFullName Below is the code I have been trying to write and I keep getting a blue error line (Value of type 'String' cannot be converted to 'System.window.Forms.TextBox'. Could somebody help please Ted Public Class Form1 Private Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtFullName.TextChanged Dim FullName As String Dim FirstName As String Dim LastName As String txtFullName = LastName & ", " & FirstName Your problem is that you are trying to set ...Show All

  • SQL Server Moving projects from server to workstation issue.

    Dear folks, I’ve moved my server folder which contains about 10 dtsx and its ADO .net connection as well as OLEDB into my folder workstation. Then, when I’m gonna to open them appears this error: Error 1 Error loading M_HAC_Modelo198_CECA.dtsx: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Clave no valida para utilizar en el estado especificado.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available. c:\ssis\hacienda_anual\M_HAC_Modelo198_CECA.dtsx 1 1 Translate into english: "Clave no valida para utilizar en el estado especificado" ...Show All

  • Smart Device Development WM 5 tray icon & USB communication

    Hello I have two questions: 1 - How do I put an icon on WM5 tray And how do I make it clickable.. Eventually I'd like to show a menu when a user clicks the icon but, at first, I'd just like to know how do I capture the event (and how to show the icon) 2 - What's the best way to comunicate to the Desktop I was considering using the USB connection bettween the PPC and the desktop but I have no ideia how that is donne... I know that when a connection is established both the PC and the PPC have an IP to connect to each other. Can this connection be used using sockets Or is there any way to use the USB connection Thanking in advance First off, please only ask one question per post. That way, if someone answer ...Show All

  • Visual C# Delete XML elements

    < RadioBar >   < Genre_Genre_Country > Genre_Country </ Genre_Genre_Country > - < Genre_Genre_Country >   < Title > KPIG presents Cowboy Cultural Society Radio - an American tradition since 2002 </ Title >   < url > http://205.188.215.232:8028 </ url >   </ Genre_Genre_Country > - < Genre_Genre_Country >   < Title > Classic Heartland - Classic Country, Western, Bluegrass, Alternative Country [Dial-up] </ Title >   < url > http://130.166.72.1:8008 </ url >   </ Genre_Genre_Country &g ...Show All

  • Visual FoxPro Record repositioning

    Thanks for the tips. I have already run extensive traces trying to track changes in the primary key and/or record number. The problem is I can go into the exact same record that the user reports the problem on, do the exact same sequence of keystrokes, and the problem doesn't occur. I've only seen it reposition one time while tracing, and unfortunately I didn't have the break point set before the record repositioned. I've modified the data entry form to trap these "jumps", and if I find the problem, I'll report it. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Failed to Prepared the Streaming Cue - XACTENGINE_E_NOWAVEBANK

    Hello, When I'm try to load the soundbank, the creating wavebank steps seems to be fine, the creating soundbank is fine too. But when I create the cue which use sample from the wavebank that is the streaming bank, the XACT_E_NOWAVEBANK is returned. Below is the loading code. Of course, there is some point to improve, but all I need to know is what am I missing to create the cue/create the streaming wavebank. Regards, Wutipong W. HRESULT InitXACT() { HRESULT hr = S_OK; hr = CoInitializeEx(NULL, COINIT_MULTITHREADED); if(FAILED(hr)) { return hr; } //Create Engine hr = XACTCreateEngine(0,&pAudioEngine); if(FAILED(hr)) { return hr; } //Initialize Engine XACT_RUNTIME_PARAMETERS Params; ZeroMemory(&Params, ...Show All

  • SQL Server distributed transaction error from CLR Trigger

    I have a stored procedure in SQL2005 that queries and updates a linked oracle server. The sp runs fine from Management Studio, but when called by a CLR trigger I get the following error message: Command attempted: if @@trancount > 0 rollback tran (Transaction sequence number: 0x000000000000000032DD00000000, Command ID: 1) Error messages: The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLE_LINK" was unable to begin a distributed transaction. (Source: MSSQLServer, Error number: 7391) Get help: http://help/7391 The operation could not be performed because OLE DB provider "OraOLEDB.Oracle" for linked server "ORACLE_LINK" was u ...Show All

  • SQL Server [help] installation problems with sql server express 2005

    hello everybody I've downloaded a free version of ms sql server express 2005 and while I lauch the install file, I Have a bug : Something like : "you don't have write and read permission" - conctact administator but i'm logged on a administator session if anyone can help me .. thnx in advance .. hzben thank you for this reply Do i can export a sql 2000 database to sql 2005 express only with a .sql file or do i need the .mdf and .ldf files of my old database I need to export only the structure (tables ,columns and triggers) of my database to sql express 2005 . have a nice day ! ! hzben ...Show All

  • Visual Studio 2008 (Pre-release) What is the syntax for Lambda Expressions in VB.NET?

    Sorry for dumb question, but I cannot find this in the docs. What is the syntax for Lambda Expressions in VB.NET ...Show All

  • SQL Server Joining Many Tables in Loop

    Hello, I am very new to TSQL however I do have a little programming in my background. I am trying to run a query to select several datafields from about 45 tables within a database. I have written the below code to loop through all of the tables and extract the information however I need to find some way to join the results using PCTimeStamp as the key. Any help anyone can give me is greatly appreciated! while (@Table_Number<18240) /*Loop to read data from all Turbine all Tables*/ BEGIN if (@Table_Number=17990 or @Table_Number=18234) /*ERROR AVOIDANCE for Non-Sequential Turbine #'s*/ BEGIN set @Table_Number=@Table_Number+1; END; set @Table_Insert = cast (@Table_Number as NVARCHAR); /*Converts Table Number to Format usable i ...Show All

  • Windows Forms DataGridView date issue

    hi all... I have a DatagridView populated by a database. One of the colums holds datetime values, but it seems that the DataGrid stores those values as txt. So, when i click the DGV header to order by the date column, it doens't consider the month (being dd-mm-yyyy), so it orders considering only the day value 'dd'. How do I format the dgv column to read the dates properly so that i can order the values by date thx in advance dsani's option didn't work, i it should be something else here's how i populate the datagrid cnn.Open(); strSql = "SELECT * from clients" ; SqlCommand command = new SqlCommand (strSql, cnn); SqlDataReader DataReader; DataReader = command.ExecuteReader(); ...Show All

  • Visual Studio Team System How do I fix the TfsOlapReportDS user problem?

    I am currently unable to run any TFS reports. The error message is: An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'TfsOlapReportDS'. (rsErrorOpeningConnection) For more information about this error navigate to the report server on the local server machine, or enable remote errors Is it possible to delete and recreate the 'TfsOlapReportDS' user account Hi Gary, To get more information about the error, on the report server machine, navigate to http://localhost/reports and then click on a report. Then we'll be in a better position to know how to proceed. I am not sure what you mean about delete/recreate the TfsOlapReportDS user accoun ...Show All

©2008 Software Development Network