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 strongm 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. enui71

    Stop a record from updating after a certain value in a field.

    SQL Server 6.5, Access 97. When OrderTypeID = 6, I want to not allow that record to be updated. I am thinking of doing this in a trigger. Is that the proper or best place to do this?
  2. enui71

    Not x = 0 or x<>0

    Didn't remember that A <> B was one operation. Glad that I sparked a some thought. Thanks for the info. I also did a little benchmarking and came up with similar results. I don't commonly trust benchmarks on single opertions. I even received negitive times while benching this. And the...
  3. enui71

    Not x = 0 or x&lt;&gt;0

    Yeah MichealRed you did go to far. Wasn't specific, x = 0 was just used to show syntax. Petermeachem, I agree with b = a > 4. Use that style also. Also have a history in Assembler, so have that same &quot;don't waste a byte idea&quot; My question was basically is (Not =) slower than (<>)...
  4. enui71

    Not x = 0 or x&lt;&gt;0

    Is there a performance difference? Why do I never see the Not in examples or documentation? Just curious?
  5. enui71

    Inserting Date Range Parameter on Report

    Found it. Minimum({?DateRange}) and Maximum({?DateRange})
  6. enui71

    Inserting Date Range Parameter on Report

    How do I display a date range parameter on my report in the report header.
  7. enui71

    Changing printer in CRViewer. VB 6 &amp; CR 8

    Is there a way to add a icon in the viewer's tool bar to change the printer that report prints to? I know how to do it using a vb control, but would rather not do that.
  8. enui71

    Changing printer from the CRViewer. VB6 &amp; CR8

    Is there a way to add a icon in the viewer's tool bar to change the printer that report prints to? I know how to do it using a vb control, but would rather not do that.
  9. enui71

    Pie charts causing a GPF

    The software is VB 6.0 and CR 8.0 developed. CR and VB are not installed on the clients. We have many other reports running with no problems on the client sytems. All working reports don't have a chart. All non-working report contain charts.
  10. enui71

    Pie charts causing a GPF

    I have several pie charts reports. On the 2 development machines, no problem. On client systems a GPF is triggered. I am assuming there is a missing or incorrect dll. I have been unable to locate any documentation to that affect. Please Advise.
  11. enui71

    Waiting for file to be created before renaming

    Use dir to check to see if it exists. sPathName = &quot;c:\MyStuff\*.ps&quot; Do While sFileName = &quot;&quot; sFileName = Dir(sPathName) DoEvents Loop Give this a try. It is quick and dirty and some would say bad form.
  12. enui71

    Changing charts from VB.

    I am using CR 8 and VB 6. I have set up a pie chart in a report. I want to use the same report for 10 different pie charts. I want to change the &quot;on change of&quot; for the chart. I made it a formula. It has no problem with this. After changing the formula using VB the viewer shows no...

Part and Inventory Search

Back
Top