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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Jengo

  1. Jengo

    Create OCX in .NET

    Everyone, This may seem like a simple question but.... How do you create an OCX file in .NET? Zac
  2. Jengo

    SecurityCallContext Problem

    Everyone, When I run the following code in VB.NET it returns me the username ASPNET and not my own. Why is that and how can I fix that. SecurityCallContext.CurrentCall.OriginalCaller.AccountName.ToString Thanks.
  3. Jengo

    BCP Issue

    I am importing data into a database from a flat file using BCP with a format file. I have to use BCP for the process. The file has a couple of columns that are CRLF delimited with a blank line between rows. In some records the last column was dropped off and isn't there (an example below. I...
  4. Jengo

    On Screen Keyboard

    Does anyone know any Javascipt based on screen keyboards?
  5. Jengo

    Set form beside screen

    Yes ADoozer. Exactly!
  6. Jengo

    Set form beside screen

    Is there a way to place a form outside of the screen or change the screen parameters so it thinks it's smaller on one side so I can place my form there? I would like to place a program that sits around or beside all the others but not on top of them so you can still see the other programs...
  7. Jengo

    How can I use RecordSortFields in CrViewer control in vb6

    Dim myApp As New CRAXDRT.Application Dim myRpt As New CRAXDRT.Report Dim sTemp As CRAXDRT.DatabaseFieldDefinition Set myRpt = myApp.OpenReport("myreport.rpt") Set sTemp = myRpt.Database.Tables.Item(1).Fields.Item(2) myRpt.RecordSortFields.Add sTemp, 0...
  8. Jengo

    putting Crystal DLL's on target machine during install

    If the system is Windows 95/98/Me place it in system. If the system is NT/2000/XP place it in the system32. Most installers will have a variable called "SYSTEM" that will figure out where the system folder is when the setup is running.
  9. Jengo

    Crystall DLLs

    Is their a way to dynically call the crystal DLLs from VB without having to add them to the project. It's annoying to have to push out the same DLLs everytime I do a EXE update. Currently I am doing this way: Dim myApp As New CRAXDRT.Application I would like to be doing something like this...
  10. Jengo

    Passing Parameters

    Anyone, HELP! I am trying to pass a parameter to Crystal Reports to select multiple values from a database. Currently my code looks like this: ----------------------------------------------------- crpt.ParameterFields(0) = "pCallID;" & Trim(UCase(strCallID)) & ";TRUE&quot...
  11. Jengo

    Version Control

    Thank you.
  12. Jengo

    Version Control

    I need help. Can someone whos been in the programming business for a while explain to me how the versions of vb (major, minor, revision) are supposed to be used. Like when do you go to the next version? If there is no standard what is a good way to use them. Thank you for help in advance. :)
  13. Jengo

    Drag and Drop Email

    Everyone, Does anyone know how to drag and drop emails from Microsoft Outlook that is connected to an Exchange 5.5 Server to a textbox that will display the entire email? Thanks. - Zac
  14. Jengo

    Get Table Information

    Quality! Thank you.
  15. Jengo

    Get Table Information

    Question! What would I type if I want to see if the field is required or not. rs!required?? I tried that and it didn't work.

Part and Inventory Search

Back
Top