CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: delego

Page 1 of 3 1 2 3

Search: Search took 0.19 seconds.

  1. Replies
    5
    Views
    2,426

    Re: TimeSpan (formatting and multiplying)

    Both of those approachs worked. Thanks for the help. :wave:
  2. Replies
    5
    Views
    2,426

    Re: TimeSpan (formatting and multiplying)

    Thats what I am doing to get the elapsed time for 1 Part Number. I need to then multiply that by the total number of parts to get an estimate of the total time for all the parts. I could probably let...
  3. Replies
    5
    Views
    2,426

    TimeSpan (formatting and multiplying)

    I have an app that sends a variable quanity of part numbers to another app for processing.
    I would like to give a user an estimate on how long the process will take.

    Basically I want to time the...
  4. Replies
    1
    Views
    1,364

    Re: Wheres my dll(s)? Missing DLL

    I did find the problem. Somehow or other (I believe while testing the install/uninstall) I lost the .tlb registrations.

    I downloaded a program called VBRegTLB6 and re-registered the missing...
  5. Replies
    1
    Views
    1,364

    Wheres my dll(s)? Missing DLL

    I referenced 2 comm objects in my project.
    (PCOMM) Interop.AutPSTypeLibrary.dll, Interop.AutSessTypeLibrary.dll (Copy Local, True)

    I was communicating ok at that point. I then added a setup and...
  6. Replies
    1
    Views
    2,759

    Re: Excel VBA to .NET

    Found the problem, I'm working on a 64 bit machine so I had to to change the Compile (Advanced Compile Options) "Target CPU" from "Any CPU" to "x86". Hope this helps out somebody else! OUCH! That...
  7. Replies
    1
    Views
    2,759

    Excel VBA to .NET

    I have a VBA project that runs in Excel and communicates with IBM Personel Communications (PCOMM) and I would like to convert it over to .Net

    I don't need Excel for what I'm doing but still need...
  8. Replies
    6
    Views
    810

    Re: List View Selected Item as Link

    I just want to open a PDF from the link I hope I can establish in the SelectedItem in the listview box thats in a custom control.

    Looking @ my picture, the item in the box say (RS469-10) would...
  9. Replies
    6
    Views
    810

    Re: List View Selected Item as Link

    From the lack of response I must be way off base with this.

    As an alternative, is there some other control I should be using or what?

    Thanks,
    Dave
  10. Replies
    6
    Views
    810

    Re: List View Selected Item as Link

    Also, if you would know of a way to get to the "Description Column"?

    I am currently using "Items" (Parts) and "SubItems"(Qty) and don't see anything past that to get to Description?

    :D
  11. Replies
    6
    Views
    810

    Re: List View Selected Item as Link

    I apologize.

    I have a List View Control with 3 columns (Parts, Qty, Description) used in a UserControl (with a panel,label, and 2 buttons).

    The List View is populated with parts configured...
  12. Replies
    6
    Views
    810

    List View Selected Item as Link

    :confused:

    Is there a way to make items in a list view control link to documents so that when you select an item it opens a document?

    Also, Is there a way to change the text color of the item...
  13. Replies
    3
    Views
    5,148

    Re: Textbox TextChange Event from Custom Control

    :thumb: Very Nice!! Thanks a million.
  14. Replies
    3
    Views
    5,148

    Textbox TextChange Event from usercontrol

    I have a usercontrol that contains a Rich textbox and some buttons.

    I can't tell or respond to the text changed event from the Rich textbox from outside of that control. (Say from the parent form...
  15. Re: Rich Text Box Single Letter Format (color) issue

    You are right, the problem wasn't with that part of the code but with a loop it was in. Thanks for your help, I should have provided more info.
  16. Rich Text Box Single Letter Format (color) issue

    I would like to be able to take a letter of text and change the color of it so it stands out from the rest of the text.

    ABCDEFGHJKLM

    Me.txtModelNumber.SelectionStart = 8...
  17. Replies
    2
    Views
    478

    Re: Alphabetic sequence problem

    Thats the ticket, thanks for the input!
  18. Replies
    2
    Views
    478

    Alphabetic sequence problem

    I am trying to make sure that Alphabetic characters fall in sequence (ex. ABC, FLV,) in a string or it errors out with a "*". One or all of the below chars. in arrays could be present in sTAfter....
  19. Replies
    5
    Views
    4,789

    Re: Loop thru Excel Range to populate Listview

    Works good! I will try to figure out how to get it going within my other loop for getting Excel data. Thanks

    Dave
  20. Replies
    5
    Views
    4,789

    Re: Loop thru Excel Range to populate Listview

    Sorry, here it is

    Try

    Dim range As Excel.Range = _
    CType(XlBook.Worksheets("Sheet1"), _
    Excel.Worksheet).Range("NewBBHP")

    Dim array...
  21. Replies
    5
    Views
    4,789

    Re: Loop thru Excel Range to populate Listview

    Please Help!
  22. Replies
    5
    Views
    4,789

    Loop thru Excel Range to populate Listview

    I need to be able to loop thru a range of cells in Excel and add the values to a listview as (items and subitems)

    Column A (from Excel sheet and to listview.item) will store part numbers,
    Column...
  23. Replies
    6
    Views
    1,148

    Re: HEEELLEEEP numerictextbox !!

    I added the code and it works fine (Numbers only). I still can't backspace, what am I missing?
  24. Replies
    6
    Views
    1,148

    Re: HEEELLEEEP numerictextbox !!

    How would you allow a backspace in the textbox?
  25. Replies
    0
    Views
    430

    Custom control (expose property problem)

    I have made a custom control consisting of a label, listview, and 2 buttons. I have 2 columns in my listview. I am trying to expose the column header text of the listview in the custom control to...
Results 1 to 25 of 56
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured