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: enigma333
  • Content: Threads
  • Order by date
  1. enigma333

    localhost with IIS

    Cannot access IIS over localhost on win2k server ... works fine when i use external IP .... why is localhost not available in assigned IP selection list? Thanks
  2. enigma333

    Binding to Properties

    Can you bind a control to the properties of an object ... Kind of like the Datasource class from vb 6
  3. enigma333

    Creating Custom Controls

    I need to make a control which is simply a text box and a label .... I want the user control to have all the same properties, events , and methods as a textbox but to expose a Caption Property which will map to the text property of the label .... How do I do this other than creating a property...
  4. enigma333

    thread control?

    I'm and trying to create a program flow as follows Connect if failed wait 30secs else Continue Retry Connect if connected then process basically i need to call a function that will retry a number of times at a particular info and then when it is successful resume the program flow. I know a...
  5. enigma333

    XML and Flat File

    Need to convert from a Text file with fixed-length records to XML with vb.net. Then I need to read the field values and convert it into a different fixed-length record text format. Any examples of this ... or is there a better way. p.s. the file record specs must be definable at run time thanks
  6. enigma333

    XML to Delimited Text

    Need to ouput a recordset XML to a delimited Text file RS = rsField1 rsField2 rsField3 Text = field1|field2|subfield1^subfield2|field3| Transform field2 = rsfield1 field1 = rsfield2 subfield1 = left(rsField2,2) Something like that ... if that makes any sense to anyone Basically I have to...
  7. enigma333

    Fixed Length Records

    What's the best way to deal with fixed length records reading/writing to files. in vb6 you would use UDT's and LSET new functionality in .net?
  8. enigma333

    Date Range Param from VB

    I need to fill a Crystal Date Range Parameter from VB. What is the syntax?
  9. enigma333

    Column Level Security

    Is there anyway to use column level security but instead of an error when attempting to select a column with no permission I want to have it just not appear. i.e. Give access to 3 of 5 columns then when you do a SELECT * FROM TABLE you get just those 3 columns Any thoughts. Thanks
  10. enigma333

    controls collection Index

    How can i determine the index of a control in the controls collection given the name.
  11. enigma333

    Drag and Drop Grid

    I need to drag and drop a cell of a grid but i would like the mouse icon to be a cell icon with the contents of the cell that's being dragged. Any suggestions
  12. enigma333

    Textwidth Method

    I need to determine the width of a string as displayed on the screen.... i.e. the number of twips it takes to display ... must show correct for font & fontweight. Textwidth alone gives inconsistent value Any Thoughts... Basically i want a label to autosize to contents and account for changes...
  13. enigma333

    Checkbox Validation

    A checkbox does not update its datafield until after validation... is there a way to make it update as soon as the value changes ... e.g. on click. This will be done inside a custom control. Thx
  14. enigma333

    ado DataBound checkbox

    I have a checkbox bound to an adorecordset provided by a vbdatasource class. The first time i click on the check box is does not fire the WillChangeField Event of the recordset. It works fine after the second? Is there a reason/workaround for this?
  15. enigma333

    Ado multi-step error

    Need a work around for this I want to create a recordset with this data: Select Isnumeric(ID) as NID, Description FROM Table and edit it. current when i try to edit the NID field i get an error Multi-step operation produced errors. Check each status value. How can i make this editable p.s...
  16. enigma333

    ntwdblib.dll Distribution

    How Can i find the license information for this file ... i.e. is it freely distributable?
  17. enigma333

    Report Parameter Data Type

    From vb how can i determine the type of data required for a param i.e. string, numeric, bool
  18. enigma333

    Crystal Reports Export to E-Mail

    I would like to export a crystal report so that it is the body of the message .... not as an attachment ... using vb
  19. enigma333

    Macros in Word Document Tables

    I need a way to specify the cells in a table in a word document. i.e. on exit cell goto cell below can this be done in vba?
  20. enigma333

    Parameter Checking

    Need to add logic to selection formula something like this if ?Param is null then show all records else show where field = ?Param

Part and Inventory Search

Back
Top