Software Development Network Logo
  • Visual C++
  • Microsoft ISV
  • Game Technologies
  • Windows Forms
  • SharePoint Products
  • VS Team System
  • Visual Studio
  • Audio and Video
  • Visual C#
  • Smart Devicet
  • Visual Basic
  • Visual FoxPro
  • IE Development
  • .NET Development
  • Windows Vista

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

rSchild

Member List

Mike!
RalfCJ
Thara Riaz
Chiarigos
Daniel_laksjdhfg
Badajoz95
Little
Peter Richard
mmonte
Edward Kong
James Alexander
adorer
MMEZIL
Jessica Alba
jerry_tseng
Shaantu
Woyler
TaiChiMaster
joshua926
czkiam
Only Title

rSchild's Q&A profile

  • Software Development for Windows Vista Copy File to System32\Drivers

    Hello, I encountered a problem that my program cannot CopyFile to C:\\Windows\\System32\\Drivers even though my property is Administrator, what I got by using GetLastError is Access Deny. But I really need to copy some files to that place, is there any other way I can do this Thanks! Is this file copy part of a program installation, or something that your program does every time it runs Is this just for your own system, or something you're providing to other users ...Show All

  • SQL Server Job Execution Failed - Need security guidance

    I am trying to install the sample execution log reports provided with SSRS. http://msdn2.microsoft.com/en-us/library/ms161561.aspx I follow the above steps on my local development machine and everything works correctly. When I try to install them on our development server everything goes fine until I try to start the job (step #13 in link above) "Execution of job 'RSExecutionLog_Update' failed. See the history log for details. When I view the history I get: "Executed as user: WILWHAPP\SYSTEM. The package execution failed. The step failed" From the error provided I'm guessing this is a security issue. I just don't know what and where I should change something. I have posted to two Reporting Services F ...Show All

  • .NET Development .NET Framework, Installation Issues... Windows Updates

    I'm poor with computers, i have to say, although i'm sure this error coming up, cannot be good for my pc, and i want it to be in top shape. Here are some Prt.Scrn's of my Errors, I hope you can shed some light on why this is happening. > http://i87.photobucket.com/albums/k157/odarwazeh/InstallingUpdates.jpg > http://i87.photobucket.com/albums/k157/odarwazeh/UpdatesNotInstalled.jpg > http://i87.photobucket.com/albums/k157/odarwazeh/Specs.jpg* *Note, That is my PC Specifications. Thanks. Aren't there any entries in the event log Have you tried retrieving it from the Windows Update web site, this gives a more specific error Clear the contents of the folder %WINDIR%\SoftwareDistribution\Down ...Show All

  • Windows Forms GUI problem

    I have a problem I don't know how to solve: There are two controls on my form, lets assume two TextBoxes. The Leave event of the first TextBox disposes the other one - so if the focus is on the first TextBox and there is a mouse pressed on the second one - there is an exception because the second one is disposed and can't get the focuse. I know it is weird but I need it. Help anyone Thanks The leave event from the 1st txtBox will cause the 2nd txtBox to dispose on whataver else you click on the form. So it is impossible for the user to use the 2nd txtBox no matter what as soon as you loose the focus from txtBox1. Maybe you mean to have the 1st txtBox to be disposed when the user gets focus of the 2nd txtBox wich would kinda ...Show All

  • Visual Basic about copying info from a ".txt" file to a listbox

    This myt seem lyk a very stupid question for most of you people out there, so i apologise for my ignorance. I am learning computing at school this year, and i had to do a project at school. Anyways, i am really really stuck on this, i have been trying 2 do it for the past 3 hours and it seems like i really need some help. I have got this txt file with the info like this: "DEF $13.45" "ABC $12.95" "Cheese Lovers $11.90" "Vegie Supreme $11.90" "$50.20" I was wanting to copy the whole file into a listbox. So this is what i tried, but it never seemed to work. This is what i have thought of, i have tried alot of other methods but they dont work too. Fi ...Show All

  • Visual Studio 2008 (Pre-release) Little help with Windows Communication Foundation plz

    Hi i have the following code taken from a tutorial. Now i wish to return a string called returnString but it won't compile because the string is being accessed from another class. So how do i return the string Basically i wish my service to access objects from the application hosting the service. Thanks. using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; namespace Messenger { public class ClientService { ServiceHost serviceHost; String returnString = "String I want to return"; public ClientService() { } public void startService() { Uri baseUri = new Uri(" http://localhost:1234/hello "); serviceHost = new ServiceHost(ty ...Show All

  • Visual C# How to use string.replace to replace "\\" with "\" in a string?

    say, string = "abc//123" I want to replace "//" with "/" so that it becomes "abc/123". Thanks. Hi, try: string s1 = "abc//123" .Replace( "//" , "/" ); string s2 = @"abc\\123" .Replace( @"\\" , @"\" ); Note, that if you look at s2 in the debugger you will still see \\ in the debugger window because it escapes the \, but it really only has one \, try printing it to the console to verify. Mark. ...Show All

  • Visual Studio 2008 (Pre-release) ServiceHost connection number problem

    Hi, i try to create one simple WCF application. For hosting my services I use ServiceHost class. The problem is that i can not create more then ~10 connection. After restarting the "Host" application others ~10 connection will be supports. It seems that the request not even gets to service. How can i resolve it Thanks What is your binding If it's NetTcpBinding then you are hitting the MaxConcurrentSessions throttle. http://windowssdk.msdn.microsoft.com/en-gb/library/system.servicemodel.description.servicethrottlingbehavior.maxconcurrentsessions.aspx I am using wsHttpBinding. Thank you. ...Show All

  • Visual FoxPro command window always on top

    Hi, I am trying to figure this out for over an hour without much luck. When I open a table and browse it, the command window always stays in front. How can I get it to go to the back so it won't be in the way Thanks, Mark ...Show All

  • SQL Server Restoring an SQL 2005 Server Express DB with a LOG that is to large

    SQL 2005 Express - Database Restore size problem Was this post helpful Hi, I'm trying to restore a SQL Server DB Backup from a SQL Server DB Server on to my Laptop (SQL 2005 Express) When I execute a restore filelistonly command on the backup file, It seems that the Database included is 1GB, but the Log file is 91 GB in size, which exceeds my diskspace. I can restore the Data on its own without the log file, but the the Database stays in "restoring" mode. I've tried to switch the restore flag off ( update sys.databases set state = 0 where name = 'G001' ), but I can`t seem to be able to do it, even if I try to allow updates via: ...Show All

  • SQL Server How to include a Express 2005 database in a setup

    How can i include a express 2005 database in a setup My program is a single user program, and i want express 2005 and the database to be installed on the users computer, when they install my program. I am using Vb.net Visual Studio 2005, and i am using the 'Setup and deployment' template to create the setup. Kindly Peer Hi Steve To add in a database you need to create a custom action and then add in the relevant code to create or attach your database. Can you tell me a little bit more, how to do this Thanx for the answer, it was a great help. Kindly Peer ...Show All

  • SQL Server How to use parameter with LIKE?

    Hello. I have a query that ends like this: WHERE ID LIKE '12345%' I want to replace the '12345' with a parameter name p_id. If I'm useing only p_id without the % it ok but if I'm useing the % after the parameter I'm getting an error. I'm working ORACLE database. Any ideas Thanks in advance, Roy. Or, if using native Oracle vs. OLE/DB: Where ID Like :your_parameter || '%' Hope this helps, Don Shelman ...Show All

  • Visual Basic IDE not responding to keyboard

    Hi Folks; Infrequently my code editor in the IDE quits responding to keyboard entries. This seems to happen after building a project more than a couple of times without running. What's happenning is I will attempt to make a code entry, but after the first character entered -- type of character doesn't seem to matter -- Intellesense will add a parenthisis and add its interpretation of what should follow. Then, if I try to backspace out of the parenthisis, the cursor simply jumps forward and reapplies the characters it wants. Doesn't seem to matter if I mouse over and cut or delete the characters; any attempt to make an entry results in this behavior. I cannot add any code on the form when this is occuring, and requires that I compl ...Show All

  • Visual C# How to retreive the line number and file name of C# source code

    hi all I want to log information about the method currently running. I want to get name of method that is currently invoked. Also I want to get line number which is currently running. I can get line number for exception occurence... but i want to log a method information if exception is not occured.....& method is going to complete its operation well. it is top urgent hoping any one can help me. Thanx in adavance Thats odd... I get the line numbers correctly (in Debug mode). But I noticed that in Release mode the program outputs linenumber of the NEXT method that is is called after the debugging call. I have tried this both in .NET 1.1 and 2.0, and in debug mode they both work. Only way I can get th ...Show All

  • Visual Basic How to Disable Autosave?

    Hi all, Does anyone know how to disable VB autosave I like to open a working solution/project, mess around with it, and if I cant get it working, I like to exit without saving so that the original working version is left. But silly VB 2006 autosaves changes, therefore stuffing up, a once working solution/project. I can understand autosaving whilst working though a large solution, but I prefer to click save once I have accomplished a routine, in the solution/project. Thanks. Tools + Options, Project and Solutions, Build and Run. Set "Before building" to "Don't save any changes". ...Show All

©2008 Software Development Network