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

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

BalaGanesh

Member List

CGR
SonicSue
Roygana
Jaganathan Thangavelu
SpinyNorman
HeatherA
RozLee
KirankumarC
twad5
Helloooo
footbal55
AngryRichard
skop
tie lake synchronized swim team
rajeevsahu
Buckshag
Xtraeme
joukz
bdavidh
Eric Duncan
Only Title

BalaGanesh's Q&A profile

  • Smart Device Development GetCurrentProcess()

    Hello, Can anyone help me, how can I find (actually I need to Prevent runing same program) GetCurrentProcess() from C#.net for pocket PC. When I try to use like: System.Diagnostics.Process using System; using System.Diagnostics; using System.ComponentModel; ---- ---- System.Diagnostics.Process ERROR: 'Process' could not be found ..... Thanks, Leo The most common way to do that is to use mutex. Take a look at this old thread: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_thread/thread/6c3be2d0ff127b8/fd1a6b6252c128c9 lnk=st&q=Multiple+instances+compact+framework+ ...Show All

  • Visual Studio Express Editions debugging not working

    i'm using VC++ express edition. I was trying to debug one of the examples that come with the help system. but even after setting breakpoints the program doesn't break at the particular break points. it was working fine a couple of hours ago. i tried debugging the same program that i debugged a couple of hours ago. even tht wouldn't work. i don't know if this is a bug in the vc++ .. but its really bugging me. i've been trying for the last hour to debug the program and its not working. thanks in advance... When I try debugging a message box pops up and says, "Debugging information for "game.exe" is not found or does ...Show All

  • Windows Forms managing large amount of controls...

    Hi, My app has a very large amount of controls, is there a better way to manage those controls, to get better results on performance, flexibility, etc I am thinking of using xml to describe those controls and load these xml files on runtime, giving me more flexibility. Do you think it is a good idea, does it take to much initialization time Any ad ...Show All

  • Visual Studio Branching in VSS 2005

    Does anyone know if VSS 2005 still enforces branching on a file by file basis We have numerous systems within our organisations and would develop multiple concurrent versions. We have been reluctant to do so because merging on a file by file basis is too time consuming. Yes, branching in SourceSafe 2005 is still file-based. However, some additional options are supported at the command line. For instance "ss branch" & "ss merge" now support the recursive command option (-R). See the early documentation at: http://msdn2.microsoft.com/library/d6x776hk(en-us,vs.80).aspx http://msdn ...Show All

  • SQL Server executing a package from T-SQL

    Is it possible to execute a package in a trigger or stored procedure For most practical reasons, no. You could use xp_cmdshell to call DTEXEC which will execute a package. This will run your package synchronously, so doing this in a trigger would generally be a very bad idea, as this would block the transaction from completing during the execution. If trying to reference the data from the transaction that invoked the trigger then you will be blocked as well as this has not been committed yet. Long running transactions are generally a very bad idea. Another method would be to create schedule job th ...Show All

  • Visual FoxPro _screen.ContinuousScroll problem

    I noticed this problem just this morning after spending many hundred hours debugging my app for the past few months when everything worked just fine. This is the setup which is hardly unusual. There is a function in a prg file and a Click method that calls it. There are a couple of print statements like: "coimng out of the function: "+numeric_id and such in the function(s) and one in the Click method. All output is character strings. The button is clicked many times during the debug. I get only one line of output out of the function but the rest of it is overlapping this first line no matter where it is coming from. The ...Show All

  • Architecture Lookup table architecture

    I come across the situation where there are many lookup tables with simple look up table structure in general. In database design I am anticipating each table with type and status looup along with some more lookups. In total if I have 250 data tables, it will take 500 lookup tables which will have 1500 DAL stored procedures and 1500 ins/upd/del triggers. I came across a way to simplfy this architecture by putting code and codeoption tables using combined lookup into one lookup table. I can write custom constraints to enforce database integrity. I want some expert advice. Do you see any issue with this kind of approach I used this earlier ...Show All

  • SQL Server SQLServer2005_SSMSEE.msi & SqlServer2K5_BOL.msi

    After I installed SqlServer2K5_BOL.msi, Microsoft SQL Server Management Studio Express CTP does not launch any more. How can I use both SSMSEE and BOL The problem was in the Management Studio Express tool released on November 7. There is a new Management Studio Express CTP download available at   http://www.microsoft.com/downloads/details.aspx FamilyId=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en . This update fixes the defect where installing the full Books Online documentation prevented Management Studio Express from starting.  With the update, Management Studio Express and Boo ...Show All

  • Visual C# searching the multiple words found in the text

    hello genius guys, i am trying to search the multiple words found in a text file in a single loop. what i want to do is that: when i enter the words like: "am, words, to" etc.. then it should find those words in the text file or let me say in this message board. i am able to search them by using only the for loop by passing single word at a time. also, making my search style more complicated i need to find those words also which contain the above substrings. eg: if i enter only "or" then it must find the chracters "or" in the word "words". i guess u get my point. i am thinking to use ...Show All

  • .NET Development Will AnyCPU cause binaries to run as 64-bit on x64 machine

    I used VS2005 professional to compile 18 .Net assemblies using the AnyCPU platform setting in configuration manager. I also have a startup executable that calls into one of the GAC libraries to start/run the program.  I compiled both the program and all assemblies on at 32 bit Windows 2000 OS using the "AnyCPU" platform setting On the 64-bit computer running XP-Professional(64)... All assemblies were successfully loaded as 64-bit gac assemlblies using \v2.0 64 bit\bin\gacutil.exe. The startup program is shown running without the "*32 "suffix. The program is running but from "program performance" its behavior appe ...Show All

  • Visual C++ Struct tm to String

    Hi, The function asctime convert a struct tm to char * . Is there any function converting a char * to struct tm Thank's. DelaySteam In general, you would need to extract the corresponding elements of struct tm from the char array. Kuphryn ...Show All

  • .NET Development Where to get full description of ComponentModel(designers) namespace ?

    I want to develop advanced visual designer for Visaul Studio, for some controls containers and their visual composition, but have not found good description how ComponentModel(designers) namespace works in depth and of which features consist (need full description) MSDN gives me only set of clasess, but not their purpose and solutions they can be involved in. Can you point me where to find good documentation, articles, sample, books thanks you I have just Programming .NET Components, 2nd Edition by Juval Lowy http://www.oreilly.com/catalog/pnetcomp2/toc.html http://msdn.microsoft.com/msdnmag/iss ...Show All

  • Visual Studio Express Editions How to display Master and details in same datagridview??

    Hi. I think that I saw on a site that I can display Master and Details in the same grid with "+" on the left of each Master's row. and if I click on the "+" so it open the details rows in the same grid with few left margin increment. can anybody help me please... I forgot where I can find this article This is not supported in the DataGridView. You can, however, use the old DataGrid (which is still in .NET 2) to achieve this. Simon. ...Show All

  • SQL Server Agent Proxy accounts not listed

    Hi, I just created a new proxy account. Creating credentials wasn't any problem (my NT user), creating the proxy (for all subsystems) also. But when I look at the subsystems in the SQL Management Studio I don't see the new proxy! I refreshed it, restarted it, no chance. I also tried to recreate the proxy but I can't since it tells me that it's already present. So where is it I need a proxy because my SQL Agent is running as local system but I need some credentials from a user to run a SSIS package. When I create a SSIS job step I only see "SQL Server Agent account" under "run as". I expected to see the proxy acc ...Show All

  • Visual Studio Team System please help with web recorder

    Hi! I'm trying to record webtest. 1. Create new web test 2. Window of recorder (IE) does not appears 3. Script is not recorded What solution can you suggest to resolve this problem Thanks for your reply! I'm wondering if the recorder has started but is hiding behind another window. Does a web test open in the IDE with a status bar across the top that says "Recording..." If so, does a link appear on the web test status bar that says "Show recorder" If so, click this link and see if the recorder appears. Thanks, Rick ...Show All

©2008 Software Development Network