Search:

Type: Posts; User: DFPCNC

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    896

    Re: Print To PDF Issue

    Thanks you both westconn1 and dilettante for your replies! Administrative permission was the issue. Yes my VB6 IDE is running as Administrator
    but the app is not. I just changed the PDF storage...
  2. Replies
    3
    Views
    896

    [RESOLVED] Print To PDF Issue

    Hi All! I have a project that allows the user to select the printer device (Printer Dialog "PDF") before printing begins. I have developed the app in VB6 on a Windows 10 machine. The print function...
  3. Replies
    7
    Views
    1,641

    Re: CurDir() and Command Issue

    Thank you all for you help! "App.Path" was just what I was looking for and works well for this application. I too will stop using the CurDir().
  4. Replies
    7
    Views
    1,641

    [RESOLVED] CurDir() and Command Issue

    Hi All! I have a VB6 project that creates text files. This project also maintains user library files stored in the
    applications folder. I use "strAppPath = CurDir" in the startup Form_Load event to...
  5. Replies
    3
    Views
    1,193

    VS 2010 Re: Process CommandLineArgs

    Thanks for your reply Sitten Spynne! I suspected it had something to do with String.Join("*", GetCommandLineArgs).
    It never occurred to me to format the file name before sending it to the receiving...
  6. Replies
    3
    Views
    1,193

    VS 2010 [RESOLVED] Process CommandLineArgs

    Hi All! I'm using Process() to send the file path of the active child document to another .exe app and I'm
    using Environment.GetCommandLineArgs to get the file path in the second .exe app. The...
  7. VS 2010 Re: System.Diagnostics.Process Or Shell Or?

    OOPS!!! My apologies!. It appears that I was accurate enough in my first post. Thank you jmc! As always, you have been most helpful. I would rate your post but its not letting me. I need to
    spread a...
  8. VS 2010 Re: System.Diagnostics.Process Or Shell Or?

    Thanks everyone for your replies! Perhaps I wasn't very clear in my first post. My bad! App1 is a MDI CNC G code
    editor. App2 is a mini CNC G code generator. When App2 completes its task, It saves...
  9. VS 2010 [RESOLVED] System.Diagnostics.Process Or Shell Or?

    Hi All! I created a MDI editor in VB.NET 2010. I can retrieve a file path in this app from and outside app and load
    the file into memory when my MDI app starts. I am creating another app that I want...
  10. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    Yes, Thanks BB! I did catch the error in the MouseEnter sub in my last post, (MouseEventArgs should be EventArgs). I won't have access to the win7 machine for testing until after the holidays but I...
  11. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    How about just adding a MouseEnter sub? Like this. Oh yes, as you mentioned in a earlier post BB.


    Private Sub picPlotter_MouseEnter(sender As System.Object, e As System.MouseEventArgs) Handles...
  12. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    I added a Public Shared Sub AddMessageFilter() to the form with the picture box. Then I changed the SendMessage call in the Class module to
    SendMessage(frm3DPlot.Handle, m.Msg, m.Param, m.LParam)....
  13. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    I'm lost! Do I add a Class and called it "picPlotter" or do I add this Class to the form with the picture box?
    I added a Class to the project and called it "picPlotter" but I don't understand how to...
  14. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    The IMessage Filter is nice but do I really need to use it? What if I just add a handler? (AddHandler MouseWheel, AddressOf picPlotter_MouseWheel) Shouldn't this work?
  15. Replies
    4
    Views
    790

    VS 2010 Re: MS Access 2007 Issues

    I should mention that the code is in a Module, but I see what your are saying. The cmdInsert command is updating the other tables with out the need for the TableAdapters. That is good to know. I will...
  16. Replies
    4
    Views
    790

    VS 2010 Re: MS Access 2007 Issues

    Thanks for your reply si_the_geek! Yes I see now I missed the error in the table names. Your are correct. flTable should be acTable. Before I used the For Next loop, I used (i = flTable.Rows.Count -...
  17. Replies
    4
    Views
    790

    VS 2010 [RESOLVED] MS Access 2007 Issues

    Hi All! I have a multi table MS Access database. I am using the DataGridView to modify the database.
    I'm also using the code below to update all of the other tables with the newly added data from...
  18. Replies
    5
    Views
    4,188

    Re: There is no row at position 0

    Thanks jmc! Most helpful! The table is empty.
  19. Replies
    5
    Views
    4,188

    Re: There is no row at position 0

    I'm probably wrong here but, isn't there something wrong with (Dim table = New DataTable) (myAdapter.Fill(table))? What's in the "table" and for that matter, what's in (myAdapter.Fill(table))?
    Is ...
  20. Replies
    11
    Views
    4,353

    VS 2010 Re: Slow Access Database

    Thank you All for your Post! The issue was in the method I used. wes4dbt's suggestion was the fix. (lvwAircraft.Items(i).SubItems.Add(me.AirCraftDataSet.AircraftTable.Rows(i).Item("Name").ToString))...
  21. Replies
    11
    Views
    4,353

    VS 2010 Re: Slow Access Database

    Thanks jmc. It's not the column headers that I don't want to display, It's the left most column. The left column that the user click in to start a new row. I've seen custom DGV's. I just haven't...
  22. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    Thanks everyone for your replies! Sorry I took so long to get back to you. Yes, as boops boops said, there is one TextBox and two Buttons on to form that get focus before the PB does even from the...
  23. Replies
    11
    Views
    4,353

    VS 2010 Re: Slow Access Database

    Thanks TnTinMN! I will try using BeginUpdate and EndUpdate. I will also try wes4dbt suggestion. Hi jmc! I am using the DataGridView in the rest of the forms in this project. They work great but I...
  24. Replies
    11
    Views
    4,353

    VS 2010 [RESOLVED] Slow Access Database

    Hi All! I have a Access 2007 database with multable tables. The Aircraft table has 20 rows of data in 70 columns,
    and the Flight table has 93 rows of data in only 8 columns. I am populating two...
  25. Replies
    16
    Views
    2,329

    VS 2010 Re: MouseWheel After Deployment

    Thanks Shaggy Hiker! That is disappointing? A hit and miss mouse wheel :confused: I will add logging code and redeploy it to the win 7 machine and see what happens.
  26. Replies
    16
    Views
    2,329

    VS 2010 MouseWheel After Deployment

    Hi All! I have a VB.NET MDI project with multiple forms developed in VS2010. I’m using net framework 4 client profile.
    On one of the forms I have a PictureBox that I use to draw graphics. I use the...
  27. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    Thanks for your post boops boops! I will try the FlowLayoutPanel. Currently I'm playing round with adding Labels and TextBoxs the a RTB. It is giving the results I'm looking for and with a good...
  28. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    What about a FlowDocument? Any thoughts?
  29. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    Thanks for your reply Sitten Spynne! I have been thinking almost the very same thing.

    Using multiple DGV’s is a cool idea but I’m thinking not for this project. First, they will need to connect...
  30. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    I think I may like Shaggy Hiker’s idea of using multiple DGV’s. Perhaps I could create one DGV for the UNIT (process type), one for the SNo (tools used in the process) and one for the FIG (shape to...
  31. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    I see Shaggy Hiker, but then how would the whole page scroll up and down. It does scroll up and down as if in a DGV, LV or RTB. It almost seems as though the interface is an old DOS console program?...
  32. Replies
    14
    Views
    1,662

    VS 2010 Re: Proper User Interface

    I should also mention that the vertical scroll bar is not visible in the image. Also missing from the image are the main command soft keys. I will use Buttons for this. The complete mill program is...
  33. Replies
    14
    Views
    1,662

    VS 2010 Proper User Interface

    Hi All! The image below is a Mazatrol CNC Mill program. I am interested in creating my own VB.NET Mazatrol editor but I’m having trouble with picking the proper user interface. I’ve been reading...
  34. Replies
    4
    Views
    1,101

    VS 2010 Re: Start My App From Shell Function

    Yes, Thanks .paul.! With a little experimenting with it, I figured it out. I just needed the second half of the file path which is the posted output from the CAM system. So i add an asterisk to the...
  35. Replies
    4
    Views
    1,101

    VS 2010 Re: Start My App From Shell Function

    Thanks for posting .paul.! I will continue reading about MyApplication_Startup and use Environment as well. My project will also stand alone so I've been trying to figure out how to
    detect the shell...
  36. Replies
    4
    Views
    1,101

    VS 2010 [RESOLVED] Start My App From Shell Function

    I'm too mush of a newbie to VB.NET to understant what is happening or even how to word this question. But here goes.
    My project is a MDI document editor that I use for CNC code editing. In most CAM...
  37. Re: VS2010 Windows Installer File Permissions

    Thanks si_the_geek! Yes the app will be placed in either Program Files or Program Files (x82) I have resolved this issue in a different post. I added the User's Application Data Folder to the VS...
  38. Replies
    2
    Views
    2,459

    Re: Matrix Math VB.NET 2010

    Ok. I came up with this. It works well.

    x = current mouse position X, (in mouse move event).
    y = current mouse position Y, (in mouse move event).
    cx = mouse down event for center of rotation in...
  39. VS 2010 Re: Visual Studios Installer File Permissions

    I didn't have any luck adding the library files to the User's Application Data Folder because the installer did
    not install the files in the proper location. I have read a few post on this forum and...
  40. VS 2010 Re: Visual Studios Installer File Permissions

    Ok, I added the only AppData folder that was available in the [Add Special Folder]. It is "User's Application Data Folder".
    I ignored the IDE warnings after add my files to the folder. I used your...
Results 1 to 40 of 150
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width