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 strongm 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: blairacuda
  • Content: Threads
  • Order by date
  1. blairacuda

    help with migrating wpf control from exectuable to assembly

    short background: we are migrating from vb6 to c#/wpf. there are pieces we were simply launching via an executable from the vb6 application. the desire now is to move those controls into a library. this migration is causing a headache when it comes to accessing the resource tree...
  2. blairacuda

    Backgroundworker throws error in ProgressChanged event

    hello, i am writing up my first backgroundworker and while it seems like a great tool i am running into a wall. scenario: we have a vb6 project that we are slowly migrating to c#. all of our new tools/windows are planned to be written in c#. so i have a class that is com accessible that...
  3. blairacuda

    Need Sheets.Cells.Replace Guidance

    hello all, i have a function that replaces abbreviations in a sheet with the actual word(s) associated with the applicable abbreviation. the problem i'm running in to is which properties of the replace function to set. code: Sheets(shtName).Cells.Replace what:=abbreviation...
  4. blairacuda

    Excel Application.Quit Leaving Process Running

    Hello Gurus, i've got an app that uses excel as its reporting component. in our excel templates we have a macro to execute a bunch of different stuff. when users try to "reload" an older report (reload pushes new data into an old report) we check the macro version and if required, delete it...
  5. blairacuda

    MZTools replacement for Office 64bit

    hello all, today i upgraded to office 2010 64bit with much excitement. but disappointment set in when i realize MZTools does not support 64 bit office. anyone out there know of a good tool to replace MZTools with for Office 64 bit. if you are unaware of the greatness of MZTools you must...
  6. blairacuda

    Suppress Compatibility Check Window when Updating Macros via VB6

    currently our application only works with XLS files. we'll be updating soon but for now if a user has a XLSM spreadsheet they have to save it back to XLS for us to populate it. thats not a problem. but when my VB6 code updates and saves a macro in the XLS a compatibility check window appears...
  7. blairacuda

    PivotFiled.Hidden is being stubbron

    Hello All, I have a PivotTable that is not allowing me to hides its PivotFields. Here is my code for the hide: For Each Pf In Pt.PivotFields temp = Pf.Name If temp = "Description" Then Pf.Hidden = True End If Next When the hidden flag attempts to change I get: Run-time error...
  8. blairacuda

    Help with ObjectQuery

    i am just getting into the Entity Framework stuff of 4.0 and i'm running into a little issue that is driving me crazy. Here's my code: var partTypeGUIDQuery = from p in ecEntities.Parts where p.PartID == pGUID select p.PartTypeID; foreach (Guid g in...
  9. blairacuda

    Access is Denied for a folder that should be accessible

    Hello All, I had Windows on my laptop go crazy on me. I'm not really worried about fixing it. I just want to reinstall Windows and move one. But I would like to grab my Pictures/Music/Anything I Can off before I do. I bought an external case for it and have it plugged into a different...
  10. blairacuda

    Programmatically Make RevCloud in .NET

    Hello All, I would like to be able to create a revision cloud through .NET but can not find any samples or help elsewhere. Can someone point me in the right direction? Thanks. CBlair Crystal, InstallShield, branching out in other programming realms.
  11. blairacuda

    Changing DataGridView after binding DataTable

    I am starting to think this isn't possible... I have two DataTables that are filled out from two different access tables with different column headers. I then combine those guys into one DataTable with my own column headers. Then I am binding this new DataTable to a DataGridView. That is all...
  12. blairacuda

    MultiDimensional ArrayList

    I have another easy one for all you gurus out there. I am trying to get at data in a MultiDimensional ArrayList (is that redundant?) but am struggling with the syntax and can't seem to find a good source. So I turn to you guys again. I need to increment an int to get at the correct record at...
  13. blairacuda

    Help on Choosing a Collection Type

    Hello All, I need a little assistance in selecting a collection type. This is some sample data I need to store and search easily: Variable, Value, Boolean Straight, 2, NO Length, 17, YES Connection, RAW, NO I am leaning towards NameValueCollection because it seems to be pretty easy to add...
  14. blairacuda

    Help with Popup Menu

    Hello Java Gurus, I am new to Java and am playing around with popup menus. For some reason my menu item is throwing a compiler error. Here is my Code: 1. JPopupMenu pm = new JPopupMenu();; 2. MenuItem mi = new MenuItem("Add"); 3. mi.addActionListener(this); 4. mi.setActionCommand("add"); 5...
  15. blairacuda

    Prevent new fields in DataGrid

    Hello All, I'm writing a small app that reads from an access database. I'm using a DataGridView to read/write to the database. I just noticed that users can add additional fields through the DataGridView by typing in the last line of the window (just as if they were in Access), but I don't...
  16. blairacuda

    Two Classes, One Namespace

    OK, this is driving me crazy. I know it has to be something simple. I have two classes in the same namespace. I can't access the methods in one class from the other class. But I can create the object... Here is an example: --First.cs-- using System; using System.Collections.Generic; using...
  17. blairacuda

    Quality C# Book

    Hello All, Does anyone know a good C# reference book? Thanks in advance.
  18. blairacuda

    Cos() returning wrong number...

    Hello All, When I run Cos(45) I get .53 in return but plugging it into my calculator returns .7071...etc. I am expecting the .7 number. I can't find a different function for cosine... Any help would be great. Thanks in advance. -Chris
  19. blairacuda

    Issues with Arrays

    Hello All, I am having some trouble with Arrays in Crystal 8. This code: __________________________ NumberVar Array aCut[1]; StringVar print:=""; NumberVar arrayCount:=0; Local NumberVar i; if {@IsElbow} then ( Redim aCut[4]; aCut[1]:={@S1}; aCut[2]:={@S2}; aCut[3]:={@H1}...

Part and Inventory Search

Back
Top