Answer Questions
sasa_1999us question about vb express and hanging the pc
I have installed the entire package and even started a first project, the problem comes when I move a web browser control to the form, the CPU goes to 100%, and pretty much the system is EXTREMELY slow to respond, makes sense if it's maxed out, but why is this happening my cpu is a 1.5Ghz should be able to handle this software just fine , plenty of memory almost a Gig, so what is the deal anybody else run into this ...Show All
Ruxo How to publish
When I published my application, I have no idea where it installed it self to what directory. My publish location is c:\program files\rma\ Yes it does put files here, but when I double click on an excutable file to install it, I think it went to c:\my document setting\etc. I want it to install to C:\program files\rma program\. Where is the setting path for this.. thank u Thank you again, I like to ...Show All
nkh8204 Problems creating winforms projects
I have installed and followed instructions for the Platform SDK on Visual C++ Express but im having problems using any kind of project with forms in it. Creating a new Windows application doesn't work and neither does creating a winforms project. The error message simply says that the "Automation Server cant create the object". The error seems to occur when the project is either converting to, or beggining to open the CLR se ...Show All
BillFugina Finding out what a textbox contains
Hi there. I am currently developing a small application to tell users what grade of security their password has. Now, to do this, i need to check what the textbox contains, like signs, numbers, how many lines they are and so on. I can understand the basic syntax for it: If Textbox1 = contains !"# %&/()= then metervalue = metervalue + 5 Well, that is what i have figured out, but i don't know the proper command to see if a textb ...Show All
c0ke How to Check if Integer Divisable by 100
How could I check if an integer is divisable by 100 For example 100, 200, 300, 400, ... Thanks, That worked if (x Mod 100 = 0) I *think*. Certainly in C# it's if (x % 100 ==0 ), and a quick google leads me to believe that Mod replaces to mod operator (%) in VB.NET. Mod returns the remainder when the left value is divided by the right value, so if it's 0, then the ...Show All
ichNET Formatting Conversion from Double to String...
How do you get the conversion to show a particular number of decimal places For example: double x = 100; textBox1->Text = System::Convert::ToString(x); This method will display "100" in the textbox but I would like it to display "100.00" in the textbox. Any suggestions I don't know how to do it with an IFormatProvider, but I do know how to do it with String::Format ( http://msdn2.microsoft.com/en-u ...Show All
tiffeyneohelp Suddenly my Form1 is HUGE!
Visual Basic 2005 Express Edition: My debugging sessions have been going fine, suddenly my Form1 is HUGE! My screen mode is still 1024x768, but, my Form1 is greatly enlarged - like it is in 800x600 mode. I don't know how that happened! I compared the Properties of my Form1 with the Properties of Form1 in a new application and they are the same! If by Task Bar Icon, you mean the very upper left ...Show All
Betatester-Mario Keyed Collection Class Question
Hello All, I have a question about the Keyed Collection Class. I am using the Keyed Collection Class as the basis for a Collection in my VB application. I chose they Keyed Collection Class because it appears to allow you to store the objects in your Collection with a Key Value that can be used to retrieve remove or find them latter. However when I try to execute the add method of the Key Collection Class it says that I have too many arguement ...Show All
Freiling VB Express code documentation generation?
After adding inline code documentation using the vbcommenter style tags, how do I generate the xml documentation files I can't find the switch anywhere in the options. Is there a tool that allows me to create these documentation files for future use in ndoc. In the project properties under the build tab, there is an option for the xml doco at the bottom. Are you sure you 're talking about vb ...Show All
Richard Guo Newbe question, incrementing a value
I'm trying to increment a value every time button_1 is clicked. Can someone tell me why the following code doesn't work. Thanks in advance. Ken Public Class Form1 Dim number As Integer = 0 Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click number = number + 1 End Sub Thanks GrandpaB and Shlizar Axis, ...Show All
luisfslo Need Help with Maths with progressbar
I been trying to work this out for some time now and I just can not get my head around this everythink i do just does not work. t= total seats a = taken seats int t, a, avg; t = Convert::ToInt32(txtfirstclass->Text); a = Convert::ToInt32(txtavfirstclass->Text); avg = 100 -( (a*100) / t); progressBar1->Value=avg; Say there are 25 taken and 50 total seats progressbar should be at 50%. and if there are 10 seats and ...Show All
Philly Richtextbox control question
What is the best way to control formatting of programmatically added text inside a richtextbox control Take a look at the properties of the RTB that start with 'Selection' and 'Selected'. They are the ones you need to select specific text and manipulate it. ...Show All
CorneVR Adding Project References
In the VCS express edition, I don't see an option for adding project references. There is a project tab within the "add reference" dialog... but it doesn't have any buttons like [add] or [browse]... only a blank list... that is all that I see on the project tab. Is this normal Is it a problem with my install How can I add project references Is there another way to go about it through the UI ...Show All
AudiRS6 How to move to next cell in DataGridView by Pressing Enter
Hello Developers... Can anyone help me about moving focus to next cell instead of next row by pressing enter or any other specific key. I want to move focus to next cell when user get done with editing with current cell and he presses enter I want focus on next cell. How can I do this I tried most codes like this DataGridView1.currentCell = DataGridView1.Item(e.ColumnIndex+1, e.RowIndex) but, Not working actually. Please help me. Its ...Show All
Joe2005 How do I re-install the MAJOR UPGRADE 2 The Zone??
i followed instructions i tried a lot doesn't go: it crashes, i've send report. can't do anything. ... Brian Shepherd wrote: Odd, i couldn't either, because I was running something! oh...what else should i say How are you installing, from the Web installer, or the full ISO Image. I would give the full ISO Image a go and see what happens. Manual Install Packages for Visual Studio Exp ...Show All
