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 TouchToneTommy 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: CuJo
  • Order by date
  1. CuJo

    Right Click Menu

    After the mnu is showing from a right click of the mouse is there a way that the mnu can stay up on the screen so a user can check several mnu items?. The mnu right now will close after a user checks just one item. Help anyone?. There are only two things universal in this world...'Hydrogen and...
  2. CuJo

    Hi ! I am again needed of help. M

    You need to tell more about the file an its origin..along with what it is used for...text file,data base,coding..etc...If it was encrypted then what with?Anyone can encrypt a file and give it an extention specific to its program..a lot more file info is needed....in order to help you... There...
  3. CuJo

    Omni Light + Modify = Program Death ?

    I would check the RAM.. There are only two things universal in this world...'Hydrogen and Stupidity'
  4. CuJo

    inactivity in a textbox

    trust me a timer is not what you want bateman... There are only two things universal in this world...'Hydrogen and Stupidity'
  5. CuJo

    inactivity in a textbox

    replace the msgbox with the form you want... Sorry about that I switched to Decafe' so I'm alittle slow today... <---CuJo There are only two things universal in this world...'Hydrogen and Stupidity'
  6. CuJo

    inactivity in a textbox

    Your going at it all wrong bateman23...... first off a timer is not what you want to use because of the enable disable sux's when you want it to start and stop. get rid of the TIMER....and do this.. Private Sub Text1_Change() Do DoEvents Timeout (5) 'set this secs. to what you want...
  7. CuJo

    Recordset Update

    Why don't you just disable the update button until the user clicks the add button. That way there is no clicking update by mistake or until the add button is activated or until a user puts text in one of the data fields. <---CuJo There are only two things universal in this world...'Hydrogen...
  8. CuJo

    A few remaining issues on the install

    Hm.....I'm understanding you're question right. The first place i would look is when you load the gaphics for you Label/buttons on the design machine is to make sure the path is the same or is going to be the same path it will have when the compiled program is installed on the users machine. if...
  9. CuJo

    POPULATING OR FILLING TEXT BOXES WITH DATA FROM A DATABASE

    Why don't you just asign the textbox datafield and datasource according to your database? Maybe I'm not understanding the question.. <---CuJo
  10. CuJo

    video card reccomendations?

    I am using an ATI rage also and it works fine with MAX and with my other 3d progs...Poser , Maya , Autodesk VIZ , etc... it works fine with all....
  11. CuJo

    Need my form to scroll

    Why are you printing text to a form?.....Use a frame or text box on the form to print the text to with the properties set to flat and no border...then scroll the frame or text box with a scrollbar.....something like text1.top = scrollbar1.value.....well something like that.......
  12. CuJo

    Dump current form to the printer

    FormWhatever.printform?
  13. CuJo

    ADO Not enough temporary disk space Error

    seems to me someone forgot to put a on error resume next in the program..... can i ask why are you using ADO 2.5...???? you should be using Microsoft DAO 3.51.....
  14. CuJo

    Listview headaches

    Just make a label and the caption will depend on the items checked if a listbox item is checked the the label caption will be +1 if an item is unchecked the the label caption will be -1 your answer will be based on the label caption..which can be hidden and called up later..
  15. CuJo

    Printing a form

    Ok guys here's one for ya... I have a form with no border...it has an Image with a BMP or JPG loaded stretch to fit. There are 7 labels all in rows aligned with the image left side. Think of it as a page from a book or magazine. I have a label acting like a button used as the print command. I...
  16. CuJo

    Creating a Glass material

    glass is very easy... just set the material transparent percentage of about 10 and set the reflect/refrac to about 5 depending on how much reflection you want....
  17. CuJo

    other ways to fill combobox

    On load_form() Data1.DataBasename = &quot;&quot; end if On command_click() Data1.DataBasename = &quot;C:\Whatever.database&quot; Data1.refresh end if set your combobox datasource to data1 set your combobox datafield to the data1 field you want it to show
  18. CuJo

    Printing a form..

    Anyone know how i would print this form..... The form is borderless and has an Imagebox and several labels which have diff. captions. I want to be able to open this form and click a button that will print the form with the Imagebox and the label captions within an 8x11 portrait orientation. In...
  19. CuJo

    Self Extracting

    I am making a Self Extracting file program to use inhouse for our CADD files...that is for when we exchange files with ARCH. ENG. etc....Does anyone have any information on making the build .EXE portion of the program... I can take the CADD files and pack them in a file with an extention of the...
  20. CuJo

    Populate textboxes with data determined by an item in the combo box

    If your using a database then i hope your using a DBCombo box... Anyway in the MouseDown event of the DBCombo put this code and i hope i got it right.... Dim sBookmark As String sBookmark = WhateverDBCombo1.SelectedItem WhateverData1.Recordset.Bookmark = sBookmark now if all the text box's on...

Part and Inventory Search

Back
Top