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

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

Zaib

Member List

Tom Robins
HippyCraig
Denis Cilliers
dlypka
Rustum
mokkimhong
zeusmt
RyanMoore
tod
carywinton
Sean McKenna
tnec
The Strul
MSidden
Michael Tumy
Varsha Sharma
GillBates
Glen77
Patrick Martineau
janfe313
Only Title

Zaib's Q&A profile

  • .NET Development Debugging ASP.Net 2.0 webservice configured for WSE 3.0

    Hello!! I am unable to debug an ASP.NET Web Service which is configured for WSE 3.0. When I attempt to step into the proxy in a windows app or web form referencing the service I get the following error: "Unable to automatically step into the server. The remote procedure could not be debugged. This usually indicates that debugging has not been enabled on the server". I am able to debug non-WSE configured wed service. The Web.config includes debug="true" in the compilation section and the debug verb is allowed in urlscan. I receive the same message if I attach to the aspnet_wp.exe process in visual s ...Show All

  • .NET Development How to UNlock a file

    Hi, how can i unlock a file, so i can change, move or delete it It doesn't matter, because i run through a list of files and want to delete them all. At the moment i catch exceptions and don't delete files if they are locked in any way (maybe by another application) cause i don't know how to unlock them. ...Show All

  • Visual C++ vs2005 and the C runtime library

    Hello, I've got VS2005 and I'm producing a standard C application, not using .NET/clr or MFC, ATL, etc. I wish to simply produce an executable without any manifest or reliance on any files other than the executable itself and the C runtime. Do I need to set 'Allow Isolation' to No (/ALLOWISOLATION:NO) in the Linker/manifest configuration section and in the Manifest Tool/Input and Output set 'Embed Manifest' to No (this changes the flags to /out:.\debug\test.exe.embed.manifest /notify_update) or can I get away with just one setting (or something else). I want to create a make file but don't know what settings to use. Is all this manifest ...Show All

  • Visual Studio Team System Source control reports

    Hi, There are a lot of built-in reports available in Team Project. Surprisingly, none of them provides reporting for source control. For instance, I will need to see what files have been checked-in during specific day, who made the check-ins, what files are still checked out and who made it, and so on. How can I get those reports Regards, James. RobertV - Thanks for the extra posts. I tryed to use your fix in the cube but couldn't find the checkboxes you reffered to. So I decided to wait for us to install the RTM. We just installed the RTM and I still can't find the "File" attrib ...Show All

  • Visual C# Running time of a process?

    Hi, I was wondering, how do I get the running time of my process. Standard approach would look like this: Process process = new Process(); process.StartInfo.FileName = "bla.exe"; process.Start(); DateTime startTime = process.StartTime; process.WaitForExit(); DateTime exitTime = process.ExitTime; TimeSpan runningTime = exitTime - startTime;   The problem occurs when trying to measure execution time of very short processes. I can't get the start time of the process. I really need a very precise measurement of execution time. Any ideas Regards, Mantas OK. I will do it properly. I am in n ...Show All

  • .NET Development BUG

    The MSDN profile form is in a loop for some reason and I can't continue, so I can't report the bug I've found in VS2005. Create a new user control, call the project 'TestControl', rename the class to 'TestControl', put a button or a label on the user control just for a visual indication. Compile it, copy it to your C:\ drive just for simplicity. Create a new windows app, go to the form_load event and put the following code in. Dim myAssembly As System.Reflection.Assembly = System.Reflection.Assembly.LoadFile("C:\TestControl.dll") Dim obj As Object = myAssembly.CreateInstance("TestControl.TestControl") Me .Controls.Add( CType (o ...Show All

  • Visual Basic Urgent !!!!!!!!!!!! Services Status...

    Hi All, Now again I stuck at an interesting point... I want to know that specified service is running or not... Like if I give the name of the service than I want to know that its running or not or hanged or stopped... STATUS Please Help me out of this probs. Dim Proc As Process() = Process.GetProcessesByName( "MyServiceName.EXE" ) Notice that Process is a process array. If you have only one service by that name it will have only one element in the array. There are various process properties that you can examine such CPU time or I/Os depending upon the properties of the service itself which you have not spec ...Show All

  • .NET Development (403) forbidden accessing SOAP objects

    I have an EXE that is resident in a virtual directory on an IIS server.   The EXE is then hosted in IEEXEC.  One it load it uses .net remoting to access SOAP objects in a 2nd virtual directory that has the proper web.config and BIN sub-diretory. Both directories are set for Integrated Authenication only.  I give the directories read and execute permissions for a global domain level group has members that are allowed to access this EXE and it's remote objects.  I have managed to get this configured correctly on 4 seperate servers.  (A mixture of 2000 and 2003 servers.)  Everything is in the local i ...Show All

  • Visual Basic UTF-8 Encoding

    Hello How can i write a string variable to a HTML page with UTF-8 encoding..My string variable contains unicode characters..It has to be exported to HTML.. with utf-8 encoding.. So what to do Navaneeth ...Show All

  • Visual C++ Trouble using registers from SSE2

    Hi. I want to implement software that should gain performance by storing, operating and reading values that are stored either in XMM registers or in the newly available additional (AMD64) GPR registers. I have to use Visual Studio 2005 which doesn't provide inline assembler any more so that I have to use intrinsics. With them I want to store values in a predefined manner to all XMM registers. Therefor I use 16 _m128i variables, hoping that every one of them maps to a xmm register. But when decompiling the intrinsics, I see, that the compiler is writing the data always in just one or two registers overwriting the other value ...Show All

  • Visual C# Find/Replace

    Hi to all I am trying to code Find/Replace with richTextBox. Can anyone help You might want to look into regular expressions provided in System.Text.RegularExpressions . ...Show All

  • Architecture User Connection ratio for asp.net application

    I am designing a web application and using some underlying reader classes. I see the number of connections to database are much more than users, may be 5-6 times. I think the number of user and connections should be same or almost same. I ran some vanilla code with out underlying reader class and found out that number of user and connections are same(almost). Underlying reader class use type data set and extend reader class for type dataset for crud operations. I am not creating any thread or starting another connection and try to use the same connection and in fact uses same connection string. Regards, ...Show All

  • Visual Studio Express Editions Problem with Graphics

    I don't understand why this doesn't work: Dim g As System.Drawing.Graphics g.DrawLine(Pens.Blue, 1, 1, 100, 100)   I don't see where you have set g to an instance of Graphics. Usually you use a Graphics inside a Paint event handler (where the graphics object is in PaintEventArgs parameter) or you can create a Graphics object using the CreateGraphics method of a Control/Form. ...Show All

  • Software Development for Windows Vista Simple Newbie question

    Would WWF be an appropriate way to handle loading data files into a SqlServer database In my job, we interface with the mainframe, and therefore deal with a lot of file-type interfaces. For example, I have a file that is FTPed over from the mainframe every night and needs to be processed. i.e. loaded into my applications database. Currently, I create a windows service that has a file watcher setup on the incoming ftp directory, and then fires off a thread to process the file when it shows up. Needless to say, this process can break about a hundred different ways, and needs to be restart-able, and monitored, etc. So is this type of ...Show All

  • Windows Forms File to Image Conversion

    I want to convert any files in image format  and vice versa. Can Any one help me   You can't do any file, you need to write a converter foreach file type. For example a Textdocument, you need to write the text in the document to an image so it can be displayed. You can't just change the extension, because this won't effect the file format. ...Show All

©2008 Software Development Network