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

Software Development Network >> Caroline_C#'s Q&A profile

Caroline_C#

Member List

hhewson
luca morelli
Nightmare_BE
Rhubarb
Flegg
allenwfc
DocMARs
supagu
learnerplates
SelArom
Nagu
E.Ganesan
cablehead
MasterG
Florian Storck
Nick Winters
3d_developer
naiad
George Birbilis
Jassim Rahma
Only Title

Caroline_C#'s Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. No Design Veiw

    Hello I am writing a game or atleast am attemptting to write a game. I started off by looking at a tutorial on another site about how to create a pong game in XNA. It tell me to go into the designer veiw of Game1.cs{design} and use the graphic the only problem with this is that I have no Game1.cs[design] veiw I have tried several differnt times to start over and get it to come up and it will not can anyone please help me out everything else cames up with a design veiw. So I would really like to know what I am doing wrong. Thank you That tutorial for written for beta 1. Beta 2 no longer has a design view for game components. I would contact whoever wrote the tutorial and ask him to update it. I ...Show All

  • Windows Live Developer Forums Help! I can't download the MSN Messenger Activity SDK from the official website

    Hi: when I try to download the SDK from the official website: http://msdn.microsoft.com/live/msnmessenger/ there is just a document for it, and there hasn't any code! Is the right I am a new comer here. If that is wrong, is there anybody kind enough to send me the SDK My email address: wtxidian@hotmai.com . Thank you ! Your download is ok! Introduction http://msdn2.microsoft.com/en-us/library/aa751024.aspx The competition is closed but there are more details and I thought I saw some samples at the Invasion of the robots site. https://www.robotinvaders.com/main/default.aspx ...Show All

  • Visual C# problem about treeview in Dot net 2.0

    When a treeview have too many node(more than 65536,maybe), it can not diplay it! I write a small programm to test it, the code is below: You can create a new window application and copy the code to test it. If the child node number is 65535 or 65536, the scrollbar of treeview is gone and the treeview acts strange! If the numer is 100000, id only display just mor than 30000 nodes. I have searched msdn for the information of this problem, but got nothing. Does treeview have limitation on number of its child nodes Or the problem is caused by the scrollbar of the treeview private void InitializeComponent() { this .components = new System.ComponentModel. Container (); this .AutoScaleMode = System.Windows.Forms. AutoSc ...Show All

  • .NET Development Copying files over a network - best way?

    Okay, here goes... Machine A and Machine B are on the same LAN. There's a file, or more a series of files, in different formats on Machine A. On Machine B there is a Card Reader or USB type storage area. On Machine B, there is a .NET Application, not sure yet if it's going to be a smart or thin client. The job of the .NET App is to copy a file from Machine A to Machine B. Also, it would be nice if it showed a progress bar of the file coming across. I'm relatively new to .NET - any tips or ideas on the best way to go about doing something like this Mods - not sure if this is the correct area to post this thread in - please move if necessary If folders from which the files have to be co ...Show All

  • Visual Studio Any books for VSIP SDK Explanations with code examples

    Hi, I'm very much new to VSIP, so i don't know how to start and how to use it. If anybody know how to use it or if any books available for the same, please let me know. Thanks in Advance, Regards, Saravana Kumar B Hi Notre, and Dmitry, The vsipdev.com site is no longer up. It used to redirect to the new site at www.vsipmembers.com (where you can still find the webcasts, and PDC presentations, and various project planning documents for the Visual Studio SDK), but the vsipdev.com domain has since expired. Sincerely, ...Show All

  • Visual Studio Team System Deny delete permissions on source control

    Hello, I would like to know if there is a way to remove the ability to delete files on Source Control. I would like that the developers could add, check-out, check-in files on Source Control but that they were not able to delete them. I checked in the security and there is not an option for delete. Any suggestion Thanks in advance. Gloria There’s no good way to do this. The security system treats all pending changes the same way. Note that deletions are never permanent in v1. When we add a Destroy feature, it will have its own permission. ...Show All

  • Visual Studio 2008 (Pre-release) Bug or Feature : Behavior of OneWay bindings (July CTP)

    Hi, I'm using the July CTP and have run into a situation where Binding doesn't behave as I expected it to. I've isolated this behavior below and I'm not sure if it's a bug or if it's by design. If it is by design, I think the documentation should highlight this 'feature': I've created a Source object and a Target object: public class Source : INotifyPropertyChanged { double _floatingPointValue = 0.0; public double FloatingPointValue { get { return _floatingPointValue; } set { if (value != _floatingPointValue) { _floatingPointValue = value; _OnPropertyChanged("FloatingPointValue"); } } } public event PropertyChangedEventHandler PropertyChanged; private void _OnPropertyChanged(string proper ...Show All

  • .NET Development Creating .cer/.pvk files in CLR

    Hello! I need to programatically generate certificates for SQL Server (I need to set expiration date very precisely, so I can't use makecert.exe or SQL Server itself). By now I have been able to generate a certificate using CertCreateSelfSignCertificate() from crypt32.dll, export it to .cer file and successfully import into my database. However, I don't know how to create .pvk file with private key, required by SQL Server. A simplified version of my code looks like this (I left only the significant fragments): ////////C++ part: unsigned char tab[100]; LPTSTR psz = L"CN=name"; CERT_BLOB cb; cb.cbData = 100; cb.pbData = tab; CertStrToName(X509_ASN_ENCODING, psz, CERT_X500_NAME_STR, NULL, cb.pbData, &(cb.cbD ...Show All

  • Visual Studio 2008 (Pre-release) Child table not updating correctly?

    I have a person object, which has via a foreign key an address table attached to it in the LINQ designer. The address table has an addresstype which comes from a types table via a Foreign Key as well. When I create an instance of a person, and check the first address typeID I get a value of 4. Via my interface I change the value to 6 (a valid value in the types table), I can query the Address object and it will tell me it's set to 6. However, once I commit the changes via DBContext.SubmitChanges() the value rolls back to 4 in my local instance. I see not Exceptions being thrown.. and I'm just wondering if there is a bug somewhere in LINQ that isn't allowing the sub-tables for a given object to be updated properly Thanks. Jim ...Show All

  • Visual Basic save a file with unicode name in visual basic 6.0

    I am trying to save a file with name in unicode with .txt extension and getting "Permission Denied" message. The code I am using is as follows: Private Sub Command1_Click() Dim InputString As String Dim sHex As String sHex = "D:\" sHex = sHex & ChrW(&H30A2) InputString = sHex & ".txt" When i use ChrW(&H30A) , it works fine. Please suggest. Regards, Arjun VB6 questions should be posted here: http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx dg=microsoft.public.vb.general.discussion&cat=en_us_ab067bc0-bda5-4921-a1ec-e76402873945&lang=en&cr=us ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. In Depth tutorials?

    I wanted to know if anyone knew of a more in-depth tutorial then the one that comes with GSE...so if you know could you tell me   Check out these... http://xbox360homebrew.com/content/XNATutorialMasterList.aspx ...Show All

  • Visual J# COM Class Template

    I was wondering if anyone knew of or had created a COM Class template for J# Hi, Not sure what you mean by COM class template If you are talking about creating templates in J#, then that is not supported in J#. There is something called Generics in .net world which is similar to templates in C++. You can consume a generics in J# but you can't write a new one. To know more about Generics, please refer following links... http://msdn.microsoft.com/msdnmag/issues/03/09/NET/ http://msdn2.microsoft.com/en-us/library/zz97t142(VS.80).aspx Thanks. ...Show All

  • Visual C# removing program from startup

    how can I remove programs from my startup menu I don't want them to run when i start windows. There are some ways of adding program on startup. You can see ways of adding a program on startup on http://www.planet-source-code.com/vb/scripts/ShowCode.asp txtCodeId=3901&lngWId=10 It may help you. Most of them saved in registery. Open regedit and browse KEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run location. There are some string which open when Windows starts. You can delete them from here. If you want to delete them programatically, you can see Registry class on MSDN. -> http://msdn2.microsoft.com/en-us/library/microsoft.win32.registry.aspx ...Show All

  • Software Development for Windows Vista ClickOnce deployment problem for Vista app

    I am trying to deploy a managed application to Vista and assert that the application needs administrator privilege to run. I have updated the manifest and the application correctly asserts the administrator privilege when I run it directly from the file system. However when I try to deploy the application using ClickOnce deployment the deployment fails. The same error occurs on Windows XP. I have a small sample app that I can provide source code for. The trustInfo section of the manifest is as follows: < trustInfo xmlns = " urn:schemas-microsoft-com:asm.v3 " > < security > < applicationRequestMinimum > < PermissionSet class = " System.Sec ...Show All

  • .NET Development How to insert date into postgres

    Hi all, I had declared creationDate as "timestamp without time zone" in my postgres database. But when I wanted to insert the creationDate to the database, it gives me an error [0] {ERROR: 42703: column "creationdate" of relation "employee" does not exist} object {Npgsql.NpgsqlError} My code is as follow: today = DateTime .Now; NpgsqlCommand command = new NpgsqlCommand ( "insert into employee (username,password, email, dept, creationDate) values('" +NewUserID+ "','" +NewUserPwd+ "','" +Email+ "','" +Dept+ "','" +today+ "')" , conn); Int32 rowsaffected; try { rowsaffected = command.ExecuteNonQuery(); lblEr ...Show All

©2008 Software Development Network