Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bobgg
  • Order by date
  1. bobgg

    Preventing form movement

    Hi, this is my first exposure to vb.net. I have created a form...set the locked property to true, however the form still moved at runtime. How can I prevent it from moving???
  2. bobgg

    unloadable form

    I have unloaded a form with the unload command, however when I try to reload the same form with the load command I get an error message :- run-time error 364 object was unloaded. can you help? Thanks in advance. bob.g
  3. bobgg

    help required retrieving info from a table using OpenRecordset

    Hi Everyone, I am a new programmer trying to access a table called "CUSTOMER DETAILS" in MsAccess. the code I have already is:- Private Sub LOGINOKBUTTON_Click() Set dbase = New ADODB.Connection Set dbasers = New ADODB.Recordset dbase.CursorLocation = adUseClient...
  4. bobgg

    passing variables between flash5 and php4

    Hi everyone, can somebody please help me in achieving the following task. I have got a variable in my flash5 program, trying to pass it to my PHP script using the code below:- loadVariablesNum("check.php",_root,"POST") my textbox in flash has got a variable called check...
  5. bobgg

    simple but difficult...

    Hi everyone, I have a text box instance named:- inputbox1 set to input Text with a variable input1. I have also got the following code attached to the text box:- onClipEvent(load) { input1 = 0; // initialising the text box which worked } onClipEvent(mouseDown) { input1 = "&quot...
  6. bobgg

    code re-construction

    Hi rgstewart, the reason why this code is in a button is because of the way I designed my movie. Instead of having the clip played automatically, the viewer has the option of starting it themself. Am I right in thinking there is no other way to get the above code executing within a button...
  7. bobgg

    code re-construction

    does anyone knows how to get the following movie clip code working in a button:- onClipEvent(enterFrame) { if(nIntervalCount > 20) { makeABall(); // make new item between every 11 and 15 frames nIntervalCount = Math.randomBetween(5,9); } nIntervalCount ++; }...

Part and Inventory Search

Back
Top