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

    Stop DTS with SQL Task properties

    Here you need kind of decision making functionality. One way you could try (not 100% sure), Write an ActiveX Script Task which checks for your condition of failure. Say if you find that condition to be true (you want to suspend the execution), deliberately write VB code in that ActiveX Script...
  2. mthakershi

    Create a dynamic hyperlink in Excel

    VBA means Visual Basic For Applications. Write the following code under your workbook section. I have three sheets and a notes sheet as you said. When I go to 'Notes' sheet, it detects where I came from. Hope this helps. Private mStrCurSheet As String Private Sub Workbook_SheetActivate(ByVal...
  3. mthakershi

    Create a dynamic hyperlink in Excel

    I guess you will have to write a little VBA code and maintain which sheet is active in some variable. And when you go to the 'Notes' sheet, you will know where you came from. Malay
  4. mthakershi

    Barcodes In Visual Basic

    I use libraries from this company for scanning and reading barcodes from documents. See if you find a match. http://informatik.com/products.html Malay
  5. mthakershi

    Importing a textfile with datefield into table

    You can use 'DateTime String' Transformation on that particular field. You will be able to define the source and destination date formats. You can do this on 'Transformation' tab of 'Transform Data Task Properties' screen. Malay
  6. mthakershi

    Excel task pane

    Try and uncheck that option. Close all excel processes. Maybe reboot once and check the option again and see. Malay
  7. mthakershi

    Security Logs in System Manager

    See this http://www.ultimatewindowssecurity.com/events/com185.html I think it means someone or some process cleared your security log. So this event is recorded to tell you about that. You can reproduce this by right-click on security log and clearning it. Malay
  8. mthakershi

    Possible to import tasks into Outlook from 3rd Party file

    Hi, Yes. Outlook can import tasks from CSV files. If you want to see the format requirements, do a test export like the following. 1. Create a 'test' folder under 'Tasks' node in outlook. 2. Add 2-3 tasks in that folder. 3. Now click 'Import and Export' in 'File' menu. 4. Select 'Export to a...
  9. mthakershi

    Authenticate using Active Directory

    If I am getting it right, you need to set security mode to windows authentication type on IIS. This will authenticate people based on your active directory. Malay
  10. mthakershi

    Program runs in VS but not on it's own

    Make sure you are pointing to a correct debug directory. I mean when you build, it will create an exe at certain location, which is the debug directory location that is configurable from the IDE. Make sure that exe has the latest modified date. Malay
  11. mthakershi

    import General data format to Access

    As far as I know Access will always create a 255-width text field in a newly imported table. But if you import into an existing table, which has say a text field of size 20, it will not change it to 255. If data exceeds the length it will generate an error table and may truncate it. Not sure...
  12. mthakershi

    period in userid for mysql connectionstring

    Did you look at this? http://bugs.php.net/bug.php?id=31418 Malay
  13. mthakershi

    Visual Studio Educational Edition

    I think it is professional. Our uni. had some tie-up with Microsoft and we got professional. Malay
  14. mthakershi

    Identifying an application as Windows or Web

    Well.. if you have code then it is easy to tell. If it uses System.Web namespace and other web stuff then it is a web application. If you don't have code, then you can see platform components it uses. Such as if it requires a web server then it is a web application. Does this answer your...
  15. mthakershi

    Document Imaging "Save As" Problem/Question

    If there is no explicit option, then the last thing might have been saved or saved as in the temp folder. So maybe it remembered the location. Try saving a file (say a download from somewhere) to a different location and try it out. Otherwise go to 'File Locations' tab in word options (Tools --...
  16. mthakershi

    Win 2k server event 7123 and 20035 every few seconds

    Hi all, I have win 2k server SP4 as PDC. Since a week I've been getting these two errors in 'System log'. And it repeats every few seconds. ----- Event 7013 Source Service Control Manager Type Error Description The Remove Access Connection Manager service terminated with the following error...
  17. mthakershi

    bind gridview to datatable created on fly

    You should be able to do this: dgEmpEditEmp.DataSource = pObjTb; where: dgEmpEditEmp is datagridview pObjTb is your table Malay
  18. mthakershi

    Old XDB files?

    Deleted files older than a week. Doesn't seem to harm. Malay
  19. mthakershi

    Is there any Scanner and OCR APIs available for .NET?

    Informatik is good at scanning and reading barcodes. www.informatik.com Malay
  20. mthakershi

    2 digit month

    DateTime.Now.ToString("MM") And then use this string. Malay Thakershi

Part and Inventory Search

Back
Top