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

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

Lgee212

Member List

dnhxx
FredrikE
Christian W.
JeremyH999
santosh kumar gupta
Kristian Dupont
Kevin Tough
James Crowley
Vishal Bansod
Asaf_K
armadya
sateesh
Xanfere
Clark Baker
dcaton
James V
false420
aurn
Jeff G87474
arpenteur81
Only Title

Lgee212's Q&A profile

  • Windows Forms What determines the order that controls are drawn on a form?

    Hello, I am having a problem with a certain circumstance in a C# program that the controls are being drawn in reverse order of what they actually are in the z-order.  Meaning that if control 1 is in the top of the z-order and control 2 is in the back, control 2 is DRAWN in the front but Control 1 receives the clicks. Here is the&nbs ...Show All

  • Visual C# Not Freeing Memory

    Hi, I don't know if anyone can help me. I am working with large png files, and finding the memory is not being freed after the object is disposed. Are there any know bugs on this issue Many thanks, Bruce Hi James, Thanks. I have had a look and can't seem to find GC.Collect() within the code. Running through the memory profiler, the garbage collector is collecting instantly after it previously freed some memory. To try and picture this, it starts off at the bottom left corner and increases rapidly diagonally up the screen freeing memory and then the app throws an out of memory exception, before the plugin dies. Its the first ...Show All

  • Visual Studio Team System Windows SharePoint Services Service Pack 2?

    Is it ok to use the just released service pack 2 for SharePoint with TFS beta 3 -dave Hi, Just an update. I have installed TFS Beta 3 on Windows Server 2003 R2 running Windows Sharepoint Services v2 SP2. Everything is working fine. Regards, Vikram ...Show All

  • Smart Device Development How do I manually deploy the CF2 to my PPC?

    I tried running the Microsoft installer and although it starts the installation on my PPC (running Windows Mobile 5.0), it never actually installs the Framework. Is there a way to manually install the CF 2.0 There is a file created in the root partition called MS .NET CF 2.0 LOG.TXT. Here are its contents (sorry this is long): 10/05/2005 00:40:57: PocketPC 5.01 10/05/2005 00:40:57: Processing alternative file: '\Program Files\.NET CF 2.0\cgacutil.exe.-410~-410~ARMV4'. 10/05/2005 00:40:57: Special file extension: '.-410~-410~ARMV4'. 10/05/2005 00:40:57: File is intended for OS: -410 to -410, CPU: ARMV4 10/05/2005 00:40:57: Device CPU: 'ARMV4 ...Show All

  • Visual Studio Team System Changesets newbie

    In another post Randy miller explained me about baselines and about how tfs implements it, he told me its called changesets, but as far as I have investigated the tool I dont see how to create changesets, or something, Can someone explain me a little about this. Thanks To quote this section of MSDN which you should check out directly: A changeset is a logical container in which Team Foundation stores everything related to a single check-in operation, specifically: file and folder revisions, links to related work items, check-in notes, a comment, policy compliance and system metadata such as owner name and date/time of chec ...Show All

  • Visual C# Saving Connection Strings

    I have a connection string as a varible "strConn". How would I save this to the config file so that my application would use the string to access the database using a button_click event to initialise it An example would be helpful.   Thanks Spike Which Version of VS are you using If 2005, simply open the project properties, go to the settings tab, add a new setting (presumably with application scope) and set its type to "Connection String...". If you don't use integrated security to access your data source, beware that any stored usernames and passwords are in plain text, so potentially could result in ...Show All

  • Windows Forms Close startup form

    i have a startup screen its a login in Ok button i wrote this code dim f as new frm2 f.show() me.close this code close the application how i can solve it. and i have another problem in my frm2 i want to show another form frm3 in my MDI form how how  thanx I know that the original post is pretty old but I had been looking for& ...Show All

  • Visual Basic Where is the executable created by ClickOnce Deployment?

    ClickOnce creates on the target server an application reference (extension appref-ms) which is used to start the application. I cannot find the executable. I use a service that starts automatically other (non-service) programs after a restart. This program requires the path of the executable. Many thanks, Dan The ClickOnce Deployment does not place the executables in c:\Program Files, but in folders such as this one: C:\Documents and Settings\wa1\Local Settings\Apps\2.0\2431K6CQ.OLW\CEKX2VEB.P7R\easy..tion_6ce3c96fe75c93ea_0001.0000_85d54fc9d1298abc One can find this folder making a Search w ...Show All

  • Visual Basic how to update rows in an mdb data source??

    hi everybody , I'm a beginner student in vb.net,and I'm working on a very small project as a homework,and I've some questions which I ought to search for their solutions via any   source . I need to make an (Update )button in most of my VB forms,which enable me to update any row elements in the datasource in Access through each form , for example: I've a form about CustomersData as (Cust_No,Cust_Name,Cust_Address,Cust_Phone...etc) when the user want to update one of the customer data ,s/he will display this customer data through the search method in the form and this customer data will appear in the textboxes in the CustomersDa ...Show All

  • Windows Live Developer Forums vb.net sample errors?

    i was playing around with the sample vb code ( http://msdn.microsoft.com/library/en-us/msnspaces/MetaWeblogAPI_VB_Code_Sample.asp ) except it appears to have errors (like End Function with no Function). Am I missing something or are there errors in the sample vb code It looks like there were some transcription errors in the VB.NET code. I've filed a bug against this with our documentation team. Thanks for pointing out this issue. ...Show All

  • SQL Server Very Simple MDX Question

    Well, I have not had the time to dedicate to learning MDX, so I will have to ask... I am trying to the top 5 clients for each state based on unit count. I have tried using top count, but it seems to give me the top 5 clients, including ALL, etc. Any help would be greatly appreciated! BobP This might help... Without knowing what all your dimensions, hierarchies, levels and measures are called its a little bit hard to give you an exact answer but it basically needs to look like this: TOPCOUNT(DESCENDANTS(<dim_name>.<hierarchy_name>.<member>, <client_level_name>), 5, <measure_name>) The ...Show All

  • Visual Basic Sending email in vb2005

    Does anyone have a barebones example of how to send email using vb 2005 I keep having problems assigning a recipient address. I have a question about the smpthost. First off what is it can it be an IP Thank you ...Show All

  • Visual C# DateTime

    Hi. What I want to do is display the current time, or the current day in a MessageBox.Show method. Can someone tell me how to do this. I know it has something to do with the DateTime method. Thank you for any help provided. // displays the current date number MessageBox.Show(DateTime.Now.ToString( "dd" )); // displays the full name of the day ( ie Monday ); MessageBox.Show(DateTime.Now.ToString( "dddd" )); ...Show All

  • SQL Server Migrate from Access to SQl Server 2005

    I am trying to convert an Access database to SQL Server 2005. I have gotten the tables imported into SS2005 but how can I get all my queries imported in Or is it not possible Thanks. John You coudl try this CTP of a new tool http://www.microsoft.com/downloads/details.aspx familyid=D842F8B4-C914-4AC7-B2F3-D25FFF4E24FB&displaylang=en ...Show All

  • Visual C# Tcp Chat

    hello , i have a problem. im developing a client / server tcp chat. the problem is that it works perfectly when i run de server and the client in loalhost, i can work with several insances of the client if the server is local,.,, the problem is that when i tr to work on lan or internet... (lan with same workspace) it dont work... i do the next on server static void Main(string[] args) { Program pr = new Program(); IPAddress localAddr = IPAddress.Parse("192.168.1.67"); listener = new TcpListener(localAddr, 5555); try { Console.WriteLine("Waiting for connections"); listener ...Show All

©2008 Software Development Network