Answer Questions
Andrew Chudley Licensing information Visual Studio 2002, English
I am an English speaking person now living in Germany slowly learning to speak German. I purchased a German version of Visual Studio at a good price. As I near the possiblility to sell software I have written with Visual Studio I would like to know what I can legally sell. Would anyone be able to suggest where I can find this info in English that would apply to my VS Software I use Microsoft Developement Enviroment 2002 Ver. 7.0.9955 with the ...Show All
GregUzelac help declaring a number and refering to it later
hey im develeping this little game where you are asked to guess a number bewteen 0 and 50. it raises some wuestions for me, i have tryed some coding, but they fail all the time so im asking you for help. 1. how do i declare the random number the user is soposed to gues i have tryed: "dim guessn as double = <50" but it returns "end of statemaent expected" whats that im missing and how do i make a life counter & ...Show All
Higgaion How to change brush color...?
I have a fontdialog where I pass the font type, size and color to a lable control. Then in the document drawing I want to pass the color from the lable control to the brush....it is not constructable I have tried this... Dim FontBrush as new brush & system.drawing.brushes.brush then with fontbrush .color = labelcontrol.forecolor end with... It dont work......how the heck can I specify in the drawstring funtion a brus ...Show All
Oliver-LundK.de File IO
I need to search a fixed length, sorted ascii file. I would like to use a binary search algorithm, but thus far have been unable to figure out how to read a specific record in the file. The only way I can find to read the file is sequentially. For example if VB6 I would do something like this if I wanted to read the 10th record of a fixed length file (100 chrs per record). apiFleNo = FREEFILE apiFileLen = 100 OPEN apiFile & &quo ...Show All
Zarfman How to hide main form
I have a main form that while loading, if necessary, opens another form (form2). if form2_needed = true then form2.show me.hide end if However, the main form refuses to hide. Thanks. Is this VB/VS 2005 There are several solutions, if so. The first one is to use a sub main() as your startup, and show/hide the form as necessary from there. If you startup with a form, that form is a ...Show All
JZills How to delete access database from dataadapter and dataset
I know how to do this programmatically through building my own objects and executing them. I do this with SQL all the time. On this project, however, I'm trying to do something different and use a small Access Database with one table, Jobs. I created a New Connection in the Server Explorer to the database and then did a drag-n-drop from the Jobs table to the Windows Form. Here it walks you through the part where you do th ...Show All
BETA 2 TESTER Validating within a User Class
I need to populate a container with an indeterminate number of label/textbox pairs for input. Since it is indeterminate at design time, I thought I'd create a user class with both a label and at text box in a pair so I could create them at run time and populate the labels appropriately from a data file. I need to validate each text box for numeric value. Then, I need to use that value to build up a subtotal on the form...sort of like this: ...Show All
Schnielz using code written in C#
Hi. I'm trying to use a code library written in C# in visual basic, but i cant figure out how to do it. Here's the library: i want to be able to use the functions in it in VB. I've tried compile it into a class library and then add it as a reference in visual basic, but it still doesn't work. mattias Mattias, Can you let me know if you want to achieve this in a old VB 6 App or a VB.Net App ...Show All
annaDD3 C# or VB ?
other than familiar syntax is there any reason to use VB instead of C# is the difference only syntax I have never worked with serial communications and don't know much about them. However, if you are inserting a "\n" or an "\r" in a string from C#, then you can insert a vbCr, vbLf, or vbCrLf in the same place in VB. ie: Dim s As String = "This is line one" & vbCrLf & "And t ...Show All
mark_k Debug mode reverts to previous level of form
I have been making a sequence of changes to a form, entering debug mode after a few changes. Suddenly debug mode has stopped displaying recent changes, instead reverting to an ealier version. There are no indications of either compile or runtime errors. This makes it difficult to determine what is causing the problem. Is there some way to make the IDE not use a cached version Matt, One more bit of information. I added a text box but g ...Show All
Juergen Weis How do you create buttons with events at runtime in .Net?
Hi everybody, Is there anybody how to create buttons with events at runtime in .Net preferably in VB.Net --------------------------------------------------------- Sample: Inside the #Region " Windows Form Designer generated code " Friend WithEvents btnCenter As System.Windows.Forms.Button Outside #Region " Windows Form Designer generated code " Private Sub btnCenter_Click(ByVal sender As System.Object, ByVal e As System.EventAr ...Show All
Jerry2000 Pause
Hello, A quick question. I am using Microsoft Visual Basic 2005 Express Edition. I was wondering if there was an easy way to add a pause. I have some graphics I want to display but want them to stay on the screen for a second or two then hide. I know its probably an easy question, but I cannot find the answer anywhere. Thanks a lot for your help. Scott RIchard I think there's more.... ...Show All
abdi Favorites & Options
If you have a web browser how would you write code for a favorites menu Also how would you write code to make an options dialog that can change the forms font, color and things like that ...Show All
EmilianoCapoccia need help about active x
I made an active x control on my visual basic 6 and use it as an active x on my created webpage. The active x is running normally on my webpage, but the problem is, when I published my webpage, the active x coudn't see. what should i do ok. thank you so much Spotty for the help. Just like a picture, if you attached a picture on your webpage then you publish your webpage without uploading that picture, you will not see the picture yo ...Show All
Jay_MTN Name "________" is not declared
Hello, With some of my codes, an error comes up saying Name 'RadioButton1_Checked' is not declared. I am using some code snippets to build this script, and I get that error when typing in the script. Private Sub Button1_Click( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles Button1.Click If RadioButton1_Checked True Then MsgBox( "You are incorrect" , MsgBoxStyle.Information, "Wrong Answer" ) ...Show All
