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

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

imj

Member List

Yudy
Neotech
kstus
DonOfMcLean
Jay Thomas
RobertKangas
Joe Morel - MSFT
hanozo
Davids Learning
Noorul Ahmed
yanivpinhas
Asaf W
tgbt
DNovak
say_2000
BBesser
C McQuade
David M. Parreira
raatey
Keithyboy1
Only Title

imj's Q&A profile

  • Software Development for Windows Vista Build error in Imapi2 sample

    I tried to build the sample in SDK ( build 5456.3.0) But, it shows an error, and I could not found the definition. \samples\winbase\storage\optical\imapi2sample\erase2event.h(30) : error C2065: 'DISPID_IDISCFORMAT2ERASEEVENTS_PROGRESS' VisualStudio 2005 shows error message. I built it under WindowsXP sp2 and Vista 5456. But the result was same.     Yes, we did a clean-up of our headers, resolving many naming inconsistencies. Unfortunately this was a breaking change and I apoligize for the problem it may cause. Hopefully the improved headers will be beneficial on the long term. ...Show All

  • Visual Studio How to stop the emulator screen from popping up?

    Im using VS2005 for the PPC. Every time i try to debug on the device, it pops up an emulator screen for no reason. Is there a way to stop this Thanks What if you set the actual device as the default for Device Tools Bring up the Tools | Options dialog, and expand the device tools. Pick Devices and then on the bottom right select your device as the default ...Show All

  • Gadgets A couple of flyout questions

    I know that the flyout can't fire unless the gadget has focus. I want to make a gadget launch a reminder at certain times, I have a less conveniant fallback method, but I'd prefer to get focus on the gadget first. Does anyone know of a workaround Secondly, is it possible to launch a flyout whilst keeping focus of an input box on the Gadget I want to use the flyout as a little helper window to aid the user input. Andy Use "focus()" to set focus, ie "self.focus()" to put focus on the current code, or "document. <id> .focus()" to set focus on an element. As you want to set focus back to the Gadget after opening the Flyout, add the following code to the end of your flyout.html: <script langu ...Show All

  • SQL Server Migration to SQL Server 2k5

    Hi all, I have script written in SQL Server 2000. When i tried to migrate to SQL Server 2005, it is working fine in the SQL Server 2005 installed in Windows 2003 Server . System tables(syscolumns, sysobjects etc)are created in "Database->Tables->SystemTable". But when i tried to run in SQL Server 2005 installed in Windows XP , I'm facing the following problems. 1."The object 'CK_SavedSear_LastL_4B422AD5' is dependent on column'LastLoadedTime' "ALTER TABLE DROP COLUMN LastLoadedTime failed because one or more objects access this column" 2.Moreover none of the tables had been created in "Database->Tables->SystemTable". In both XP and 2003 Server, While installing, i hav ...Show All

  • SQL Server Order of Deployment packages

    HI, I have a query regarding the order of deployed packages in SSIS (MSDB) I have four projects in my solution (SSIS) and i need to deploy and test them frequently, whenever i deploy them, they are deployed in no particular order what so ever. Even i created some folder in MSDB (for each project) but coudnt able to deploy project in its corresponding project . I have read something that you can do in it XML configuration manually but this does not solve my problem as I have to deploy them very frequently (it will be a hard task to change XML every time I deploy packages). Is there ne solution of it or MS has left this alone like this MS!!! it shud be, atleast if not more, in alphabetical order. Did I say ne thing wrong ...Show All

  • Visual Studio Express Editions Help with class templates

    help, I have a small project to try programming templates classes, BUT IT WILL NOT LINK. The linker complains of unresolved externals. Can anyone see what the problem is; I am darned if I can spot it. Thanks, Pat Pope the main program is :- #include "cBinTree.h" int _tmain( int argc, _TCHAR* argv[]) { cBinTree<cDataItem>* binTree = new cBinTree<cDataItem>; <<< PROBLEM HERE } *************************************************************************************************** AND BinTree is :- pragma once #include "cDataItem.h" #include "cBinTreeNode.h" #include "console.h" template < class T> class cBinT ...Show All

  • Windows Forms Right Justify Combobox.Text?

    I want to use a combox as an MRU dropdown, and want to display long filepaths. By default it left-justifies them, which means the least useful information is displayed. Is it possible to right-justify the text in both the Text and Items properties Or am I usiing the wrong thing Thanks, Anthony. First of all, it is bad GUI design to make your ComboBox too small to fit the text. You can use the DrawMode property and DrawItem event to customize the dropdown list appearance. But that won't work for the text box. Note that setting the RightToLeft property or turning on the WS_EX_RIGHT style doesn't give you what you need. I tried. ...Show All

  • Visual Studio Team System How do team projects relate to branches?

    Our development group would like to be able to use one main branch of code for multiple versions of our software and create branches for hotfixes etc. But we would like to be able to keep work items separate for each version. One question we have is can multiple team projects share one branch of code or do you have to create a new branch when you create a team project From what I'm reading about iterations, it looks like a version of our software can be considered an iteration and work items can be grouped by iterations. So we could have one team project for multiple versions of our software and group the work items by iterations. Is this true We want to use the CMMI process template, by the way. Thanks, Richard ...Show All

  • Visual Studio Express Editions Add numbers

    Hello all, I need my program to add nine numbers together and get the some. I am using this code: Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click TextBox2.Text = Txt1.Text + txt2.Text + txt3.Text + txt4.Text + txt5.Text + txt6.Text + txt7.Text + txt8.Text + txt9.Text TextBox2.Text = TextBox2.Text / 9 End Sub It is not doing what i need it to. Without deviding, lets say all of the numbers were 100, it would write 100 tons of times. How can i fix this Ok,   Now it has got the adding part down, but now the deviding part wont work. When i make it devide, the average ends up 150 for two 100's!   Edit:  ...Show All

  • SQL Server Error Locating Server/Instance Specified

    I am having a problem connecting to my sql server express instance from a remote computer. I continue to get the above mentioned error. If I connect for the localhost everything works fine however when I try to connect from a different computer on the LAN it gives me this error. I have turned on remote access and still no luck. Any ideas Any help would be appreciated. Odds are you haven't created exceptions in the firewall on the remote computer to allow SQL to communicate through it. Check out the complete instructions for enableing remote connections to SQL Express in the KB, http://support.microsoft.com/default.aspx scid=kb;EN-US;914277 . FYI - This info is in the FAQ at the top of the forum is you ...Show All

  • Visual C# c# method, event wizard

    Hi, am starting to work my way through a tutorial book, trying to learn C#. It tells me to run the C# Method Wizard, by right-clicking an existing Class in Class View and selecting Add > Add Method. There is no Add option in Visual Studio 2005 (which I am using). I have looked around for about an hour trying to locate the Method Wizard, but the help does not tell me anything more than it is there. Has this been rtemoved from Studio 2005 If not, how do I access it Not being able to find it is making following the tutorial very difficult. Thanks in advance ityu I too am learning C# and was relying on the Add Property Wizard being there to allow me complete an exercise. In the absence of said wizard, how ...Show All

  • Visual Studio Express Editions Text Editor

    Can a Console App be made into a text editor ...Show All

  • .NET Development <C:\DOCUME~1\32329\LOCALS~1\Temp\IXP000.TMP\bootstrap.exe>. Reason: C:\WINDOWS\system32\advpack.dll

    I am getting this error whenever i try to install MSN messenger . <C:\DOCUME~1\32329\LOCALS~1\Temp\IXP000.TMP\ Bootstrap.exe>. Reason: C:\WINDOWS\system32\advpack.dll I tried installing VBrun 6.0 for the latest version of advpack. dll , but still i am not able to install the messenger as it gives me the same error. can anyone help I get exactly the same message. Please can someone help me. If you reply to this desparate cry for help, assume that I have the computer skills of a young chimpanzee, who i am told can play pacman. ...Show All

  • Windows Forms Click Once Deployment

    Hi All, I am trying to deploy a application using click once but I am getting different errors. When I publish the application is it published successfully but when I try to install I am getting errors. One time I am getting "404 Server not found" and next time I am getting "applicationname.config.exe not found". I could not understand why that is happening Basically what i did was I published the application once and deployed successfully after some day I deleted the key which was generated when I publish it using click once and later I tried to publish and deploy the application again I got error during the deployment. Could any one guess what might me the problem why that private key is generated ...Show All

  • Visual Studio Express Editions HELP PLZ!! WIF PICS@

    What Should I write It appears that the value of the textbox has nothing in it, therefore it cant cast the value to an integer hence you get the exception thrown   always check your inputs before proceeding otherwise these things will happen. So, check your inputs, make sure there is an integer value in there (check each char by using something like Char.IsDigit) and continue on with the for loop.   ...Show All

©2008 Software Development Network