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 gkittelson 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. pragmatic

    Custom Bar buttons

    I don't know about buttons, but this code will add a menu item under TOOLS in your menu bar. Dim oMenu As CommandBarPopup Dim oItem As CommandBarPopup Dim oSub1 As CommandBarButton Dim oSub2 As CommandBarButton CommandBars("worksheet menu bar").Reset...
  2. pragmatic

    chart naming in vba

    I'll give this a try, thanks!
  3. pragmatic

    chart naming in vba

    Rob, I've tried this and I get a failure: Method 'Name' of object "_Chart" failed The following code is just a recorded macro.. Charts.Add ActiveChart.ChartType = xlPie ActiveChart.SetSourceData Source:=Sheets("Summary").Range("B5:C6"), PlotBy...
  4. pragmatic

    Extract text from IE into Excel

    I'll give that a try, thanks.
  5. pragmatic

    Extract text from IE into Excel

    This code is cool. One question though, do you know how you could send a user ID and password to a web-site that requrires login?
  6. pragmatic

    Excel CommandButton Changes with VBA

    Are there other objects (i.e. command buttons), you may want to leave off the following section of code: ActiveSheet.Shapes.SelectAll That was a hold over from recording the button/macro. You should be able to assign the sub module the same as a macro...
  7. pragmatic

    Excel CommandButton Changes with VBA

    Here's some code from one of my older applications... ActiveSheet.Buttons.Add(450.75, 48.75, 77.25, 32.25).Select Selection.OnAction = "clliar" ActiveSheet.Shapes.SelectAll Selection.Characters.Text = "AutoRevert" With Selection.Characters(start:=1...
  8. pragmatic

    Package with Dynamic Dependent file

    In Visual Studio Package and Deployment Wizard, there is the option of including additional files. This will allow you to include the file and install it in the application path (where ever the client choses.) The trick is in your coding. Instead of using hard coded file locations (i.e...
  9. pragmatic

    VB upgrade question

    I'm currently programming in VB 6.0. I've got the full Visual Studio Enterprise package. Does Microsoft offer just a VB.Net package or is an all or nothing (buy the full Enterprise version?) I plan on programming mainly in VB for my Window's applications. Any thoughts would be appreciated.
  10. pragmatic

    How do I Check for and Delete Existing File?

    Try this: IF LEN(DIR("C:\ASAM Files\Interchange Files\interchange_test_2.dbf")) > 1 Then Kill ("C:\ASAM Files\Interchange Files\interchange_test_2.dbf") End If I have had similar results until I tried this method.
  11. pragmatic

    DMS SCRIPTING RESOURCES

    Check out the Aspect forum. If you use Procomm to telenet into your switch, there's alot of good stuff there to do what you're trying to do. I've got some stuff written already to dump stuff into and out of DMS's. Let me know if your interested in seeing this stuff.
  12. pragmatic

    ISDN Protocol Analyzer

    Yes, that information is relevant on DMS100 and DMS500. I'll take a look at the reject message, I've never seen it in that format before, but I'll give it a shot.
  13. pragmatic

    ISDN Protocol Analyzer

    I assume this is a PRI circuit. Have the CLEC check 'table: ltcalls' for your trunk group. The option is EA and this is where you enter your PIC. The last element of this option is a simple yes or no to allow a 'choice' or dial around. I don't know of any companies that do short term rental...
  14. pragmatic

    Capture File aspect script only grabs the first 10 lines of data!

    By looking at your original post, the program will only run once, after 06:00 your second endwhile will kick you out of the loop, and endproc. Try putting both while loops inside a loop... Of course, put in some code to control the exiting of the program, and close any open files.... proc...
  15. pragmatic

    HELP!!

    From a phone company perspective, we see this a lot. The quick fix is to busy and restore all of the trunks at the C.O. end, or customer end. The several times I've seen this and had the time to investigate, I've put a protocal analyzer on the circuit and seen call reject messages coming from...
  16. pragmatic

    How many D-Channels Per Loop

    There are three configurations for PRI's: FAS: D-channel per T-1 NFAS No backup D-channel: Connecting to a DMS 100 up to 20 T-1 loops controlled by one D-channel (lose the loop with that D-channel, and your SOL.) NFAS with backup D-channel: Up to 20 loops controlled by one d-channel, with one...
  17. pragmatic

    Transfer over PRI

    I believe that in order to use two b-channel transfer, you need the NI2 protocal. I'm not sure that a DMS will do a 1 channel transfer. At least I've never seen it done.
  18. pragmatic

    Using Aspect to send fax when new email arrives!!!

    You might want to do this in vba in Outlook, and have vba use DDE to have Procomm make the call. Might be easier.
  19. pragmatic

    Help capturing info from a data-stream

    This worked perfectly. I made one modification: rget sInput 10 This eliminated my capturing the "." and cr/lf. Thanks again.
  20. pragmatic

    Help capturing info from a data-stream

    Thanks! I'll give it a try.

Part and Inventory Search

Back
Top