femig's Q&A profile
Visual Studio Express Editions Free VB Book
http://msdn.microsoft.com/vstudio/express/register/ is a page on registration benefits that says to get " Microsoft Visual Basic 2005 Express Edition: Build a Program Now!" at the Registration Benefit Portal. How can I get the book How can I find the portal hi, you can try this link https://connect.microsoft.com/downloads/downloads.aspx SiteID=40 hope this helps ...Show All
.NET Development pls help me? how to make focus to next control when enter key press in that controll
I have 3 textbox When I Press Enter key In Textbox1 The Focus to should be 2 textbox and iF 2texbox enter Foucs on 3 Textbox My Problem is Name_txt.Attributes.Add("onkeypress", "if(event.keyCode==13)document.forms[0].Address_txt.focus()") When I enter key is Press in Name_txt The Page load is Working and I have Button for save Its Also Working Pls help me with code It's not clear exactly what you're asking. The following example moves the focus. If this doesn't resolve your issue, you should follow up in the IE newsgroups. IE/DOM related questions http://www.microsoft.com/windows/ie/su ...Show All
Visual Studio Team System BUG: Serialization of Project type does not include ProjectConfigurationToBuild and ProjectSolutionToBuild!
I'm working on a system for build automation (CI) and I'm having some problems with the Project type and that it doesn't include ProjectConfigurationToBuild and ProjectSolutionToBuild values when being serialized. Here are the declarations from the type definition (Microsoft.TeamFoundation.Build.Common. Project ): [ XmlArrayItem ( "ConfigurationToBuild" , IsNullable = false )] public ProjectConfigurationToBuild [] ItemConfigGroup { get ; set ; } [ XmlArrayItem ( "SolutionToBuild" , IsNullable = false )] public ProjectSolutionToBuild [] ItemGroup { get ; set ; } The ItemConfigGroup property is null ...Show All
Visual Studio Can't add MSDN library to x64 install
Hi All, I have an install of VS 2005 CTP July 2005 on my DELL PowerEdge box (dual 64-bit processors). The install went fine, but I can't install the MSDN library that was on the DVD. The install says an unhandled excption in msiexec.exe. Can the MSDN library be installed on 64-bit hardware Or am I missing something else Thanks in Advance! Corey. Don't have a DVD drive. DELL wanted a fortune for them on the PowerEdge 1850.... :P C. ...Show All
Visual Studio 2008 (Pre-release) How to make a non-retangular display?
I wish to make a non-rectangular display like this Windows Media Player( http://journal.mycom.co.jp/news/2002/09/11/06cl.jpg ), How to do it (I have found some information on the web about WIndows form, but I can't find any for XAML) Thanks, can you provide a bit more information Eg, Which control, which template, and what to change... Or is there any sample on the web. I have try to use the clip property on the windows, but not successful. Thank again. ...Show All
Visual Basic Filling text box with KeyUp strokes
I'm trying to get the keyboard letter values to appear in a textbox as the user types, but I get some other values that don't make sense. Here's my code: Private Sub txtRootPath_KeyUp( ByVal sender As Object , ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtRootPath.KeyUp Dim newKey As String Dim sPath As String = txtRootPath.Text & e.KeyCode.ToString lblPath.Text = Path.Combine(sPath, txtHTMLFileName.Text) End Sub If I type a slash (\) it enters: Oempipe. How can I display the exact characters that are being typed for human readability, and not the keyboard ascii values than ...Show All
Visual C++ Linking with extension dll
hi, I am working with a old project using VS 6.0. The exe uses an extension dll. I dont know how the exe is linking with the extension dll. I checked for the following 1. If the client exe has AfxLoadLibrary - for explicit linking. 2. If the import library is included in the client project settings linker option. 3. any # pragma statements which do the forceful linking. None of the 3 methods is used. Is there any other method to link an extension dll. I assume that extension dll also requires either implicit or explicit linking like regular dlls. Please Correct me if i am wrong. regards, sk80. & ...Show All
Visual C++ C++ Build Failure
I get stuck on the easiest of codes, the "Hello World!" code. What I do, is start a Visual C++ Win32 Console Application, Empty Project... And Application Type Console Application. Then, I add a file to the Source Files called HelloWorld.cpp. This is my code I type: #include <iostream> main() { std::cout << "Hello World!" << std::endl; } Then I try to build, compile, anything, but I keep getting this error saying: c:\documents and settings\nick davidson\desktop\experiments\vbprojects\helloworld \helloworld\helloworld\helloworld.cpp(4) : error C4430: missing type specifier - int assumed. Note: C++ do ...Show All
Visual Studio 2008 (Pre-release) Problem with LocBaml
I did every thing right as per the devx article to localize my application. I have managed to create 2 resource dlls 1. en-US and 2. ez-CH There are lot of initial hikeups before i could get to above stage. The problem is, even after changing the culture, the UI (lables) doesn't seems to be changing the culture. I have used online tool to convert english to Chinese abd pasted in the excel file. But when i open this csv file, it does not show the chinese characters. shows some junk. Do i need to install Chinese font in my machine can some one help me as i have a deliverable to release by this weekend. Thanks in advance ...Show All
Windows Forms how to group items in the listview?
i want it to look this way group 1 item 1 item 2 item 3 group 2 item 1 i've tried the msdn sample but i get errors, Items.Item ...Show All
Windows Forms Setting Datagridview Styles Dynamically
Hi, As part of my learning of VB express I am stuck at the moment on setting the datagridview styles dynamically. I can change the default formatting colours etc but what I would like to do is change the colour of a complete row based upon the value of a given cell within that row. I have in my datagridview a number of rows where one row has a cell with the value 10. I would like to paint this row's background red to highlight it from the rest. I have tried many ways of doing this but without the required result. I have used the .rowprepaint and .rowpostpaint events Any help would be very welcome # Re ...Show All
Visual Basic setup project can not build
Hi, I am using vs 2003 to build a setup project but got this error message "Could not find file ..., Not enough storage is available to complete this operation." I checked the path of the file, it is correct. After I remove this file from the setup project, I can build it successfully and the result msi file is about 250MB, the file I removed is about 260MB, is there any limitation about the size of the file in setup project or the total size of msi file If so, how can I build the setup project I appreciate your help. I'm getting this error now on simple projects (basic Windows app w/ 1 form). ...Show All
SQL Server Carriage Returns and Line Breaks
I have an address field that is coming back as a single field with carriage returns and line breaks and I would like to have it properly wrap in a single box, but the wrapping is all off. How can I get this to properly break Thanks Nope. That is not the issue. It is cangrow = true. What I want is to take a field that comes out as: John Smith CR LB 123 Main Street CR LB Anytown, MA 01888 CR LB USA as John Smith 123 Main Street Anytown, MA 01888 USA What I am getting is: John Smith 123 Main Street Anytown, MA 01888 USA So I am looking how to read the CR and LBs and ...Show All
.NET Development TCP Sockets checking aliveness
Hi, I have an app where it is critical that any connection interruption between the server and the client is immediately noticed. Right now I'm using a "ping packet" that I send to the server and the server sends it back. If it's not returned within time x and the server hasn't received a new one within time x the client assumes it's disconnected or the server disconnects the client. However, since I'm sometimes sending large objects over the socket which can take a couple seconds to transmit I can't send a ping packet every 3 seconds or so as it then would time out since the socket might be blocked while sending a larger object. H ...Show All
Software Development for Windows Vista WorkflowInstanceID
I am trying to get the workflow instance id of the executing workflow so that I can send it to my declared events. I have tried this.WorkflowInstanceId and WorkflowEnvironment.WorkflowInstanceId but when I get to firing the event I get an exception that says that the event could not be delivered. The inner exception is "Instance operation is not valid on workflow runtime thread" Any suggestions Amanda Amanda - you (as the "host") have to keep track of this in someway. You can certainly find out what workflows are executing by using WorkflowRuntime.GetLoadedWorkflows ...Show All
