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

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

TheCompWiz

Member List

Actcom
Jiming
Dan_BIT
Zeeshan Hanif
Matthew Wright
Dub
Matt M Jacobsen
tribal
do-wah-ditty
Aero.NET
jrsairwalk
Sijin Joseph
Jan Drost
Piotr Trojanowski
Gordon Kenaston
steve smith
michhes
Loren Bain
KenLinder
SamuelSC
Only Title

TheCompWiz's Q&A profile

  • Visual C# running C# windows app from the console does not return prompt immediately

    Try and run a Windows App written in C# from the command line. It will not return the command prompt until the app exits. How do we get it to return the command prompt like native WinAPI applications It does return to command prompt after launcing the application. I tried couple of Win Form apps. Give us more details about Win Forms app you were trying. ...Show All

  • Visual C++ Why does the install for a native C++ app require .NET 2.0?

    I have a native C++ app in Visual Studio 2005. It was a VC++ 6.0 app that I allowed the system to update and does not use .NET. I created a setup project that works fine on my development machine, but if I try to run it on a machine where VC++ 2005 is not installed and that is not connected to the internet, I get the following: For the following components: .NET Framework 2.0 Please read the following license ... I go ahead and accept the license terms, but then get an error: An error occured while downloading the required file. ... An error occurred downloading the following resource: http://go.microsoft.com/f ...Show All

  • Windows Forms including windows.h in the Form1.h file

    Hello , I have a problem that is : in a VC++ >>WindowsForms.Net  I have included the <winodws.h> file in my Form1.h file then I tried to use the System::Windows::Forms::MessageBox::Show(...) method, but I recieved an error message that the MessageBox class is not a member of Forms namespace . note that I need the to include that file to load an old dll file (unmanaged) Since you used the fully-qualified name, I'd have to suspect that you didn't correctly reference the managed DLL. Or, possibly, Visual Studio can't find it because you didn't specify the location in the property pages. In C++ .NET, you reference ...Show All

  • SQL Server Loop through each record and then each field within each record

    I need to essentially do 2 loops.  One loops through each record and then inside each record row, I want to perform an insert on each column. Something like this maybe using a cursor or something else: For each record in my table (I'll just use the cursor)      For each column in current record for cursor               perform some sql based on the current column value      Next Next So below, all I need to do is figure out how to loop through each column for the current record in the cursor AS DECLARE Create_Final_Table CURSOR FOR SELECT     FieldName, AcctNumb ...Show All

  • Windows Forms Null values in a dataGrid

    Seems like a simple problem, can anyone help out I have a datagrid and it has a lot of null values in it. How do I get rid of '(null)' in all the cells that have null values. I want to keep the null values there, I just don't want it to say '(null)' Thanks That is not the same thing...  Your data no longer co ...Show All

  • Windows Forms Keyword is "mari"

    Congrats David !! I can do nothing !!! Well, it looks like my original plan has worked after all. The aggressive behavior of asgard32 towards mari was able to drive them out gradually. Now I can see more varieties of other herbivores back into play. Now let the game begin! Due to some unknown reason, asgard32 seems to also periodially clean&nbs ...Show All

  • SQL Server Updatable subscription in Transactional Replication

    Hi guys, I am trying to setup a Transactional Replication for my data. My publisher and distributor is MS-SQL 2000 server; while subscriber is on a Oracle server. All are locally installed. I have also setup the linked server connection and created the publication. Data is able to be replicated correctly onto my Oracle database. However, this time ard, I want my changes in the oracle database to be reflected back into the SQL database. So I had my publication re-setup with Updatable Subscription. I tried to test it out by making some changes in my SQL database, and my Distribution Agent failed, with error "Invalid HEX number". I belie ...Show All

  • SQL Server SQL Express 2005 targetdir and datadir

    MSDE 2000 allows you to specify a targetdir and a datadir when installing using options on the comnmand line. Does SQL Express 2005 allow the same If so, can I specify a specific target install directory and data directory Bob ...Show All

  • SQL Server ADODB.Connection error '800a0e7a' in sql server 2005

    i've developed one small application in asp with some vbscript and some javascript. i connect to the database by: Set DB = Server.CreateObject("ADODB.Connection") DB.Open "Provider=sqloledb;Data Source=(local);Initial Catalog=HelpDesk;User Id=AAAAA;Password=********;" all were going well (local sql server 2000) but... when i've moved the application to the application server with sql server 2005 i get the following error when i try to acced throw ie explorrer: i have insttaled the latest mdac (2.8) and register the msdasql.dll ADODB.Connection error '800a0e7a' Provider cannot be found. It may not ...Show All

  • Visual Studio Team System VSTS VPC - http://vstsb2:8080/bisserver/registration.asmx is unaccessible

    Hi, Just downloaded and got the VPC working. When I fired up VS2005, I got the error: "Unable to connect to BIS Service". Did some digging around and found this blog: http://weblogs.asp.net/omarv/archive/2005/04/27/404869.aspx I get the same error after trying the solution documented above. Checked the EventLog and I saw that the TFS was trying to access the following WebService and it was inaccessible: http://localhost:8080/bisserver/Registration.asmx This is a more detailed description from the EventLog: Microsoft.VisualStudio.ELead.Common.Exceptions.ELeadException: Unable to connect to BIS service. ---> Microsoft.VisualStudio.ELead.C ...Show All

  • SQL Server Model Designer - ODBC Data Source

    I want to create a Model against an ODBC data source. This is not possible in the June CTP. Will this facility be available in a future release Thanks, Joe Unfortunately the chaps from Partner Tech Support were misinformed. This is a reply from MSAS newsgroup : AS2005 is not going to support ODBC data source. However, you can try to create a data source in SSIS project. Then, add the data source into new AS project. You should be able to create DSV, cube and dimension, etc. However, since this feature is not supported. Believe that this area has not been tested enough and this may break engine or not workin ...Show All

  • .NET Development Just a question,I want to see how.help me please!

    I am chinese,I want to ask How to decode a stream, which contains some bytes of chinese characters' data to chinese characters My English is very poor, I think I have to show you some code: FileStream fileStream=new FileStream(openFileDialog.FileName); Encoding encoding; switch(encoder)//encoder is an enumeration { case EncoderEnum.ASCII:encoding=new ASCIIEncoding();break; case EncoderEnum.UTF8:encoding=new UTF8Encoding();break; } byte[] stream=new stream[fileStream.Length]; fileStream.Read(stream,0,stream.Length); textView1.Text=encoding.GetString(stream,0,stream.Length); //and this will caurse unknown character when the file contains ...Show All

  • .NET Development Type.EmptyTypes and its empty object array equivalent?

    I have found the Type.EmpyTypes convenient (and readable) for invocating parameterless methods or constructors. In such case, something like Object.EmptyObjects (instead of new object[0]) would be nice to have since its required by the invocation. Does such shorthand exists in .Net 2.0 Thanks in advance, Joannes I asked for something like this a long time ago except that I suggested it come in the form of a static on System.Array i.e. System.Array.Empty. ...Show All

  • Visual Basic edit and continue

    I can't seem to enable edit and continue in my VB 2005 app. Everyone seems to be pointing to Tools--> Options--> Debugging, but I don't have a debugging menu in my Tools--> Options. Any help would be appreciated. Thanks, Danny OK, so I found the debugging menu, and edit and continue IS enabled. But when I try to use it I get: "cannot currently modify this text in the editor. It is read-only" Any thoughts. -Danny ...Show All

  • Visual C# Atom Table

    hi ALL i want to navigate the atom table so i can able to find the record of the windows hotkey (win+D) and then unregister it , i had read before that this hotkeys values stored in the atom table, i was trying the API unRegisterHotKey but i found that i must have the unique ID of that atom in the atom table that is all i hope if that topic is helpfull for all and i hope if there any one can help me thx AhmedSabry - I'm not sure what you're asking here.  Are you trying to find the ID of the Windows Hotkey Thanks, Karen ...Show All

©2008 Software Development Network