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: *

  1. wbochar

    Dumping Hex Data using BinaryWriter encoding it backwards

    I was trying to avoid that; maybe there was something that I didn't see or was missing.. I've got the process working the manual byte re-ordering. Thanks for the affirmation.
  2. wbochar

    Dumping Hex Data using BinaryWriter encoding it backwards

    I'm using ulong's, the IPAdress.NetworkHostOrder maxed out long. Any other ideas?
  3. wbochar

    Dumping Hex Data using BinaryWriter encoding it backwards

    I'm aware of this; but I want to force use of a different order. I'm working on generating data files for other computer platforms that use the reverse ordering. When using (BinaryWriter bw = new BinaryWriter(fs)) you can specify the the different encodings.. but it seems to not make any...
  4. wbochar

    Dumping Hex Data using BinaryWriter encoding it backwards

    I'm exporting Hex values out to disk. Everytime I do it, it comes out backwards.. ulong [] FontData = new ulong[1]; private void writeData() { HexData[0]=0xCF1333373F43D7FF; HexData[1]=0xCF1333373F43D7FF; using (FileStream fs = new FileStream(@"c:\DATA.DAT",FileMode.Create,FileAccess.Write))...
  5. wbochar

    Grouped Year Ranges with breaks in Years

    I'm working with a lot of year ranges and in the end they need to be "StartYear - EndYear". So the following would data.. Sandra 1972 Sandra 1973 Sandra 1974 Sandra 1975 Sandra 1976 Johnny 2000 Johnny 2001 Johnny 2002 Johnny 2003 would in the end be: Sandra 1972-1976 Johnny 2000-2003 I've...
  6. wbochar

    Grouping Year Ranges that have gaps using C# or SQL

    I'm working with a lot of year ranges and in the end they need to be "StartYear - EndYear". So the following would data.. Sandra 1972 Sandra 1973 Sandra 1974 Sandra 1975 Sandra 1976 Johnny 2000 Johnny 2001 Johnny 2002 Johnny 2003 would in the end be: Sandra 1972-1976 Johnny 2000-2003 I've...
  7. wbochar

    ASP .NET Progressively slower over time

    If you have SQL server as your DB and do a lot of SQL/Proc etc, sometimes connections and licences etc bog down too.
  8. wbochar

    ASCX Event Trapping

    I have a C# ASP.NET application that has a Main Page with 3 ASCX controls. Each control has a text box and a link button associated with it. Since they are all part of the same form, they can all create a postback. In the click event for each ascx file (on their linkbutton) I modify a public...
  9. wbochar

    Multiple Background Images in one tag

    http://www.w3.org/TR/2005/WD-css3-background-20050216/#layering I didnt check the header of the document; just assumed that w3c was a relevant source for css :) but this is for the next revisionof css. I am still trying to figure a way to solve my problem..
  10. wbochar

    Multiple Background Images in one tag

    I've created a toobar using a UL and LI's that run accross the screen (display: inline;) in each li there is a link (ahref) I've got on each link a left edge image, middle section rerpeating image and right edge image. the middle section is set to repeat over x so it should look like...
  11. wbochar

    Detecting other applications and their open forms/dialogs

    Anyone know how to detect other open applications opening dialog boxes etc? I have a program that is controlling other applications and I want to be able to detect if a particular app opens a file dialog box and take appropriate action. wbochar
  12. wbochar

    Voicemail/Callpilot Audio Data Files

    I have a few voicemails that need to be used in legal procedings and would like to pull the data directly off in a file. I cant seem to locate the files through any of the shares or when I log directly into the system through VNC. I did however notice a not formatted/reconized partition -- maybe...
  13. wbochar

    Voicemail/Callpilot Audio Data Files

    Where are the Audio stored for the Callpilot/VM system on the BCM's drives?
  14. wbochar

    ASP.Net and CSS (Simple Question ;-)

    all the web controls you are using use cssClass like so: <asp:ImageButton CssClass="mainPicture" id="ImageButton1" runat="server"> wbochar
  15. wbochar

    What Happened to the XmlTextWriter ? It started to bomb Recently.....

    I basically used the add new item, picked a web form, then cleared out the html and just left <%@ Page language="c#" Codebehind="XMLTEST1.aspx.cs" AutoEventWireup="false" Inherits="XXXX.XMLTEST1" %> in the top of the page. Then I opened the cs file and did the additions marked with comments...
  16. wbochar

    What Happened to the XmlTextWriter ? It started to bomb Recently.....

    The Postback isnt affecting it. I can't seem to get this to go. This is a textbook example and it dumps the xml document twice!.. I cant seem to figure it out..
  17. wbochar

    What Happened to the XmlTextWriter ? It started to bomb Recently.....

    I tried the FLush but it didnt fly. I got the same results.. wbochar
  18. wbochar

    What Happened to the XmlTextWriter ? It started to bomb Recently.....

    There is something rotten going on here. I had a segment of code that was working perfectly and recently it started acting funny -- and no matter what I do it doesnt want to act at all like it should nor can I figure out what is going on. The problem... The code is for an article to XML (for...
  19. wbochar

    Trapping keyboard events in ASP.NET with C#

    Can you use a Javascript Function to trigger a c# method?

Part and Inventory Search

Back
Top