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: *

  1. drwunz

    printing in landscape mode

    You didn't indicate what code you are using to select landscape mode or to print, but the following has worked for me: Printer.Orentiation = vbPRORLandscape Printer.Print ...
  2. drwunz

    system file outdated

    I, too, have had this problem. The solution has been to make sure my development machine is no more 'Windows Update' current than the target. Installation seldom has a problem with accepting newer versions of system files, but seems to hate finding older versions on the target.
  3. drwunz

    DataGrid corrupts data on Rebind

    I'm using VB6 w/SP4 on a Win2K system with SP2. I have a DagaGrid on a form bound to an ADODC. It is a readonly dg with AllowUpdates set to False. I force a ADODC.Refresh once a minute and then a DataGrid.Rebind. If the user has clicked on a cell in the DG, the contents of that cell are...
  4. drwunz

    Subreport won't find records

    Thanks! Show SQL Query showed exactly what happened. Since the ContainerID field is defined 20 characters, and I wanted to test against '*' & '00000111110098499336' & '*', which is 22 characters, CR truncated it to '%0000011111009849933'. This didn't match any records. Your suggested statement...
  5. drwunz

    Subreport won't find records

    I'm using CR8.5 and SQL Svr2000, and am having trouble with a report having a subreport... The main report record select statement is: ({Event.Description} like '*' & {?BarCode} & '*') and {Event.Source} = "FCC" and the subreport record select statement is...
  6. drwunz

    NT authentication on web page

    You also need to go into IIS, Application properties, Directory Security Tab, Anonymous access and authentication control Edit button, and uncheck the Anonymous access box.
  7. drwunz

    Values won't change...please help

    Never mind... I was populating the form from the DB each time...not just if 'not ispostback'. putting the call to populate the form inside the if statement cured it. Thanks for your help...what you gave me about updating in the grid will be helpfull in another screen, and I didn't know about...
  8. drwunz

    Values won't change...please help

    I think I understand what you're saying, but perhaps I need to clarify. I'm selecting the row from the grid to edit, but the edit screen consists of TextBox and ComboBox controls with the data filled in from the record. When I make changes to the Text/ComboBoxes and submit that form, I don't...
  9. drwunz

    Values won't change...please help

    I have a data grid with edit and a 'New Incident' button. If I click the button, a blank form is displayed which I can fill in and save the record. If I click Edit, the same form is displayed with the current data filled in...if I change any of the fields and click Save, the .Text properties...
  10. drwunz

    Display not aligned on a laptop

    I built an asp.net app having a page with several labels, text boxes, and combo boxes. When I view it from my PC (with a CRT) it looks great...when viewing it with my laptop, the boxes appear to be resized, but the text no longer fits with text boxes clipping data, and labels overrunning other...
  11. drwunz

    User Control ToolTips

    I have several user controls I'm using in an application. These controls are windowless and BackStyle is Transparent. The user controls all have an image box that is resized to fill the object. When I draw one of these on the app form, I put information in the ToolTipText box...but the tool...
  12. drwunz

    MCP- Win 2k Exam

    Programming is one of many hats I have worn. Advice? Be prepared to spend the rest of your life studying, in or out of school, in order to keep up...and get lots of experience. Yes, I enjoy my work. It's varied enough to keep interesting...I climb around under the hardware one week, run...
  13. drwunz

    Lost Windows Installer Service HELP!

    Office and other software have already been installed and have been working...attempting to install MSDN Apr 2002 has corrupted something, apparently. I am not working through TS, I'm on the PC's keyboard, and am a member of the Administrators Group on this PC (and a member of the Domain...
  14. drwunz

    MCP- Win 2k Exam

    The only additional material I used was the Transcender exams for practice...it depends on how thorough your instructor was. Good luck.
  15. drwunz

    Lost Windows Installer Service HELP!

    I tried installing MSDN Library (April 2002) and it attempted to upgrade Windows Installer and IE. IE6 was successfully installed, but the Windows Installer service no longer works...MS Office, and several other applications cannot find it and fail to execute. The message I get is: "The...
  16. drwunz

    User Control ToolTips

    I have several user controls I'm using in an application. These controls are windowless and BackStyle is Transparent. The user controls all have an image box that is resized to fill the object. When I draw one of these on the app form, I put information in the ToolTipText box...but the tool...
  17. drwunz

    User Control Tooltips

    I have several user controls I'm using in an application. When I draw one of these on the app form, I put information in the ToolTipsText box...but the tool tips never display when I run the app. The user controls all have an image box that is resized to fill the object. If I put the tooltip...
  18. drwunz

    How to read the name of files in a folders?

    See the Dir function in Help. Includes sample.
  19. drwunz

    SSTab colors

    Thanks cclint, I suspected as much. Thanks for your time and for taking your time to donate so much to this forum. It truely is a time saver when stuck with these infernal problems. don :-)
  20. drwunz

    OSGetprivateprofile API

    GetPrivateProfileString returns a string value to a key in an application .INI file. If this is what you want to do, that's the right function. I can't remember for sure, but I think OSGetPrivateProfileString was the name of this function in the old Win 3.1 days...same function, new name...

Part and Inventory Search

Back
Top