Software Development Network Logo
  • Windows Vista
  • Windows Live
  • Smart Device
  • Visual Studio
  • .NET Development
  • Windows Forms
  • Microsoft ISV
  • Architecture
  • Game Technologies
  • Visual J#
  • Visual C++
  • Visual FoxPro
  • Visual C#
  • SQL Server
  • Visual Basic

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

jiji25

Member List

ch_cu
gabr
Bob Arnson
Ak Reddy
SimonB1965
amberusa
Dmitry Mashkov
A.J. Mee
PatrickAltman
celerno
ubercoder
shashankk
pcgalen
scroll
Manish Tandon
MarkByers
Dz0001
sriram.ds
Opher535
Glandorf
Only Title

jiji25's Q&A profile

  • Visual C# Inhertied Form

    hey, i created a form with custom borders and stuff... so i want to inherit forms from that custom form... what im doing is the next,, i add a form to my project and inherit from my customForm Form1 : customForm the thing is that in my customForm i have a control on it... and i need to access the control properties from the Form1... and i can select the control and see it properties but i cant edit them how can i do this ... mig16 if you are trying to do what i think your tryin. make sure you have the attributes and things set to pretected and the properties section public. Ill give you more feedback if you ...Show All

  • SQL Server Reporting Services ToolBar Items

    Hi Can anybody help me I am facing prolblem with SQL Reporting services 2005 Toolbar. It is not displaying all the report Items except textbox item. How to load the remaining Items to toolbar. ...Show All

  • Visual C++ App hogs CPU when mouse pointer moved over it

    My MFC app hogs CPU when the mouse pointer is moved around over it. I'm using task manager to monitor the CPU usage. No othe app seems to do this. If my app has a modal dialog box up then it doesn't happen. The app is built with Visual Studio 2005. My main window is only handling WM_CLOSE, WM_ERASEBKGND, WM_SIZE and WM_SYSCOMMAND (none of which get fired when you just move the mouse pointer around over it). If you get furious with the mouse pointer then you the app's CPU usage goes over 60%. Any ideas anyone Mike MikeBzz wrote: My MFC app hogs CPU when the mouse pointer is moved around ov ...Show All

  • Visual Studio Team System eXtreme Programming Process Template

    Hi, Just wondering if anybody knows of an eXtreme Programming Process Template for Beta3 XP is being introduced across all projects in my organisation and concepts such as Iterations which have Stories which have Tasks doesn't match with the MSF Agile process (from what I can see there are 3 fixed iterations with no way of creating new iterations and setting stories under them and so on). Does anybody know of an XP process template for beta 3 Brian     We've run XP based projects under MSF Agile for about 6 months now.  Just about got the hand of calling Storys "Scenarios" ( ...Show All

  • Visual C# VS 8 Performance makes it unuseable

    Hi, We have converted a large c# solution with 12 projects and about 60 Mb of code from VS7 to VS8 and find that working in the IDE is impossibly slow. We are running on a P4 3.2 Ghz 1 Mb RAM with Windows XP SP2 (clean install). It seems slow in all areas of development. The only area where perfomance is as good or better is in running the release code. So far it's a major backwards step when compared to VS 7. Is anyone else experiencing this or does anyone have any advice on how to make developing large projects in the IDE at least as efficient as it was in VS 7 Regards Steve Crabb Hi, Yes, this ...Show All

  • .NET Development Update record and change value from integer to dbnull

    i am updating a record and changing a value from 5 and would like to change it to be blank (dbnull).  When i attempt to do this now it spits back an error message.  What is the proper proceedure for entering dbnull into a field. ps. i am using vs 2k5 and an access 2k3 db.   rbreidenstein wrote: i understand that, so lets say it does allow it, what is the proper proceedure for setting a field to null Fortunately with .Net 2.0, we have native support of nullable value types. Before, you had to hand code the nullable type wrapper and if you were working in VB.net most of the tricks ...Show All

  • Visual Studio Events.get_TextEditorEvents - LineChanged Problem

    Hello, I'm writing an add-in in VS.NET 2003 and need to wire up the TextEditorEvent.LineChanged event for an individual document (actually an HTMLDocument).  However, the eventhandler method never seems to get called. Please see code sample below: Basically, the class that the below code is part of (called EditorWindow) is a wrapper for a Window object along with some corresponding objects and information.  OnInit() gets called when an instance of this class is instantiated and _window is a private global member of the class. Basically, I track instances of EditorWindows in another class that never goes out of scope during the ...Show All

  • Visual Studio Team System Search Work Items in VSTS

    Is it just me, or does the lack of a Search feature in Team Explorer make it extremely cumbersome to use We have been using VSTS since Beta 2 to manage and track our projects.  Of course, the number of Work Items has been steadily increasing over time, and we now have over 1500 Work Items (Task, Bugs, Risks, QoS Reqs, etc...).  With so many Work Items, finding a specific Bug/Task/whatever is a tedious process.  Since there is no Search feature in VSTS, I usually export a Query to Excel and use its Search features to find the specific Work Item I am looking for.  Needless to say, this is not the optimal workflow - e ...Show All

  • .NET Development RunTime problem

    Hello All; I want to load some images at runtime. So how can I specify the working folder and then point to that specific image. In other words i want to point my images folder as this:  Working directory/images/... I have used some of System.Environment methos but no one help me. Any suggesstion with a code snnipet would be truly appreciated. Thanks. If you want the current directory you can use: string  current = Environment.CurrentDirectory;   If you want the application folder (or the folder the executable is running from): string applicationFolder = Path.GetDirectoryName(A ...Show All

  • SQL Server Is it possible to execute a container regardless of the checkpoint file?

    I have a situation where I need to make sure a task executes regardless of whether the package starts from a checkpoint or not. Is this possible Here's the scenario: I have a package with 3 tasks {TaskA, TaskB, TaskC} that execute serially using OnSuccess precedence constraints. The package is setup to use checkpoints so that if a task fails the package will restart from that failed task TaskA is insignificant here. TaskB fetches some data and puts it in a raw file TaskC inserts that raw file data into a table. Problem is that the insertion violates an integrity constraint in the database - so it fails. The problem is ...Show All

  • Software Development for Windows Vista How do you access serial ports above comm9

    When trying to use the win32 api for serial communications there seems to be a limit on accessings serial ports. We have a system with 20 comm ports. Using BuildDCB we can only access ports up to 9, as in comm9:baud=1200... How do you configure the DCB to access ports 10 and above http://support.microsoft.com/kb/q115831/ ...Show All

  • Visual Studio Express Editions Unable to read data from the transport connection:

    hi, i am trying to send email using VB2005 but i am getting this Exception. "System.IO.IOException = {"Unable to read data from the transport connection: net_io_connectionclosed."}" while from same machine i am able to send email with same SMTP server from OutLook Express. what could be the reason Finally I found the reason for the error: Some of you solve the problem when turn off integrated autentificaion on configuration tab of SMTP. The problem is that the user who execute your ASP application doesn't have permisions to access SMTP server. try adding credential to the CredentialCache obj ...Show All

  • Visual Studio Team System Analysis Service + IUSR_MachineName ERROR Bad pasword

    Analysis Service is up and running but I get the server did not respond in a timely fashion. I get a 503 error when trying to enable Coverage Analysis Service. I also get a bad user name and password for IUSR account.  I reset the account password after the installation of TFS in the process of fixing some security issues I was recieving.  Where is TFS using this anonymous account   How can I correct the password issue Event Type: Error Event Source: VSTF Coverage Analysis Event Category: None Event ID: 0 Date:  12/5/2005 Time:  3:26:23 PM User:  N/A Computer: S ...Show All

  • Visual Studio Express Editions Ignore white-space characters

    Does anyone know how can I ignore white-space characters(using a function maybe) I want this to happen when comparing two strings.To be more specific when,for example, I write "<hey>" I want in the string comparison to be perceived as correct with "     <hey>" or " <hey> " but not "< hey>" or "<h ey>".I tried with escape sequences like \b or \t but this is for one instance(or as many as you have defined an escape sequence)and when typing exactly the string with what the escape sequence defines.Any ideas One way is to write your own compare function where you strip out the white characte ...Show All

  • Visual Studio Tools for Office .net COM Add-in for Excel - cannot find Extensibility Projects

    Hi I have installed Visual Studio Tools for Microsoft Office after installing vb.net and Microsoft Office 2003 respectively. I cannot find the Extensibility Projects folderin the Other Projects folder. Please would someone help. Thanks Murray  Hi Misha Thanks for the last response. The thing is that I want to sell my Add-In to users of Excel 2000 and onward. I would also like to try and target Excel 97 users if possible. So how do I create and Add-In to manipulate my VBA code that can be used in Excel 2000 and Excel 2003 (and at a stretch in Excel 97). It seems that I massive part of my market lies ...Show All

©2008 Software Development Network