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

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

Jusedawg

Member List

Nisa
Onslaught_2000
Oren Solomon
Rich Wood
Xie Guangzhuang
yxq
Stunt
Lin Liu Jian
Marek Istvanek
RizwanSharp
Rozee
Ronaldlee Ejalu
kiran1234
Hans L
windoze
MtEvans
Lejing
syhzaidi
andypai
ifaber
Only Title

Jusedawg's Q&A profile

  • Visual Studio Tools for Office Developing for both 2003 & 2007 with VSTO 2005 SE

    Okay, maybe this is a stunned question, but I want to make sure I'm crystal clear before I head too far down the wrong path. I did a search, and I understand all but one thing... I want to make an add-in for both Outlook 2003 and Outlook 2007. I *do* understand that the best (only ) approach is to make a "stub" add-in for 2003 and another "stub" for 2007, and have them each call into common assemblies. No problem there. On my development machine, I have Office 2007 installed. That means I don't have the Office 2003 PIAs (since you can't have both Outlooks installed at once). So if I make a new VSTO 2005SE project for an Outlook 2003 add-in, it obviously bitches that it can't find the Office 2003 PIAs. My question is: is ...Show All

  • SQL Server file corrupted message on query of restored db

    The analysis services database is operational on original server where it was processed. I backed it up and restored backup on another machine, and it fails to display data with message like this: The query could not be processed: o File system error: The following file is corrupted: Physical file: \\ \F:\MSOLAPDATA\mycube.24.db\cubedev.119.cub\datafacts19.172.det\cubedev.67.prt.fact.data. Logical file . I tried the backup 2 times - both in compressed mode. When uncompressed the database takes up 70GB. can anyone suggest what might be the reason for this The datbase works fine when I query it on the original server. Both machines have the same version of SQL 2005 - SP2 Dec CTP. Looks like unfortunately ...Show All

  • Visual Basic KeyDown Event

    I have what I'm sure is a simple problem..... I'm using MS Environment 2003 V 7.xxxx I have a windows form (PartFunctions) that I use as a menu. I have placed 4 buttons on the form so the user can select one of the options and open 1 of 4 forms. I also placed another button at the bottom of the form to allow the user to Exit this form. I want to allow the user to Click the buttons or use the keyboard to access any of these buttons. The problem I'm having is, once I added the buttons to the form, the PartFunctions.keyDown event is not being triggered. If I don't have the buttons on the form that event does get triggered. Any ideas Private Sub PartFunctions_KeyDown( ByVal sender As Object , ByVal e As ...Show All

  • Visual Studio 2008 (Pre-release) Porblem with Certificate validation

    Hi i have a service and client that uses certificate to validate the identity. when the client takes to the service i get the following error at the service side. The X.509 certificate CN=www.fabrikam.com, O=Fabrikam, L=Redmond, S=Washington, C=US chain building failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. The revocation function was unable to check revocation because the revocation server was offline. My Client App file is <endpoint address=" http://localhost:8000/Bancassurance/Authentication/Service " binding="wsFederationHttpBinding" bindingConfiguration="WSFederationHttpBinding_IAuthen ...Show All

  • Visual Studio 2008 (Pre-release) How do I access child ui elements of a ListBoxItem

    Is it possible to get the child UIElements from a ListBoxItem created via a DataTemplate The Context property in this case is set to the bounded data object. Hi Cheesenhomer, I made a sample with what I was trying to explain. My thoughts were pretty accurate for ListBox, but ListView is a little different. In a ListBox scenario, if you want to switch the DataTemplate of a particular data item, you could do the following: ListBoxItem lbi = (ListBoxItem)(lb.ItemContainerGenerator.ContainerFromItem(redmond)); lbi.ContentTemplate = (DataTemplate)(this.Resources["nameTemplate2"]); First I used the ItemContainerGenerator to get the the ListBoxItem that wraps that data ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. myFirstGame sprite flicker - anyone else?

    i completed the first tutorial to make a sprite bounce around the screen. My sprite is 2kb at 87x61 pixels. Tutorial said to use a small sprite ... maybe that's a relative term, but i'd call that small. When my sprite moves around the screen, it looks like my computer is thinking really hard about redrawing it. i get a very noticeable flicker as it cruises around. Does anyone else have this problem i don't know what specs to feed you ... i'm running a dual-core system w/ 2GB RAM and a ATI X1300 vid card that has 256MB memory. i didn't think pushing a 2k image would bring it to its knees ( ) - MrSock i'm using a jpg - docs said that should be ok. i'd like to try using that SynchronizeWithVertic ...Show All

  • Visual C++ Problem with duplication function

    Hi, I know that this is probably fairly easy to answer (I suspect a pointer problem), but here it goes: I am currently working on an application that requires a function to duplicate a 'resource' (one of several types of objects) and give it its own spot on a resource tree. I had thought that I had completed this function long ago until the point came when I began to create dialog boxes for editing the resource properties. I have now discovered that both the resource and the duplication point to the same address and constantly sync all values with one another. I am a bit rusty on my pointer usage, I admit. Here is my current code: template<class type> void DuplicateResource(HWND hwnd,int message,vector<type> &container,HTRE ...Show All

  • Visual Basic Can you make a installer?

    Can you make your own install in visual basic so that i can install my program and a have a eula show so its is easy for users. thank you. ...Show All

  • Windows Forms listview activate row event in user control

    Hi all, i created a user control that contains a listview and i will use the activate event of the listview to do different things based on the windowsform that the user control in it..... the problem that the listview events doesn't appear in the user control when when it is on a form ....... so is there a solution for this thx Let's suppose that when designing your user control, you added a ListView control named listView1. Now, listView1 is a private member and all its properties and events are hidden. To make it available at runtime to the user of the form, all you need to do is add a public property to your custom control that returns the listview control to the user so he/you can attach event handlers to its events ...Show All

  • .NET Development Trouble serializing an exception to XML

    I have a try/catch block in my code and I am attempting to serialize an exception into XML so that I can store it nicely in a database if I so choose. I am running into a problem though... In my Catch block I try to get the XML for the exception (ex), but I receive an error when I try to pass in an exception. (snippet from Catch block) sXmlString = FetchXml(ex, ex.GetType()) Public Function FetchXml( ByVal InObject As Object , ByVal InType As Type) As String Dim oSerial As New XmlSerializer(InType) 'ERRORS OUT HERE Dim oText As New XmlTextWriter( New MemoryStream, UTF8) Dim sXml As String Dim oStream As MemoryStream oText.Formatting = Formatting.Indented oSerial.Serializ ...Show All

  • Visual Studio 2008 (Pre-release) ListView with scrollbars inside StackPanel

    Hi all, I've got a problem which, I hope, can be illustrated with this code (pastable to XamlPad): <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="WindowsApplication1"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="1*" /> <RowDefinition Height="Auto" /> <RowDefinition Height="1*" /> </Grid.RowDefinitions> <StackPanel> <ListView> <ListViewItem>abc</ListViewItem> <ListViewItem>abc</ListViewItem> <ListViewItem>abc</ListViewItem> <ListViewItem>abc</ListViewItem> ...Show All

  • Visual Studio Team System I need help in implementing this rules in my FxCop project

    Hi, In my FxCop project I need to implement the following rules, a. All Classes should be static. b. Initializing of Empty dataset should be avoided can anyone help me in implementing this rule. Thanks in advance Venki for point a, I tried the following public override ProblemCollection Check( TypeNode typeNode) { if (!typeNode.IsStatic) { //class is not static but this always returns true. For testing I used a class for e.g like public class MyTestClass { public void RunMe() { } } regards Venki ...Show All

  • Visual C# Change Service Logon information programatically?

    Hello, I need my C# application to modify the Logon settings for a particular Service. To clarify, I don't need help with installing a C# Service, I just need help in changing the Logon credentials once the service is installed. There must be a way, I just can't seem to find it anywhere... ServiceController does not seem to have any hooks to this info. I am simply trying to mimic the same functionality as: Control Panel->AdminTools->Services....Right-Click Service, Click on LogOn tab, change Credentials. Any suggestions would be greatly appreciated! Jason ChangeServiceConfig should do it. http://windowssdk.msdn.microsoft.com/en-us/library/ms681987.aspx http://pinvoke.net/default ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Direct X10 and Vista - Compatibility

    Simple question, will Direct X10 only be compatible with Vista theAntiELVIS wrote: That being the case, DX9 will certainly run under Vista. DX10 will operate on XP in a "fallback" mode, similar to how DX9 operates on older DX8 cards. You won't get all the new features. And if the game developer didn't make allowances for this scenario, their game probably WON'T run under XP. -tAE- I am sorry but this is not true. Direct3D 10 has no concept of a “Fallback” mode. The Direct3D 10 runtime needs a Direct3D 10 driver that is based on WDDM. WDDM is only supported by Windows Vista. If you want to write a game that supports Shader Model 4 and the older models too you have to write code for Direct3D 9 and Dire ...Show All

  • SQL Server Using Stored Procedures

    Hi, I am trying to use this stored procedure for the report. My problem is when I run the procedure I see all the columns but when I click on the [+] next to my dataset, it does not show any fields in it. Please tell me what am I doing wrong and how can I fix this problem Thanks, -Rohit You can try to update you DataSet. You should go to Data tab and click on standart refresh button (you can find it right near dataset dropdown box). If your SP has any parameters you will get window where you should type some value for it. After this procedure you will definitely see you fields. ...Show All

©2008 Software Development Network