Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~6K People Reached
Favorite Tags

22 Posted Topics

Member Avatar for Carlo_g12
Member Avatar for tulsafork

Welcome to the forum Nubski. [URL="http://www.devdos.com/vb/lesson4.shtml"]Does this help?[/URL]

Member Avatar for cfry
0
119
Member Avatar for Prozeen

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 …

Member Avatar for trudge
0
73
Member Avatar for plusplus

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]

Member Avatar for QVeen72
0
106
Member Avatar for anandarose

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 …

Member Avatar for Prozeen
0
73
Member Avatar for Magnusz

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.

Member Avatar for Prozeen
0
119
Member Avatar for Prozeen

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 …

0
84
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
115
Member Avatar for Prozeen

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.

Member Avatar for Prozeen
0
114
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
236
Member Avatar for Prozeen

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 …

Member Avatar for zmariow
0
2K
Member Avatar for louislam123

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 …

Member Avatar for choudhuryshouvi
0
115
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
723
Member Avatar for Dell XPS

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" …

Member Avatar for Dell XPS
0
110
Member Avatar for countryboyz

This one's out of my league, but maybe if you post your program it might generate a better response?

Member Avatar for Prozeen
0
250
Member Avatar for shear

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) …

Member Avatar for Prozeen
0
147
Member Avatar for orion_nsk

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"?

Member Avatar for orion_nsk
0
230
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
62
Member Avatar for sixer_ch

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.

Member Avatar for Prozeen
0
250
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
123
Member Avatar for jatinder_44

[URL="http://www.codeguru.com/vb/controls/vb_othctrl/ocxcontrols/article.php/c9175/"]Something like this?[/URL]

Member Avatar for QVeen72
0
84
Member Avatar for Prozeen

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 …

Member Avatar for Prozeen
0
441

The End.