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

    Conditional Group formula not sorting correctly.

    Ok, here's the deal, I'm grouping based on a formula. I have 3 groups. Each group is being sorted by a forumla. In each formula, I have if {@RecordType} = 'SingleLocation' then {MyTable.SomeField} else {MyTable.AnotherField}. If the Record type is MultipleLocation, I want it to...
  2. NipsMG

    Is conditional grouping possible?

    Is conditional grouping possible? Basically, I've got a formula that sets a flag one way or the other. If the flag is set one way, I want to group by location ONLY. If not, I want to sort by Item, then by location. The only way I can figure to do this is Conditional group by Item...
  3. NipsMG

    Convert hex string to file/bitmap?

    I've got a library (tagnetlib) that i'm using to grab id3v2 information from an MP3 File. I'm specifically having trouble with embedded image information. I'm able to extract the data, which is in the following format: Size)HexStringGoesHere+. FrameName[Type,Enclding, MimeType, ?, ?, Data] An...
  4. NipsMG

    OpenFileDialog Issue: Can't Retrieve Filename!

    I'm trying to use the ResEditor sample in the .NET Framework. There's code for an "Open File " Dialog box as listed below: if (openFileDialog1.ShowDialog() == DialogResult.OK) { currentFileName = openFileDialog1.FileName; FileInfo efInfo = new FileInfo(currentFileName); ...
  5. NipsMG

    DFS Mapping randomly fails on terminal servers

    I've got DFS set up for one network share. I randomly run into issues with terminal server users, who cannot map to that share. I'm using S: as the mapped drive letter. When investigating the problem, it appears the user's s: is not mapped to anything. From the command line, NET USE S...
  6. NipsMG

    Question about N-Tier Structure

    Hi everyone. I've got a program at the moment that I'm writing that generates different types of reports. The processs that generates the data requires a large amount of analysis and takes a decent amount of overhead. What I'm planning on doing is completely separating out the data generation...
  7. NipsMG

    Thinking of SATA Raid w/ Removeable Drives instead of Tapes..

    I'm thinking about going with Granite Digital's SATA Hotswap solution to do backups instead of tape. Tape is slow, and is a royal pain in the ass, and the drives have been less than reliable in my experience. Since the daily tapes never go offsite (only weekly), I don't see the point of using...
  8. NipsMG

    Should I use Remoting or Web Services?

    I'm not sure which road to pursue here. I've basically got a whole bunch of PocketPC Clients. Each of these is going to communicate with a web service, and submit barcode scans to it. However, I'd like the clients to pass a callback to a function that will automatically update whenever ANY of...
  9. NipsMG

    5.5->2003. Communication problem after adding 2k3 server

    I have the MS Document on "Migrating from Exchange server 5.5". Here's what I did, in order. Logged onto Exch 5.5 Server. Ran ForestPrep Ran DomainPrep Installed AD Connector Ran ADC Tools Logged onto new server. Installed exchange 2003 on new server, joining the organization. Copied one...
  10. NipsMG

    Can't get Quorum disk to come online for cluster?

    I'm trying to successfully create a win2003 enterprise cluster. I'm following a microsoft guide to setting this up. First I configured the networks on both machines. Then I booted node 1, configured the quorum disk (NTFS MBR basic disk) on the SHared bus, tried to write a file to it, no...
  11. NipsMG

    Mixed Format data in column won't import into table :(

    I've got a field thats got mixed part numbers. Some start with letters, some don't. Example: 184983 BOM961332-001R 861442-01 B 093881-001G etc... I'm trying to import this all at once into a table for a project I'm working on, but no matter what i do, I run into problems. If the first...
  12. NipsMG

    Missing Objects for IE in Group Policy-Windows Settings! HELP!

    I've been trying to figure out how to set a default homepage in a GPO in a Win2k AD Forest. This is the advice I keep getting: Under User Configuration, Windows Settings, Internet Explorer Maintenance, URLs,Important URLs. Check customize home page URL and enter the desired web page. The...
  13. NipsMG

    Workstations W/ Firewall client can't access FTP, only HTTP :(

    I've installed ISA2004, and configured it so that Administrators can access ANY PROTOCOL as long as they're coming from specified client machines with fixed IP Addresses. I've installed the firewall client on two of those "allowed" machines, and logged on as administrator. I can access the...
  14. NipsMG

    AIM/MSN Messenger don't work with ISA?

    I'm currently setting up ISA, and I'm testing some things out. I set up protocol rules to allow certain users on the domain to use the "AOL Instant Messenger" protocol, and the "MSN Messenger" protocol, have them set to "Allow", and the schedule is...
  15. NipsMG

    Word Automation: Which line is the revision on?!

    I'm trying to take a protected word document that has had revisions made to it, and parse through it, grabbing the revisions.. However, I need to know exactly which line the revisions came from. I can loop through the revisions using: For Each objRevision in objParagraph.Range.Revisions Next...
  16. NipsMG

    "Could not automatically generate any columns....."

    I've got a dataset that I've generated automatically through code (i.e. created the tables, columns myself), and I'm trying to bind it to a web datagrid. In WinForms, this goes off without a hitch, either by supplying the dataset as the source or the datatable in the dataset. However, in a web...
  17. NipsMG

    Need Help loading an Embedded Bitmap Object.

    The name of my project is DXTest (DXTest is the root namespace). I have a folder under my project called Bitmaps, with a subfolder called Title, containing a title.jpg. Title.jpg is an embedded resource. I am converting a project that is in C# code to try to load this embedded file into a...
  18. NipsMG

    Need to find out if a treeview's node has children. HELP?!

    I'm trying to find out if a treeview's node has children. If not, I'm going to fill it with children if it contains them. However, the TreeNodeCollection object does not seem to contain a Count property, so I can't get a count, and i haven't been able to find a "has children&quot...
  19. NipsMG

    Can't Edit CR9 Report Once Saved From VS.NET???

    Has anyone run across this before? I added a Crystal Report to my project. I was having trouble displaying it as an embedded report, so I saved it to a .rpt file and am loading it dynamically. I only have the CR9 distributed with VS.NET. When I open the file in VS.NET now, I CANNOT MAKE...
  20. NipsMG

    Data Set Creating INCORRECT ID (Primary Key) Field

    HELP! I've got a DataSet that points to to a table - BatchInfo - that stores information about batches of items we've shipped. There's an identity column BatchID. The detail table is called BatchData, and also has a BatchID column, the value of which must exist in BatchInfo. I've been able...

Part and Inventory Search

Back
Top