Jaya Rayasam's Q&A profile
Visual Studio Text Lines OverLaps in the Help Menus Display Window
Hi, When i am crusing the help files I keep running into sections of text that have overlaped in the display. Is it just me (MyVidCard) or has anyone else come across this, or do you know the fix Thanks in advance for any help. Steve Somebody else reported this recently. I don't think we've had a chance to debug it yet. Can you tell us what video card you have and what driver you're using You can get this information from the Advanced tab on Display properties (right click on the desktop and select Properties, or get to the same UI via the Control Panel) Also: 1. Are you using online help or local help 2. Are you viewing help ...Show All
Visual Basic Make sure the application for the file type (.vb) is installed
I installed VS 2005 Beta 2 on a WinXP pro system (numerous times). It finally installed without erreors. It looks like it is basically working - I can create a new windows project and add items from the toolbox, edit the code etc. If I open an existing project (created on another box) things load properly but I cannot open any forms in designer view (I can open them in code view). When I attempt to open a form in design view I get the following error popup: ===================== There is no editor available for 'c:\....\myForm.vb'. Make sure the application for the file type (.vb) is installed. ==================== Any thought on how to cor ...Show All
Visual Basic very poor design
i know i am new to vb, but i am very disappointed in some areas. 1. the help sucks, almost every item i click on i get an error. all of the suggestions are useless because it's a link problem. they just don't work. 2. and who in their right mind would store files that have to do with projects outside the folder named for that project makes no sense. if i want to back up a project, i shoud be able to go to that folder and make a copy. but no, the vb code is stored outside the project folder, under projects. just stupid if you ask me. Ha ha Lactate pump What kind of application are you writing ...Show All
Visual Basic Help Trying to Create Project Get Errror 0x8007007B
Hi, I just installed Visual Basic 2005 Express Edition. When I try to create a new Project (File --- New Project --- Windows Application) I get the following error: The filename, directory name, or volume label syntx is incorrect. (Exception from HRESULT: 0x8007007B) I tried changing the default directories for projects, that didn't work. I rebooted. I tried starting a different type of project, all with the same error. PLEASE HELP!!!! charlie Hi Charlie, I assume you got to the New Project dialog since you could change the Project Type. What are you using for these field ...Show All
Visual Basic How to migrate VB.NET 2000 code to VB.NET 2005 code
Hi I would like to know if is possible to update VB.NET 2002 code to VB.NET 2005 and if you know some procedures that can help me Thanks Do you mean VB.NET 2002 The only version prior to that is VB6. If you mean VB.NET 2002, I would not have expected any huge problems. Is there not a migrate wizard There is for C#, I import a project, it migrates it ( I think changing only the project files, as that's all that needs changing ), and it just works. If you mean VB6, there is a tool, apparently, which apparently does not work well. VB6 and VB.NET are virtually two different ...Show All
SQL Server Cannot find either column "dbo" or the user-defined function or aggregate "dbo.FN_NIVELCOMPETENCIACARGO", or the name is ambiguo
Hello i have this query and I havent been able to solve it Cannot find either column "dbo" or the user-defined function or aggregate "dbo.FN_NIVELCOMPETENCIACARGO", or the name is ambiguous. I have tried with dbo and withou dbo, specifyng columns inside it, Thanks select a . nmempresa , a . nmtipocompetencia , d . dsnombreciclo , c . dsnombrecargo , a . dstipocompetencia , a . dscatalogo , b . popeso as PesoTipoCompetencia , f . dsnombrecompetencia as Competencia , e . pocompetencia as PesoCompetencia , g . DSOPCIONESCALA , g . PESO from tgsc_tiposcompetencias a , TGSC_TIPOSCO ...Show All
SQL Server SQL Server 2000 "Personal" to "Standard" Upgrade
Hello all, By mistake I have installed a MSSQL-Personal-Edition instead of teh Standard-Edition. I have ste up all Databases and SP4 (runing on W2K3-Server). I know, that i can upgrade to Standard-Edition by simply doing an other setup on top. (I have found that Information on the MS-Websites) But: Won't there be any problems with SP4 I can't find any Word about that. Is there anyone, who can help me The system is up and running, I can't afford much downtime. Thanks in advance. Kind Regards: reesthil ...Show All
Visual Studio Express Editions Timer
Hi, I have a ToolStripStaus Lable on my form which informs the user that the new account has been added to the database. I would only like this message to be displayed for a given time and then be removed, what is the best way to code this I could do this using a timer control, is there a better way to add pauses within code Any help would be appreciatted Me .ts1.Text = "New Account Created Sucessfully" Ron Nash I think it's best if you never think in terms of pauses but in terms of asynchonous events which is what a timer does. Here is how you might use a timer for y ...Show All
Windows Forms NullReferenceException in Unknown Module when binding 2 checkboxes.
Hi, I am getting a nullreferenceexception in Unknown Module, additional information: Object reference not set to a instance of an object when databinding 2 checkboxes in my form. This form is a secondary form called modally from the startup form. When I step through the code slowly, I don't get this error, I also don't get this error when I call show instead of ShowDialog. When I comment out one of the binding statements, I also no longer get this error. What am I missing It seems like there is a validation event occuring somewhere but I can't find the actual code that is running Any help would be appreciated. Kevin ...Show All
.NET Development XML Exception
Hi friends, I got an exception while processing a XML file. The following is the exception. Can anyone help me to findout the exact reason behind this exception - < Message > - <![CDATA[ System.Xml.XmlException: '', hexadecimal value (1F hex char (sending plaintext)), is an invalid character. Line 14, position 197. at System.Xml.XmlTextReaderImpl.Throw(Exception e) at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args) at System.Xml.XmlTextReaderImpl.ThrowInvalidChar(Int32 pos, Char invChar) at System.Xml.XmlTextReaderImpl.ParseCDataOrComment(XmlNodeType type, Int32& ou ...Show All
Windows Forms drawing over a panel
I'm trying to draw a simple graph using the "drawline" command. I have no problems drawing on a form, but I am unable to draw over a panel or a tab control. Ideally I would like to have a tab control that displays different graphs depending on which tab is selected. Can anyone give me some advise on where to look or any sample code on how to draw over tab controls and panels Thank you Either derive from panel and override the OnPaint method or respond to the Paint event. You will receive a PaintEventArgs as parameter. Use the Graphics property to paint the line. ...Show All
Visual Studio Express Editions Serial port properties NOT binding.
There seems to be some problem (bug ) with the serial port properties binding. I have : Baudrate, Databits, Handshake, Parity, Portname and StopBits set up as binding, the little binding symbol appears next to the name and also they are all listed under the Application Settings. Of all the above only the HandShake (Flow control) is properly saved on exit and restored at startup, all other values for the serial port revert to the default state rather than the state on exit. Other settings for other controls are all saved/restored ok except the above. Can anyone one shed any light on this please Perhaps someone who uses serial ports can try it ...Show All
Visual Basic AnalogTVTuningSpace and MSVidCtl
I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp and here: http://msdn.micro ...Show All
Visual Studio Express Editions Express Edition Release Candidates
Hello Will there be any Visual Studio Express Edition Release Candidates and when will they be available Also if you could make them available to the general public not just subscribers that would be great. thanks Jason D. well, actually are some issues in beta2 that are fixed in RC which are important for me ...Show All
SQL Server About SQL Server
Hi, Need some help regarding the SQL Server 2005 installation on Windows server 2005. I have installed the SQL server 2005 on Windods 2003 server. I have a database of 20 GB. Two of my db tables have about 4 millions of records. My Sql server has Ram of 2 GB. But As soon as some 10 users fire the queries, SQL server get jammed.It reach the aloocated limit of Max memory.There after It takes too much time to respond. Can any one suggest me the best configuration parameters for SQL server and for windows server 2003(like virtual memory and paging files etc). Thanks & Rgds Vyankatesh Hi, I would first ...Show All
