No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
22 Posted Topics
Re: Welcome to the forum Nubski. [URL="http://www.devdos.com/vb/lesson4.shtml"]Does this help?[/URL] | |
I'm a newbie to css and I've hit the wall :( I would like the user of the web page/site to scroll down the page and still have the navigation bar shown at all times. I've managed to do this, however, the text scrolls over the top of the navigation … | |
Re: These links might help... [URL="http://www.xtremevbtalk.com/showthread.php?threadid=35110"]Flexgrid examples.[/URL] [URL="http://support.microsoft.com/kb/181912"]Microsoft support.[/URL] | |
Re: This is just a wild guess (I've never tried Liberty Basic) but I noticed that some of the code in the square brackets is different. In other words... GOTO [assignRiskCode] GOTO [determineRisk] ... [determineRiskCode] [assignRiskLevel] Maybe this is causing the problem? Are there any other details you can provide regarding … | |
Re: Here's a program to look at. My apologies for not using text boxes. I used buttons and then realized my mistake after re-reading your post. Still, the same theory applies... Store the values, and then include those values in your answer. | |
I've got a problem with Word. My program can open Word, put text into it, save it and close it. But if I try to use Word again (without closing my program) I get an error... Run time error '-2147023174 (800706ba)': Automation error The error that is highlighted in the … | |
Hi, I couldn't find any info about this, so... When I click on my name and select "Find all threads started by Prozeen" it shows the list of threads, but it does not telll me which of the threads have been solved. So, can the word "Solved" be added to … | |
Hi all, I would like to save my project's code in a text file when the project runs (so that I can keep track of any changes) I know how to open/print/write/close a text file, but how would I capture the code that is running? Any ideas/links/thoughts? Thanks. | |
Hi, I am displaying a dialogbox to the user. If the user clicks the "Cancel" button I want to show a message box, then I want to continue displaying the dialogbox. The best I can come up with is...[code]Do comdia.Filter = "*.doc" comdia.InitDir = "C:\" comdia.filename = "file01" comdia.ShowSave On … | |
Hi, this is a mathematical question, but I'm doing it in VB so I thought I'd post it here... A person is shown a total of 10 numbers. When a number appears on the screen they have to type that number into a text box and if they get it … | |
Re: Do you mean the listindex property (for a listbox)?[code]Dim a As Integer Dim b As Integer Private Sub Command1_Click() If List1.ListIndex = -1 Then MsgBox "nothing selected" ElseIf List1.ListIndex = 0 Then a = List1.ListIndex + 1 MsgBox "The value is " & a a = 0 b = 0 … | |
Hi, how do I use the EOF function with an Excel spreadsheet? I'm thinking that the EOF needs a file number. But in my code below, I don't have a file number. What do I need to do? Any links, code, info available? Thanks.[code]Dim app As excel.Application Dim book As … | |
Re: Is this what you want? [code]Private Sub Combo1_Click() If Combo1.ListIndex = 0 Then Combo2.Text = "No data" MsgBox "Please select a car manufacturer." ElseIf Combo1.ListIndex = 1 Then Combo2.Clear Combo2.AddItem "Holden 1" Combo2.AddItem "Holden 2" Combo2.Text = Combo2.List(0) ElseIf Combo1.ListIndex = 2 Then Combo2.Clear Combo2.AddItem "Ford 3" Combo2.AddItem "Ford 4" … | |
Re: This one's out of my league, but maybe if you post your program it might generate a better response? | |
Re: If I understand you correctly... It looks like you need to store two variables (for the correct and incorrect answers), have the user answer the questions, hide the first form, show the second form and carry the two variables over to that 2nd form (3rd then 4th then 5th form) … | |
Re: If I understand you correctly, you are wanting to know the name of a control that has received the focus (i.e. setfocus) and therefore you need to use "gotfocus"? | |
Hi there. I've got two forms (form1.frm and frmoptions.frm.) The first form contains a variable (multip = 2.) When I click on the first form let's say I want to see that variable in the second form's command button's caption. This doesn't work. All I get is a blank command … | |
Re: I didn't try them out. But maybe the links below might help. [URL="http://www.a1vbcode.com/app-3102.asp"]http://www.a1vbcode.com/app-3102.asp[/URL] [URL="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=59384&lngWId=1"]http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=59384&lngWId=1[/URL] Or maybe you could use VB with Open Office? Good luck. | |
Hi there, I'm completely new to C++ programming and need to find out/verify something in the code below... [code]// my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; }[/code] From a web site I (believe I) understand the following … | |
Re: [URL="http://www.codeguru.com/vb/controls/vb_othctrl/ocxcontrols/article.php/c9175/"]Something like this?[/URL] | |
Hi all, I have 3 labels, with 3 captions (i.e. integers)... Label 1 = 1 Label 2 = 3 Label 3 = 2 What I want to do is search all these labels and find out what the highest number is (in this situation it's 3) so that I can … |
The End.