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

    Multiple Programs in one

    Actually, what I'm trying to do is creat a shell that will run several other programs inside of it. It's not a problem making a whole new project for this, I've got the forms and code, and it can all be imported easily enough. I just need to know how to actually have a form within another form...
  2. arrian

    Multiple Programs in one

    I've got several programs I've writen, and I wanted to know... How can you have a sort of control program... That will run the programs within the first program. Is there a way to do this? And is it rediculously difficult?
  3. arrian

    SQL sequence problem

    Well, that could work... But the problem will be having more than one person inserting data at the same time. Will if I put the select in with the insert statement, will it allways return the id for that row?
  4. arrian

    SQL sequence problem

    Ok... Well, the problem is, the identity won't be generated until I've inserted the row. And there's nothing else that I can put in there that will be unique, so I'm not sure how I'll be able to return the alias. I've tried a stored procedure, and it allmost works. The only problem is it...
  5. arrian

    SQL sequence problem

    When I use an identity, the identity is generated when the row is inserted into the table. The only unique item in the table will be the identity, so I don't know how I would be able to return the identity.
  6. arrian

    SQL sequence problem

    I'm not sure what you mean with the "as ID"... As far as I can think, the only thing that's unique is the number from in the sequence.
  7. arrian

    SQL sequence problem

    I need to be able to generate the next number in a sequence (9001, 9002, 9003,... ) and return it to the user. I need to be able to get the number, then the next person who queries it, will get the next number. I'm not exactly sure how to do this. I originaly thought an identity would work, but...
  8. arrian

    SQL Server 2000 Displaying Decimals

    If I change the column to decimal, though, will that ALLWAYS show 2 decimal points? I need it to show 1.10 and 1.00 as well...
  9. arrian

    SQL Server 2000 Displaying Decimals

    I'm not entierly sure if this can be done... But I've got a few fields that I *ALWAYS* want to display 2 decimals (ie 3.40, 2.35, 1.00) I'm not entierly sure how I can do this. Anyone know?
  10. arrian

    Crystal Reports printing details section twice

    Ok.. I've started re-writing one of the reports, and it's displaying properly... I'm going to take some time and go through it step by step to hopefully find the culprit...
  11. arrian

    Crystal Reports printing details section twice

    Not an ideal situation, but it seems to work. Thank you!
  12. arrian

    Crystal Reports printing details section twice

    Yeah, it's when it's displaying the reports. The option to Select Distinct Records is greyed out for whatever reason...
  13. arrian

    Crystal Reports printing details section twice

    Ok... I tried that, and they are all unique. No duplicates with that... So I'm really at a loss as to what to do! I've exported the data to an XML file, and created a report off of that, and it works fine, but when it's looking for the VB.NET Dataset, it's printing the rows twice.
  14. arrian

    Crystal Reports printing details section twice

    Just tried putting in the latest service packs both for the .NET version and the 10 that we have, and neither solved the problems. I was thinking there might be 2 details sections, but there's only 1 showing up when I look for it in the section expert.
  15. arrian

    Crystal Reports printing details section twice

    I've got a Crystal Report that's running through a VB.NET program. In the program, I'm filling the dataset that the report gets it's data from, and passing it to the report. For some reason, when I run the report, it's printing the details section twice... Instead of 1 2 3 I get 1 1 2 2 3 3...
  16. arrian

    Crystal Reports from multiple Datasets (VB.NET)

    I've got some Crystal Reports that are using multiple datasets. If I do not set the "report.SetDataSource", it prompts me to login to a database. If I set that, I can only set it to one dataset, it seems. How can I fix this? (not sure where to post this, so I'm posting it here...)
  17. arrian

    Crystal Reports from Multiple Datasets

    I've got some Crystal Reports that are using multiple datasets. If I do not set the "report.SetDataSource", it prompts me to login to a database. If I set that, I can only set it to one dataset, it seems. How can I fix this?
  18. arrian

    Copy one dataset to another

    I had hoped I could, but that doesn't seem to work... I was filling the other dataset with a data adapter, and that doesn't seem to work... I actually did find a way to do this, I think... Other things aren't working, so I'm not 100% sure this works. ds1.Merge(ds2)
  19. arrian

    Copy one dataset to another

    Ok, the problem I'm having is the datasets that need to recieve the data are typed datasets. How do I get the data from a dataset filled from my Access DB into the typed dataset? The copy command doesn't seem to work.
  20. arrian

    Copy one dataset to another

    Wow... I'm kind of dissapointed that I didn't figure that out... That's rediculously easy... Thanks!

Part and Inventory Search

Back
Top