Software Development Network Logo
  • SQL Server
  • Microsoft ISV
  • Visual Studio
  • VS Team System
  • Architecture
  • Visual C#
  • Windows Forms
  • Windows Live
  • Visual C++
  • Visual Basic
  • Visual J#
  • VS Express Editions
  • Smart Device
  • Game Technologies
  • Windows Vista

Software Development Network >> heshamsalah's Q&A profile

heshamsalah

Member List

Ruben Figueroa
Jordan Matthiesen
mbriscoe
HelloWorld .Net
bdonnelly
Sondra Webber
Sandro Rudin
majkeli
Neilgd
Avanthi
barbbayne
Andrewssi
Sreejan
giancarp
yishyuan
sinisterguy
akramm
MeNewtoSql
TCVMZhen
Les06291979
Only Title

heshamsalah's Q&A profile

  • Visual Basic copy file through unc path with services

    I have a windows service running under localsystem account and need access shared folder ( \\192.168.1.1\folder\filecopy.exe - it's shared with everyone permissions) to copy a file in background and without logon but gives me error. I need do something in services to can access shared folder (two computers are in same domain) Thanks. I might be wrong here, but I think that the LocalSystem account (i might be thinking of NetworkService) is registered in AD as the Computer account. If you go to the file share and add that particular PC's Computer account to the sharing security you should th ...Show All

  • Windows Forms I search Source code of terranium

    If anyone still has any version of the .Net Terrarium Server and/or Client Source code OR SIMILAR APPLICATION that use P2P like Terrarium, I would apreciate it greatly if you would contact me please:  vgta_@hotmail.com Sssa2000.  to see how to use customers's code in DLL  I would check out http://www.divil.co.uk/net/articles/  Writing Plugin-Based Applic ...Show All

  • Software Development for Windows Vista Win SDK install errors..

    Hi all. I downloaded Win SDK February CTP from the codemaster challenge page. When i tried to install the Windows security MsgBox appears and displays that dbg_x86.msi is unsigned and its blocked. Log: Config_Products_Install: Windows SDK Setup (failed): Installation of the "Debugging Tools for Windows" product has reported the following error: Signature of the file dbg_x86.msi could not be obtained. Possible unsigned file. When i disable the Debugger Utility in install option another error comes stating some fatal error. Log: Config_Products_Install: Windows SDK Setup (failed): Installation of the "Microsoft Window ...Show All

  • Visual Studio Get Latest Version stops after Error reading from file

    Hi, We have following problems with at least one file item: 1. If we select the "Path" tab of the "Properties" dialog we get the error message "File <Physical File> not found". This file was probably destroyed in Vss many years ago and is not available in the data directory. 2. If we do a "Get" from the "History" dialog we get the error message "Error reading from file". 3. If we share the parent project of the file and then do a "Get Latest Version" on the shared project we first get the message "Project <Logical Project> has been destroyed, and cannot be rebuilt." and after clicking the "Yes To All" button the error message ...Show All

  • Visual Studio Clipboard problems in a VSPackage editor

    I'm having some problems with pulling items back off the clipboard within my VSPackage editor.  It looks like the item is added to the clipboard fine, it is disovered fine, but when I am typecasting it back to the object that I originally put on there I am getting invalid cast errors.  I've heard that there can be problems in an add-in and you need to retrieve the data in a different thread... but I tried that, and it didn't help the problem either. I've followed the samples provided in help and on various websites to placing items on the clipboard as well as pulling them off and for some reason it isn't working for me.... here ...Show All

  • SQL Server TRY-CATCH question - Errors of severity 10 or less

    According to the articles that I've read, errors (i.e., warnings) with a severity of 10 or less DO NOT trigger the CATCH block.  And none of the sample code that I've seen check for those errors. So, is it safe to ignore those errors   Or, should I be checking for them Hi Richard Yes, it is safe to ignore errors with severity 10 and under. You're correct: TRY...CATCH doesn't handle errors with severity 10 and under. This is because errors with severity 0 through 10 are informational messages and not really errors. The Database Engine does not raise system errors with severities of 0 through 9. Mess ...Show All

  • Visual Studio Reportviewer not displaying in cookieless mode in forms authentication

    When in web.config using cookie < authentication mode = " Forms " > < forms name = " cookiename " loginUrl = " login.aspx " protection = " All " timeout = " 59 " /> </ authentication > Reportviewer shows report all right in IE but when in web.config cookieless mode < authentication mode = " Forms " > < forms name = " cookiename " loginUrl = " login.aspx " protection = " All " timeout = " 59 " cookieless="UseUri" /> </ authentication > reports doesn't ...Show All

  • Visual Studio Express Editions Structure Vs Class

    Can anyone describe the exact defrence between Class and Structure We can use bouth many times. When should we use a Class and when a Structure Pay attention to the video that Jelle van der Beek linked to: even though it drags on a little, it's quite good and mentions a big drawback of structures. Indeed, I've found the class capability of the framework extremely versatile. ...Show All

  • SQL Server How to create XML documents over 8000 bytes?

    I have a script transform object that is creating XML to be inserted into a SQL 2005 database. It seems only an N_TEXT can be inserted, but N_TEXT is read-only in the script task.  The only way I've found to make this work is to have the script transform produce the XML into a DT_STR(8000) string, then convert that to N_TEXT in a Data Conversion task so it can be inserted. Now I have a problem in that my XML has exceeded the 8000 byte DT_STR data type.  Is there another way to do this Jay Ah, answered my own question.  Seems I knew this at one point already and somehow forgot it.  The ...Show All

  • Windows Forms flash problem

    I'm using the flash activex control to load swf files. I want it to be dynamic, I'm adding the control at runtime,and it works ok, but I can't load the movie into the control. I tried the Movie property and the loadMovie method but both gave me this error 'An unhandled exception of type 'InvalidActiveXStateException' occurred in axinterop.shockwaveflashobjects.dll' What&n ...Show All

  • Visual Studio 2008 (Pre-release) How to Impersonate in wsHttpBinding?

    Hi I am using wsHttpBinding. I have used both kind of secuirty i.e. message and Transport. I wanna know how could i imperosonate the user in Windows message mode. How does this thing work, without Impersonation coz i tried calling my WCF service from remote system, it doesn't ask for credential.Then how does message authentication work without in SSPI mode. I have set Negotiations to true and also tried Message Behavious attribute ImperonationRequired. Pls reply soon, its urgent Thanks You are confusing a few things here. Message and transport security – you cannot use both with WSHttpBinding, you ...Show All

  • SQL Server Need suggestion on loading a 50 million records table from Oracle

    All, I need to load a 50 million records table monthly. Any suggestion about the best/fast way to do it Thanks a lot All I tried today; it used 8 hours to load the data just from the Oracle table to the staging table on sql server 2005. It is unacceptable!!! There are must be a better way to do it. In the data flow, there is only an OLE DB source (from Oracle) ----> data conversion transformation(convert the CLOB type) ---------> OLE DB target (SQL server 2005) Do I need to do more in the data flow What should I do Many Thanks ...Show All

  • Visual Studio Team System Error 1308. Source file not found

    Hi there, When I am installing Team Foundation Server Beta3 Refresh I receive the following error; Error 1308. Source file not found:c:\software\visual studio 2005 team foundation server beta3 refresh\atdt\Program Files\TFS\Web Services\WorkItemTracking\bin\Microsoft.TeamFoundation.WorkItemTracking.Server.Dataaccesslayer.dll. Verify  that the file exists and that you can access it.  The server's configuration is the following one: - Windows Server 2003 SP1 (Spanish version) - Domain Controller (Active Directory) - DNS Server - SQL Server 2005 - Sharepoint Services 2.0 SP2 The iso image of TFS sw has been do ...Show All

  • .NET Development Preserve timestamp

    Hello everyone! Currently I'm working in an application using .NET Framework 1.1. I have to download several files from a server to the client machine, but for security reasons, we would preserve the TimeStamp that the file originally had in the server machine, and have to do this programatically. Do you have some idea about how to achieve this Sorry if this seems a newbie question, but I haven't benn able to find some API or documentation explaining something about this. Thanks in advance! Wow! It has been a long time since I posted to this forum... and was seing that I never came back to tell you what ...Show All

  • Visual Studio Express Editions why is vb.net printing so difficult?

    Hi, I have loads of VB6 apps I am trying to migrate to VB.net and the biggest problem I have is that printer.print has no equivalent in vb.net Can anyone tell me a simple way to print in dot net Thanks Impossible is about right. I just can't see what to type to make something come out on paper, and I have written some neat VB stuff (IMHO) in th epast but this dot net thing has me stumped. Am I missing something or is nobody printing anymore Maybe we have finally reached the holy grail of the paperless office by MS removing the ability to print. Seriously though, can anyone point me at a p ...Show All

©2008 Software Development Network