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

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

TimGL

Member List

polymorphicx
Simon Clemen
Greg D Clark
Sampat
Cowski
Soumya B
JeffK_
JesseD70
Spuddo
ennisb
Nathan23
Prasant Swain
Chrislm
max.cn
Rogerrr
steveareno
OswaldFig
Kent Waldrop Fe08
Marlin7
TylerM
Only Title

TimGL's Q&A profile

  • SQL Server Allow Blank in parm not working

    I am using RS2005. I have a data driven parm that I have checked "allow blank" as a value. I cant allow null so that isnt checked. I have even entered a space in the area where you can provide a default value. When I preview the report ... this parameter has <Select a Value> in the combo box. All other parms are filled in with defaults so the report should run. I hit "View Report" and get an error message "Please select a value for the parameter 'ParameterX' " which is the parameter I have said could be blank. Of course if I drop down the list there isnt a blank value to select - and I dont see why I would want to add one and force a selection of spaces ... seems like something is wrong here. Please help ...Show All

  • Software Development for Windows Vista Playing cause a computer freeze

    Hi I wrote a player application in C# and DirectShowlib-2005, after a while in mid of playing application completely cause freeze in windows and i had to restart windows. I changed my Ram and graphic card but it still sometime happen. has anyone else experienced freeze-ups like this and if so what have you done the resolve the problem Thanks I should probably also add that it should be impossible for a program to freeze the computer. Something like that usually takes a bad driver. Video maybe ...Show All

  • Visual C++ HOW to access exe files on two PC...

    I am using Microsoft Visual Studio 2005 and I do and Windows Aplication. This exe files run on computer, but It does not run other computer.. A really have not found solution 2 days, and I have very big disappoinmet.. Would someone who can do it please me !!! URGENT !! THANKS difference between them is that the debug has more information, for debugging and has a larger file size than release mode. Release mode is optimized and strips out the debug information etc.... that is stored in the debug version ...Show All

  • .NET Development ADO.NET Update Did Not Update DB

    Hi, I am using C# and .NET 2.0 and ADO.NET 2.0 in Visual Studio.NET 2005 running on Windows XP. I am creating an application that reads from a SQL Server 2000 DB using OleDB connections, allow user to do some updates on screen, and then save those updates back to DB. The data I read, most of them I bind to DataGridView on my forms, but there is one form that I bind the data to various text boxes. I load the data into a DataSet, and I go through the DataAdapter and BindingDataSource to bind the data onto the controls. I am also using the OleDBCommandBuilder to build the sql commands. The problem is: when I try to save the changed data back to DB, when I make the Update call on the DataAdapter class, none of the data is updated. ...Show All

  • SQL Server Find the greatest of three columns per each row and display

    Hi, i have a problem where in i have to display the greatest marks scored by each student. How can i do this Is there any built in TSQL function. Rgds.., Aazad You either use a CASE Statement or Pivot the data to make a relational query possible through the aggregation functions. SELECT CASE WHEN COlA > COLB THEN COLA ELSE ( CASE WHEN COLB > COLC THEN COLB ELSE COLC END ) END FROM SomeTable HTH , Jens K . Suessmeyer . --- http :// www . sqlserver2005 . de --- ...Show All

  • .NET Development Help with TripleDES and RC2 cryptography.

    I have 2 questions - 1) I get the following Exception when I try to decrypt data using TripleDES. - "An unhandled exception of type 'System.Security.Cryptography.CryptographicException' occurred in mscorlib.dll Additional information: Specified initialization vector (IV) does not match the block size for this algorithm." How do I make things right The code is as follows - /* Provides TripleDES encryption and decryption using classes in the .net Framework 1.1 */ public class TripleDES_Cryptography { public static string Encrypt(string plaintext, string key, string IV) { TripleDES des3 = new TripleDESCryptoServiceProvider(); des3.Mode = CipherMode.CBC; byte[] by_plaintext = Encoding.ASCII.Ge ...Show All

  • Windows Forms Distribution program error

    I don't know if this is the right place for this.. but... when I compile my program via command line based ( C:\c-sharp>csc.exe /target:winexe /out:c:\c-sharp\blah.exe c:\c-sharp\blah.cs) then I upload it to my server.. .then I download it... and when I try to run it I get the following error message. Cannot load VDM IPX/SPX support anyone knows why Hi, Could you please post the answer as reply to the thread, so that some other user can also be benefitted. Even the link to the answer should be fine. thank you, bhanu. ...Show All

  • Visual Studio 2008 (Pre-release) Retrieve CheckBox Value from Listbox

    Hello all I have a ListBox with DataTamplate which contains a checkbox (not binded) and a textblock (binded). I need window ok button click to retrieve each item CheckBox value. How can I do this How can I even retrieve the CheckBox object from an Item ListBox.Items is actually a DataRowView because of the binding and not a ListBoxItem Please only answer to me on how to retrieve the CheckBox value of an Item. Thanx Itzik Thanks Lee! Yes, the ContentPresenter is somewhere in the ListBoxItem's ControlTemplate. For future reference, the SDK ships with the Styles and ControlTemplates that WPF uses to define each Control for each Windows theme so you can always use it as a guide: ...Show All

  • SQL Server How one can genrate objects scripts with DROP and Create in same file in SQl Server 2005 Like in SQl Server 2000?

    Hi seniors, i oftenly genrate scripts of stored procedures and save that code in a txt file,in develpment envoiments its very crucial becuase to overwrite stored procedures any other developemt db. For my this task sql server 2000 was very good it genrated drop and create statmentments implicity.But now in sql server its very difficult and in our development envoirment there are more than 3000 procs so when i try to genrate script in sql server 2005 ,first i need to generate "drop to" and then "create to" and it also take a very long time and oftenly goes to  stuck... How one can genrate objects scripts with DROP and Create in same file in SQl Server 2005 Like in SQl Server 200     ...Show All

  • Visual C++ Migrating from VC++6 Pro to VS2005 Standard

    Hi, I just got VS2005 Standard (+ SP1) and I'm migrating from VC++6 Pro. I'm purely only interested in C++, Directx and MFC development. Does anyone know if Microsoft has any migration guide that I could read to help me along the way 4 simple questions: 1) What happened to Class Wizard window VS2005 and how do I go around this in VS2005 2) In VC++6 I had resources tab in my project window. In VS2005 Solution window I don't see resources tab, how can I add it to the solution view Or how do I access the resources tab 3) If VC++6 sometimes I needed to rebuilt by *.clw file as some classes are deleted added to the project, I simply deleted the file and then regenerated it in VC++ IDE. Can this be done VS2005 Or is it even necessary.... 4) I ...Show All

  • SQL Server Cube usage by users

    Hi, What would be the correct way to generate some kind of log or report that will tell me which user used which cube in which database along with the number of times the user connected to each cube each day The number of queries sent by each user to each cube by day would be ok. I am not interested by the query content for this exercise. I just want Userid, DB name, Cube name and Hits. Then I can take it from there and create a report for our security/sox guy with User name, Cube name, Week of year and number of hits by week, meaning if the users send 36 queries to Cube A on Monday and 2 queries on Friday, it counts for 2 cube accesses for that week. This assume that I use only TCP/IP access but if the same mechanism would work f ...Show All

  • Visual Studio 2008 (Pre-release) How to create an instance object with NetTcpBinding

    I want to create an instance from a server, so the client can use and call that instance. But I am getting communication error like this: "The socket connection was aborted. This could be ...". Here I have provided the code: ///////////////////////////////////////////////Create a project called Common and add these files-Must be of type class library ////////////////////// DatabaseData using System; using System.Data; using System.Runtime.Serialization; namespace Company.Common.Data { [System.ComponentModel. DesignerCategory ( "Code" )] [ DataContract ] public class DatabaseData : DataSet { public const String DATABASES_TABLE = "Databases" ; pu ...Show All

  • Visual Studio Team System Cannot use the Performance tools

    Hi, I'm trying to use the Performance Tools built into VS2005 but can't. Nothing happens when I try to create a new performance session, use the performance wizard or even view the performance explorer. (i.e. I click the menu item and nothing happens.) I think, I may have accidently removed it. Can anyone please tell me how to get it back. Thanks. Hello, You said that previously you were able to use performance tool. Can you able to create a new .psess file currently As its seems some installation issue. Something overwrote your performance tools. That way I wanted to know if now you can create any performance session. Did you install anything recently Is the Visual Studio Team Edition for So ...Show All

  • .NET Development Database

    It is necessary to use a database on a local computer that will advise, that like Microsoft Access databases can be located any where. having it local has its advantages but more disadvantages. local Advantage: faster access   local disadvantage: you would have to update other databases that other users maybe using, this is a painful job everyone will have their own copy of the database therefore inconsistant records/data   Remote Advantage: everyone uses the same database therefore everything is up to date and everything is stored in one central location backups easily made (to a certain extent) since all data is in one location rather than spread out over se ...Show All

  • Audio and Video Development how to capture markup page

    In markup, canvas region can be created by <object> element and this region can be captured using capture() from Drawing APIs and Video image in pause state can be captured using capture() from Player APIs. Similarly how can i able to capture Aperture/Application region(whole markup page) ...Show All

©2008 Software Development Network