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 gkittelson 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. BFT1303

    Return Local Machine Name

    That was what I was thinking. Thanks
  2. BFT1303

    Return Local Machine Name

    I am trying to get an ASP.NET page to return a local machine name. I keep getting the server name instead. I need to verify that the page is opening on an authorized PC. Management wants this done by PC not user. Is this the best way to do this or is there a better way? Thanks, Brad
  3. BFT1303

    Connection Manager - Excel

    I am trying to give the user the ability to tell the SSIS the name of the Excel sheet to import. I have been unable to find a way to set the ExcelFilePAth to a variable name. Has anyone been able to do this, if so how? Thanks in advance, -Brad
  4. BFT1303

    xp_smtp_sendmail

    I am having an issue with sendmail. I have a coworker who cannot receive mail sent through our system using xp_smtp_sendmail. The email address is first.last@myemail.com, can xp_smtp_sendmail handle this email address format? Thank you, Brad
  5. BFT1303

    SQL FILESTREAM ISSUE

    I am new to using the filestream. I am trying to open a pdf from the table that I have stored in SQL Server 2008 with filestream. I would also like to attach it directly to an email. Any direction would be greatly appreciated. Thank you, Brad
  6. BFT1303

    Convert to SSRS

    I am attempting to convert a few Crystal Reports to SSRS. Is there an easy way to do this without purchase software(KTL, etc)? thank you -Brad
  7. BFT1303

    CE printing issue

    I am trying to print from a Symbol MC3090 running Windows CE 5.0 to a Zebra QL220+ wireless printer. I cannot get the two devices to connect. Is there a "ADD PRINTER" wizard/function or do I need to code the connection in my app?
  8. BFT1303

    Query Active Directory

    Thank you. You can download GPMC here: http://www.microsoft.com/downloads/details.aspx?FamilyId=0A6D4C24-8CBD-4B35-9272-DD3CBFC81887&displaylang=en
  9. BFT1303

    Query Active Directory

    Do you know of a way to query Active Directory to show all users and corresponding group policies? Thanks, Brad
  10. BFT1303

    Export results to file

    I am trying to export the results of my stored procedure to a file(.csv or .xls). I am not sure how to accomplish this. Any help or pointers would be greatly appreciated. Thanks, Brad
  11. BFT1303

    HELP WITH COMBOBOX

    I am trying to empty all items from my ComboBox. I cant seem to clear the list. I am filling the box from an ArrayList of strings. This is running on Windows CE 5.0 and written in C#. Can you please point me in the right direction? Thank you.
  12. BFT1303

    XP & LINUX

    HAs anyone had any success installing Ubuntu 7.10 on Virtual PC 2007? If so, how did you get it to work? Thanks
  13. BFT1303

    Can't COnfigure Properly

    I have a Dell Latitude D620 w/docking station. I am currently configured for dual screens ( laptop display being the default and a Acer 19" LCD as the secondary). Have am trying add a 2nd external monitor so I can have 3 screens but have been unsuccessful. Does anyone have any idea how to...
  14. BFT1303

    C# and Windows CE 5.0

    I have been trying unsuccessfully to establish a SQL in Windows CE using C#. I know that on a regular Windows form I can use System.Configuration and that contain a definition for ConfigurationManager. However, System.Configuration does not contain that definition for Windows CE. I am missing...
  15. BFT1303

    SQL & Wndows CE5.0

    I am having a few issues trying to connect to out SQL SERVER from a Windows CE5.0 device. Here is the details to the SqlException error I get: System.Data.SqlClient.SqlException was unhandled Message="SqlException" Class=20 LineNumber=0 Number=17 Procedure="ConnectionOpen...
  16. BFT1303

    Wireless OS Decison ??

    My company is currently in the planning phase of a large barcoding project. We are trying to decide which OS to get on the Symbol handheld devices we are planning to purchase. We are looking to perform large amounts of transactiona and database updates through the handheld devices. Which OS...
  17. BFT1303

    Open 2nd Project

    I am rather new to C# and I this is probably much easier than I am making it. I am trying to have 1 project call and run another project. Also, I am having issues with 1 form trying to open another form. Thank you for all your help
  18. BFT1303

    SQL STORED PROCEDURES

    I solved the issue by concat the variable into the command string on the C# side string cmdPart = "EXECUTE get_Parts '" + @myPart + "';"; mySqlDataAdapter3 = new SqlDataAdapter(cmdPart, mySqlConnection); Thanks
  19. BFT1303

    SQL STORED PROCEDURES

    The query itself produces the proper results. In my C# program, the user is asked to enter a value for the variable myPart. How do I send that value to my stored procedure so the statement SET @partNum = myPart ? THANKS
  20. BFT1303

    SQL STORED PROCEDURES

    CREATE PROCEDURE get_Parts AS DECLARE @partNum varchar(40) BEGIN SET @partNum = 'myPart' SELECT DISTINCT BIN_ID,SUM(BIN_QTY) AS BIN_QTY FROM plm_brad.LEI_WARE WHERE PART_ID = @partNum GROUP BY BIN_ID END Sorry, I didnt explain my problem very well. I would like to pull in the value...

Part and Inventory Search

Back
Top