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

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

Badajoz95

Member List

Divermarv
Humba Baer
PublicError
GiovanniFreda
Ori'
pat capozzi
Joran Omark
ReneC
Kiigan
Jonathon Stevens
snohelty
mahima
Dan Morris
Leonid Niraev
AlexBB
Karin P
MaggieChan
emike
megoo80
rcook349
Only Title

Badajoz95's Q&A profile

  • Visual C++ Creating scheduled tasks in Windows XP/2000 using VC++

    Hi, I tried to create a task for an application which runs fine. I have set all the parameters and the task is configured to run only when the user is logged on with the user name provided(Done by setting the TASK_FLAG_RUN_ONLY_IF_LOGGED_ON flag). When I try to run the task I get a status "Could not start". Now suppose I manually edit any control in task property and click on OK the task runs fine. The task scheduler is running fine. Note:The manual edit specified may be anything, like just adding a space at the end of the excecutable name or the user name. This is a very rough adaption of the msdn task scheduler examples, which worked for me. Replace "USERNAME" of the Se ...Show All

  • SQL Server inserting ascii data into SQL database

    Hi everyone, I need to save the ascii data in my sql express 2005 database in one table and in 2 coloums in this table using VB express... Can I do it by datareader or with bulk insert t-sql command I tried it this way but it gives error like "connection property is not initialised" it is on executenonquery row in the code... Dim cmd = New SqlCommand( "BULK INSERT RFID.dbo.stock(material_number,total) FROM 'C:\can1.txt' " & _ "WITH FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' " ) connection.Open() cmd.executenonquery() connection.Close() I hope some can help with this problem.... How did you initialize your connection object and ...Show All

  • .NET Development Print word document to specific try

    Well I am coding an application using C# for my company which requires multiple printing  Word Docs, at a specific Printer of the installed Printers, and at a specific tray. So, i used word object ( Microsoft.Office.Interop.Word) for print the document but i cant see any tool that indicate how to print to specific tray in my printer. There any way to do that or still stay with the same way (word object) Thank's See the microsoft.public.officedev newgroup for discussions relating to Office interop. http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.officedev&lang=en&cr=US ...Show All

  • SQL Server Restart of SQL Server Agent needed - every day

    Hi, I'm having a very strange problem here. I've got a few SSIS-packages here which runs as Server Agent Jobs. They are scheduled to run every hour. This is what happens: on the first run, all packackes are running and completing all steps successfully. After that, at the second start of the jobs, activity monitor shows "executing step 1", but nothin happens anymore. To get the jobs running again, I need to restart SQL-Server Agent Service. I really have no clue whats wrong with my agent. Any suggestions/hints Regards, Jan Use the logging functionality in the SSIS packages to see which FLow task is making problems and is probably slowing down or freezing the system. HTH, Jens K. ...Show All

  • Visual Studio Team System Printer Spooler Stops frequently

    We have print server running on Windows 2003 Server. For last few days, printer spooler services are acting funny. When users are trying to print through print server, they get an error message saying that printer spooler is not running. When I looked at a service under administrative tools, printer spooler service seems to be running, but I would have to restart services so that users can start printing. It seems to be happening in the morning, but once I restart printer spooler service, users don't that error messages anymore. I can't figure out why it's happening though. It only happens once in the morning for last few weeks, and there's more print jobs running in the afternoon, compare to the light printing in the morning. Ca ...Show All

  • Smart Device Development Today screen wallpaper programatically(urgent help required)

    Can any one help me in setting a wallpaper to a today screen programatically. I tried the following steps but could not succeed : edited the registry key HKEY_CURRENT_USER/ControlPanel/Desktop and in the wallpaper key i gave my own file name. and issued a sendmessage(); again i tried with HKEY_CURRENT_USER/Software/Microsoft/Today and added a file name under wall key. i used the wall key because when i tried to set the wallpaper using manually a wall key is getting created . can any one help me with this i need an urgent help.please help me. I don't need the sample code for writing a today screen plugin rather I want to write a program which can set an image as wallpaper for today screen. Could you pleas ...Show All

  • SQL Server Using SQL2000,upgrade OS from W2K to W2K3

    Hello, We're planning to upgrade our OS from Windows2000Svr to Windows2003,my question is,will there be problem on my SQL2000 installed is there patch needed for the SQL2000 to run in Windows2003 environment thanks&regards, jerico No, not one that I know of. never tried an inplance update od 2k to 2k3 (don’t know if you will do this). But the preferable method for me was to backup the databases on the old system, then for schizophrenic reasons :-) made a clone image of the old server, Update / reinstall the new one to Win2k3 and restored the data’bases on the "new" server. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. RocketCommanderXNA Mouse Issue

    I've successfully compiled the RocketCommanderXNA. However, when I run it I cannot click on any menu items. My mouse is moving around the screen but nothing I do allows it to work. I've looked at the source and it looks as if there are hot keys, but those do not work either. Also, whenever I attempt to debug and step through the code, it pukes on a renderTarget line and I can't debug in that fashion. Anyone have any idea whats going on and can point me in the proper direction Thanks! I also found this, the reason is that there is no mouse "Click" logic on the main menu screen. "\GameScreens\MainMenu.cs" As a save there are hot-key's set up for the menu "// Hotkeys, M=Mission, ...Show All

  • Visual Studio Express Editions Moving On

    Moving on from my last post, where I wanted to draw an ellipse in Picturebox1. I now want to copy the part of the image that is inside the ellipse and move it to picturebox2. I've been looking at Transform and Translate examples but not sure how to adapt them to what I'm after. Most of them just show you how to draw a rectangle and move it 100 pixels to the left. Some pointers please would be helpful. Actually, as I look at talldudes code, it looks like he really did talk to the buffers instead of inscribing images on a picturebox surface which is fine to do although Powell clearly recommends doing this kind of thing in a paintevent with an event supplied graphics. This goes back to an answer tha ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. the error

    I would like my game to come up to the opening scene, and when i press the spacebar it goes away and my game starts. I have tried something like this in my program: void _startGame; { using (Blank game = new Blank()) { game.Run(); } } But when i press spacebar it gives me an error. Thanks, for the help! Thanks for the info regarding GameComponents. I know someone's blog has mentioned this before, but I have not yet spent the time to fully digest it all. ...Show All

  • Visual Studio How to add progressbar into toolbar in custom TaskProvider

    I created VSPackage and custom TaskProvider. It has toolbar with some buttons. I need to create progressbar into this toolbar to indicating progress of some checks. How can I do this Is it impossible One more question. I develop package with one german partner and I installed VS SDk to "Program Files" folder and he installed to "Programme" folder. Some referencies to SDK are hardcoded into project file by wizard. We use one source control so we have some troubles with that. So is it possible to write paths to VS SDK into project using environment varaible or somehow else I found more easy way but the idea the same. You do not have to add additonal file. You can modify <YourProjectFi ...Show All

  • Visual C++ Error Message

    I have just loaded BTBroadband Help. When I boot up I get the following message: SmartBridge Alert: BT Helpnotifier.exe entry point not found The procedure entry point GetProcessImageFileName W could not be located in dynamic link library PSAPI.DLL I close the message and carry on. The only effect appears to be that I cannot have instant messages in my BTBroadband Help program. Can anyone help My OS is XPSP2 Professional. Strange, that function should be available on XP. Is psapi.dll loaded from windows\system32 What is its version number -- SvenC ...Show All

  • SQL Server Protecting Stored Procedures

    I am creating a .NET application with a SQL database (SQL 2005). The database will be installed at the clients site. I would like to keep them from viewing my Tables, Stored Procedures, etc. I have read several posts on here and no one has given a solution to this, is this possible in SQL I am also currently encrypting/decrypting the table data in my SP's but what is to prevent the client from writing an application that accesses my SP's and therefore retrieving the decrypted data See: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=52094&SiteID=1 . The short answer is that you cannot protect your data such that it would be impossible for your client to get to it. You can make it, however, ...Show All

  • Software Development for Windows Vista Do unsigned apps always give a UAC warning?

    We're distributing a legacy app. Do all unsigned apps in Program Files cause the UAC warning when run Is there any reason we can't just have the user install the app in C:\users\login-name so that we avoid all the UAC problems of Program Files Hi Oliver, Thanks for your answer. If we use MSI-typed packages, do we need manifest to be compiled into the package or not Regarding the shield. Thanks for the recommendation, "Vista Manifest" search provided very useful results. Looking through them right now. Software LOGO spec 1.1 says " If only a small number of features in an application will require administrative privileges (For example, an application needs to configure a firewall), the main process of the applica ...Show All

  • .NET Development Why is ASP.NET installed with Framework 2.0 during a Windows deployment?

    I've migrated Win2k console and Windows Service projects from VB 6 to VS 2005. I do not utilize web pages, only Windows forms and the Eventlog. The database is Access 2000 with ADODB and DAO 3.6 for programmatic compaction. I've created 2 deployment solutions, one for each. The references are installed from the local path not the web. Never mind that the ADODB.dll had to be manually added to the deployment projects since DAO was the only Detected Dependency. Why is ASP.Net installed during the Setup process Disabling the service has no affect on either of my apps. Is the ASP.Net installation a configurable option or is this a default "feature", should I decide at a later date that I want the References installed from the w ...Show All

©2008 Software Development Network