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

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

GTH

Member List

Nick Winters
Ariel Mon
DonMartin
Michael Mortensen
BlackMan890
osamaT
Alexey Rokhin
BobInIndy
auSwDev
wpcmame
monkeyMaciej
Arun C
ammard
nubas
Prabu.
polymorphicx
UnKnown Nick
shill1
andrew17
Bhaskardeep Khaund
Only Title

GTH's Q&A profile

  • Microsoft ISV Community Center Forums what is wrong with this formula? *9 Views & no one knows?*

    =IF((Weeks!D(B1+6))="",1,2)   whats the error with this D(B1+6) is ment to respresent a cell with D    = the value of B1+6   what am i getting wrong hi not quite sure that i understand what u mean, would you be able to provide al little code so i can understand your train of thought  I left this section "G"  as i am only working with that column for this particlular code  Sheets("Add Details").Cells(x + 2, "G"). Value = 2 what i wanted to do was give cells 3-9 in column G a value of either 1 or 2 after checking the value of another cell in another worksheet, once my cell done this i used conditional formatting to change the colour of that cell i did this so i ...Show All

  • Smart Device Development why must i sign in with my password just to open my windows

    i have 2 problems .1 why must i sign in with my password just to open my windows 2. why is this num coming on when when i am opening my windows and halting my window from opening This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. Please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. ...Show All

  • Internet Explorer Development runonce blue screen error on page

    had the same problem, found problem & resolved. using blueyonders pc guard, shut down totally & opened internet explorer. page loaded properly, filled in page disappeared. restarted pc guard. problem solved ...Show All

  • SQL Server Errors in the metadata manager

    Good afternoon, I'm having the following error when I run my mining model. Errors in the metadata manager. The dimension with the ID of 'TMP ~MC-ID' cannot be found in the '' database. I think the error is in caseprocessor.cpp at the ProcessCase method. There's a code snippet below: The intention of the following code snippet is to run over the attributes of a case and put them on a vector that holds all the cases. for (UINT iAttribute = 0; iAttribute < _cAttribute; iAttribute++) { if(iAttribute == 0) continue; if(iAttribute == 1) continue; if(iAttribute == 2) continue; if(iAttribute == 3) { vet_termos.push_back(rgdmstatevalue[iAttribute].ch); continue; if (iAttribute == 4) vet_dados. ...Show All

  • Visual Studio Is there a tool to compare two Visual Sourcesafe Databases? We have off-shore developers r/o

      and they have their own VSS database.    The on-shore database and the off-shore databases have to be synchronized weekly.      Is there a tool/utility that can do this for us    For a specific project within the database I am VERY new to Sourcesafe and have had no training so forgive me if this is a stupid/no brainer question.    We are using VSS 6.0.   Thanks in advance. You can read about Team Foundation here: http://msdn.microsoft.com/vstudio/teamsystem/team/ Proxy: http://msdn2.microsoft.com/en-us/library/ms252490.aspx ...Show All

  • Visual C++ whats problem with this code? msvs2005

    hello, it's my first post here, i have little problem, i'am trying to build minimal executable, but i can't, the main problem is 'unresolved external symbol _memcpy' main project options is /NODEFAULTLIB, enabled intrinsic-functions and changed entry-point to WinMainA here it my simple code which reproduce error: #include <windows.h> // Constants struct _TEST { char test1[256]; char *test2; int test3; }; // Main code void _test(_TEST *tst) { ZeroMemory(tst,sizeof(_TEST)); tst->test3=666; } int __stdcall WinMainA() { _TEST mmm; _test(&mmm); ExitProcess(mmm.test3); } ps. this code successfully compiled on msvs2002-2003, please, help me to solve this, thanks Are you talking about memcpy or memset ZeroMemory is a ma ...Show All

  • Visual Studio Tools for Office VSTO Outlook 2003 Add-in Deployment problems

    I've had a lovely little add-in now working on my machine for a while, and yet I haven't been able to deploy it successfully, not even on my own machine once. The program works absolutely perfectly on my machine when debugging and running through Visual Studio, but when deployment comes, the common error "Not loaded. A runtime error occurred during the loading of the COM Add-in" occurs. I've now created the simplest of simple add-ins, that simply display "HELLO WORLD" in an attempt to deploy that, to then further, deploy mine - still no look. The main blog I found which seemed to cover the most problems was http://weblogs.asp.net/mnissen/articles/427504.aspx I created the installer class that i read about ...Show All

  • Visual Studio Web Services.

    I am getting the following error: Unable to start debugging on the web server. The web server is not configured correctly. See help for common configuration errors. Running the web page outside of the debugger may provide further information. If I run the service outside the debugger, I get parsing errors. If I comment out (see below) the parts in the config file that are creating the errors, then I get the cannot find the application error. Does anybody know what is going on here ============================================================= < xml version="1.0" > <configuration> <!-- application specific settings --> <appSettings> <add key="DomainName&qu ...Show All

  • Visual Studio Tools for Office Export docx to doc compatible via VSTO

    If I generate docx programmatically via VSTO, is there any method call from VSTO library to export this docx into doc-compatibility for Office 2003 or XP Hi Rames There are a number of aspects to this question, and the exact scenario you have in mind isn't clear. Are you talking about VSTO 2005 SE - a Word Add-in Assuming that's the case, here are some thoughts to help guide you: 1. The Word object model provides the SaveAs method for documents. This method allows you to choose the file format for the document. Since the Word 2007 user could have any of multiple file formats set as the default, if you want to force a particular file format, you should provide a button in your Ribbon customization for saving that uses SaveAs. ...Show All

  • SQL Server transactions with select statements

    Hello everyone I need to have a transaction with a select statement like so trans = cn.beginTransaction Insert into order table an order record select unique order Id from order table insert record 1 into orderdetails using the orderid insert record 2 into orderdetails using the orderid commit trans I am of course experiencing record locking after my first insert. I cannot select records from the order table even though I need the inserted OrderId in order to insert into the orderitemst table. I have tried switching the isolation level to readuncomitted on my transaction but sp_who2 still shows a block even with the readUncomitted Isolation level. A foreign key on the orderitems table prevents me from ...Show All

  • Smart Device Development inplement edit box popup cut-copy-paste menu?

    In most PPC applications I've seen if you hold down the pointer on an edit box a menu with cut, copy, and paste appears. That's not happening in my app, I get the circle of dots around my pointer but nothng happens. How can I get this menu to appear Hi, The SHRecognizeGesture that you are using is the MFC wrapper defined in the CWnd class, so essentially the message passing etc done by this method shall be the same as the WM WinCE API call that I pointed out. Thanks. ...Show All

  • .NET Development NoNullAllowedException on an Identity column in SQL

    Hi I have created an SQL database with two columns the first is an identity. When I try inserting a new row I get a NoNullAllowedException on the identity column. DataRow newRow; newRow = infoDataSet.infoTable.NewRow(); //newRow[0] = [int]; as an identity column I am hoping this is autogenerated newRow[1] = "Any Text"; infoDataSet.infoTable.Rows.Add(newRow); // NoNullAllowedException occurs here! infoTableAdapter.Update(infoDataSet.infoTable); Any help appreciated - cheers Hi, You are trying to insert a null value in the identity column (and identity columns don't allow this kind of values). I'm not sure, but I think that if it is auto-generated (if you defined that in ...Show All

  • Visual Basic Visual Studio 2005 - VB Compiler crashing

    Visual Studio 2005 - VB Compiler crashing: Operating system: Windows Server 2003 SP 1 msvb7.dll version: 8.0.50727.73 Event Type: Error Event Source: Microsoft (R) Visual Basic Compiler Event Category: None Event ID: 1000 Date: 5/18/2006 Time: 10:05:16 PM User: N/A Computer: *** Description: Faulting application devenv.exe, version 8.0.50727.42, stamp 4333e699, faulting module ntdll.dll, version 5.2.3790.1830, stamp 424377d2, debug 0, fault address 0x000396d0. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Data: 0000: 41 00 70 00 70 00 6c 00 A.p.p.l. 0008: 69 00 63 00 61 00 74 00 ...Show All

  • Visual Studio 2008 (Pre-release) Required or optional fields.

    I have a data contract that looks like: private string _BasketIDField; [ DataMember (IsRequired= true )] public string BasketID { get { return this ._BasketIDField; } set { this ._BasketIDField = value ; } } But when I generated the proxy for the client I see: [System.Runtime.Serialization. OptionalFieldAttribute ()] private string BasketIDField; [System.Runtime.Serialization. DataMemberAttribute ()] public string BasketID { get { return this .BasketIDField; } set { this .BasketIDField = value ; } It seems that the "IsRequired" on the property is getting ignored. One other indication is that I get an exception ...Show All

  • Visual Studio Express Editions Sendkeys to a program

    I know how to use Sendkeys to send a key to the active program, But i want to know how i can send a key to a selected program, which isnt active. (for example notepad) i hope somebody knows the answer, and if you do, can i use it with multi program support (if there are more notepads open, so i can select which process) Thanks! Chris I'm unsure about this however I believe you would have to use the Win32 API to FindWindow and SetForeGroundWindow on the handle of the application you are after to send keystrokes to it. I think this could be the only way but do not quote me. you would need: SetForeGroundWindow FindWindow   API to do this.   http://www.pinvoke.net/default.aspx/user32/FindWindo ...Show All

©2008 Software Development Network