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

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

highNNdry

Member List

MohsinAta
Polity4h
Martin Schmidt
hessie
RichLeyshon
Eretria-chan
asalcedo
redviking2006
Jim Fafrak
Keith Hill
Closer
mamatham
Match Brace
Tejovardhan
Duncan Faulkner
Sukhbir Dalal
Jason Lodice
hr0nix
VikasGoyal
Sam Jost
Only Title

highNNdry's Q&A profile

  • Software Development for Windows Vista Debugger detected

    While trialling Vista RC2 (5744) I went to install and run my favorite screen saver "Cuckoo Clock 3D " from 3Planesoft I got this error Debugger detected [97] The install seems to work fine, it's when I try and run the thing or change any settings that the error appears. It worked fine in RC1 (5600). Any devs/enthusiast know what is new that is causing this and better still can it be fixed before rtm Regards I get the same problem with message "Debugger detected [97]" after installing Internet Download Accelerator v.5.1 (IDA) from Westbyte. The installer goes OK but trying to run the App fails. Unistalled and installed again using the compatibility mode wizard. Same problem: Debugger ...Show All

  • Visual C# Get IP Address from TCPClient class

    Hi all, I have a question regarding the TCPClient class. I am working with a server application that listens for clients to connect to it. When a client connects I add the client as a new TCPClient TCPClient client = new TCPClient() client = server.AcceptTCPClient() the problem is I need to pull the IP address from the client. How do I do it while maintaining the TCPClient I know I can use Socket instead of TCPClient and retrieve the IP fairly easy. Is there a way for me to get the IP address from a TCPClient Thanks Tom I tried that code already but the Client is protected and I can not access it. Any other suggestions for obtaining the IP address while maintaining the TcpClient clas ...Show All

  • Visual C# Reading a PC game memory results

    Hi! Im trying to lear how to read memory from a PC game that is running on my PC. The game is Football and would like to find a way to save the results in a XML file. Anybody know where i should start Or a good demo thank you That's going to be a pretty hard way to go about getting the game results. They don't get written out somewhere Anyway, this article might give you some tips, but it will only work if you can spawn the game process from within the app that wants to read the memory, and even if you can you'll have to be able to read assembler to figure out where the values you want are stored, and in what form. http://www.codeproject.com/csharp/minememoryreader.asp If it is a DirectX game ...Show All

  • Visual C++ Connecting Access database vis managed code via ADO.net.

    Hi; Could someone point out my code error here. When I try to compile I get a C2065 OleDbConnection undeclared identifier error msg. Here is my code: #using <mscorlib.dll> #using <System.Data.dll> using namespace System; using namespace System::Data; using namespace System::Data::OleDb; #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { // The connection //string cnNwind; OleDbConnection * conn = new OleDbConnection(); conn->ConnectionString = S "Provider=Microsoft.Jet.OLEBD.4.0; " S"Data Source=C:\my_databases\taxLots.mdb"; // The connection string try { // Open Database conn->Open(); Console::WriteLine(S"Connected to database successfully ...Show All

  • Commerce Server Commerce Server Staging Quirks

    Commerce Server Staging (CSS) stages web sites and commerce server data across servers (read more here ). I encountered a couple quirks that weren't really documented; I'd be interested to hear any comments. CSS can be configured to replicate a web directory. CSS can be configured to migrate Commerce Server Data. However; it was a surprise to discover that this also replicates the web directory. Any comments as to why this implementation was chosen CSS does not migrate the profile data when migrating Commerce Server Data - this kind of makes sense, as you wouldn't want to overwrite profiles when migrating profiles from the development to production environment. Again any comments and background on this decision would be appreciated. ...Show All

  • Windows Forms exception occuring while closing the form

    HI In my application i have two forms form1 and form2, from form1 i'm calling form2 in the form load method i'm loading the list of the webcams attached to the PC. to capture a photo. when i close that form without captureing or without even previewing the image displayed on the picturebox the system will giving an exception. An unhandled exception of type 'System.ArgumentException' occurred in system.windows.forms.dll Additional information: Invalid parameter used. and application is closing. can anyone help in this issue. GRK Wow, Bhanu is helping out here technically - great to see you participate more here! :-) To the problem......that could be the problem, SendMessage() - when you are closing the application ...Show All

  • Visual Basic writing to a text file

    I just want to write one row of text to a text file either using a button or on close. thanks for the help Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click My .Computer.FileSystem.WriteAllText( "d:\temp\testfile.txt" , "Text to be written" , False ) End Sub Private Sub Form1_FormClosing( ByVal sender As Object , ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me .FormClosing My .Computer.FileSystem.WriteAllText( "d:\temp\testfile.txt" , "Text to be written" , False ) End Sub ...Show All

  • Visual Studio VS 2005 IDE problem

    I am having a problem with the properties page of all my VS 2005 projects. I can modify all the properties except "Application". When I try to look at this property page, I get the following error: An error occurred trying to load the page. Exception has been thrown by the target of an invocation. Does anyone know what this problem is or how I can fix it I tried reinstalling VS 2005, but the problem is still there. I can look at the same project on another PC with VS 2005 and the problem does not occur. Thanks for any help. Pat Thanks for the reply. I tried this and it did not fix the problem. Another note, I cannot install any of the VS 2005 starter kits either. I get the follo ...Show All

  • SQL Server Connecting to SAS Datasource in SSIS?

    Hi, in DTS I used a SAS ODBC connection in the 'Other Connection' source to access SAS datasets. Does anyone know how to connect to SAS in SQL 2005 Thanks. ...Show All

  • Visual Studio CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Load crpe32.dll failed.

    hi i m using VS 2003 with crystal report,my project is working fine on local machine ,but when i was trying to upload on remote server it showing error.. Exception: Load crpe32.dll failed. plz any one have idea abt it expected reply Regards, Chetan S. Raut. hi i m using VS 2003 with crystal report,my project is working fine on local machine ,but when i was trying to upload on remote server it showing error.. Exception: Load crpe32.dll failed. ...Show All

  • Windows Forms Working with Datasets & DataGrids

    Hello there. I am working on datasets and datagrid tables and having some difficulty. I want to read some information from a file and place it in the table for different coloumns the command i was using to add information to a row of dataset was dataset1.tables(table1).rows.item("field1") = newvalue but this doesnt work. my aim is to add a new value for each of the coloumn in the table and move to the next row, then repeat the same process to add some more new values for that table. Also, in excel i can add a hyperlink to a cell if i want.i know the excel command for adding hyperlinks to a cell....can i do the same for dataset tables also.If yes,..then how , I want to add a hyperlink to point to a file.. c ...Show All

  • Visual C++ VCBuild Build Order

    Hi All I am trying to build a VS Solution file using "VCBuild" and also "devenv" When I compile using devenv -- It builds with out any error. But when I build the same solution file it flags lot of linker errors. After seeing the log , devenv and vcbuild are building projects present in Solution file in different order. How can I make VCBuild to use the Project build order present in Solution file. -Pramod Hi , Are all your projects VC projects What kind of dependencies do you have between the projects Thanks, Marian ...Show All

  • Windows Search Technologies WDS INDEXING & NOTIFICATION TASKBAR - DISAPPEARANCE OF ICON

    After having run some clean up software, the WDS icon has dissappeared from the notifcation task bar (right hand side). This means that when the indexing function begins, I do not have the option of suspending it if there is another more important task and as this tends to happen every time I boot up, it is getting very annoying and slowing my system down at a time when I least want it. I also rarely use the search option. After searching the settings and on line, I can't find any reference on how to re-install it. Please help. This was in your startup group in the program files on the start menu. You can re-add it yourself: "C:\Program Files\Windows Desktop Search\WindowsSearch.exe"  /st ...Show All

  • Visual Basic Datagrid and listbox problem

    I am having an issue when I run my program. I have a listbox with categories and a datagrid which are linked together. When I run the program everything works fine until I select another category in the listbox to view in the datagrid. I lose my ability to update or close the program. Can someone help please I don't understand what is happening. Thanks in advance. ...Show All

  • SQL Server can i use scm to change to sa password

    for some reason i changed my sqlserver sa password as 'newpassword', i try to find a way to resolve the sqlserveragent settings , in connection tab, i choose 'sqlserver authority', i try the command below to changed the sa pwd: >scm -Action 7 -Service sqlserveragent -Pwd newpassword >net start sqlserveragent but the modify of scm is not commit although the message tell me that modify is successful. can I use SCM to modify sqlserveragent settings Hi, to change the SQL Server Agent password , first you have to change the password for a User which is used to start SQL Server Agent service and then go to Start->Settings->Control Panel->Administrative Tools-> Services->Select services ...Show All

©2008 Software Development Network