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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by zarkon4

  1. zarkon4

    serial number/Item in limbo, can't receive in or adjust out.

    Having a problem with a serial number and not sure how it got this way but I need to fix it. I have a user who needs to receive a serial number on a RMA, the Serial-Lot screen in GP informs him it has already been received. Naturally my first instinct is to adjust it out, but the Item...
  2. zarkon4

    Converting an amount to a 4 byte array

    That was it, thank you.
  3. zarkon4

    Converting an amount to a 4 byte array

    I haven't ever had to deal with this before. I need to convert a sale amount (48.58) to a 4 byte array and use network byte order. The code below is how I am doing it, but it is wrong and I am not understanding why. Can anyone help? float saleamount = 48.58F; byte[] data2...
  4. zarkon4

    Turning off SVC_RMA reports

    I would like to be able to turn off asking for the SVC_Return_Traveler, SVC_RMA_Receiving_Audit_Trail and SVC_RMA_Discrency reports. I know you can go into posting setup and turn off reports for other various function related to sales, financials, inventory etc. But have had no luck trying to...
  5. zarkon4

    Using eConnect to insert/update RMA's and serial line items

    Found the problem, it helps when you create the object with the proper line count. taFSRMALineSerial_ItemsTaFSRMALineSerial[] serialitems = new taFSRMALineSerial_ItemsTaFSRMALineSerial[LineCount]; taFSRMALine_ItemsTaFSRMALine[] lineitems = new...
  6. zarkon4

    Using eConnect to insert/update RMA's and serial line items

    I am using econnect to insert and update RMA's and am receiving the following error when inserting a new serial number. It keeps referring to specifying something that already is specified, in this case SVC_Original_Serial, I set it and in my code I also set SVC_Original_SerialSpecified = true...
  7. zarkon4

    Vanity Plates "XIV"

    Spotted on Handicapped License plates GIMPY1
  8. zarkon4

    eConnect - The transaction has aborted. message

    I have searched the web and found instances in which this message appears if you use a Dispose() method on the CreateTransactionEntity object. I currently do not use that method and am still getting these errors. Anyone able to lead me to the answer?
  9. zarkon4

    CheckBoxList values to Listview Insert Parameters

    Here is how I do it, It uses a bit of Linq //Get items that are checked from a checlistbox and load into a listitem object List<ListItem> Citems = uxchkCustomers.Items.Cast<ListItem>().Where(n => n.Selected).ToList(); if (Citems.Count != 0)...
  10. zarkon4

    report viewer control 8 date selection briefly appears

    I have a C# 2010 asp page that is using the report viewer 8 control to display an ssrs report (2005) in which the user selects 2 dates. You can enter the date, but when you click to bring up the calendar for selection it shows up then quickly goes away and the user is unable to select a date...
  11. zarkon4

    XP laptops unable to connect to internet away from office

    I believe I figured it out. I created a wireless polixy for XP in the domain's default policy. All is well now.
  12. zarkon4

    XP laptops unable to connect to internet away from office

    ipconfig shows all should be well, it is assigned an ip address and dns etc is all set and no errors occur connecting to wifi. I think it is some policy but have no idea where to check. It only occurs on XP and started when the domain was upgraded to 2008 R2
  13. zarkon4

    XP laptops unable to connect to internet away from office

    This is strange and just recently started when we upgraded our domain to 2008 r2. Our XP laptops connect to the internet just fine when in the office. If they connect to a wireless network outside the office they cannot get to the internet at all. The windows 7 clients have no problems at all...
  14. zarkon4

    domains in forest not communicating

    I have two dns servers 1 on each network, 1 is x.x.10.239, the other is x.x.29.237 the 29 network was pointing to the 29 dns and the 10 points to the 10 dns, I have changed the 29 to point to the 10 dns, but to no avail.
  15. zarkon4

    Adding Server 2008 64 Bit to Server 2003 DC as member server

    After the forest prep finishes, you will need to run D:\support\adprep\adprep32 /domainprep /gpprep When that finished, you will want to make sure it replicates across the domain to all dc's. Once it has you should be able to run dcpromo on the 2008 r2 server. Make sure you click Yes to...

Part and Inventory Search

Back
Top