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

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

Shazen

Member List

imj
Mystagogue
Sukanya
GunaChinna
Jim Hough
Khass
ajcanable
OmidQRose
RADIOGENERIS
Morely
psylencio
Jeff Lautenschlager
simon burgess
Roland D
TheGreenGenie
dagfari
Aknght
SDruelinger
Dottj
Thomas Greenleaf
Only Title

Shazen's Q&A profile

  • Windows Live Developer Forums HELP - How do I submit an activity? actiivity website seems to be down

    Hi I need to submit an activity for approval. Following the guidelines on http://msdn.microsoft.com/library/default.asp url=/library/en-us/messengerp2p/techref/process/overview.asp it says i should go to http://activity.msn.com and submit my activity. But http://activity.msn.com is down. Any help will be appreciated. Willem We'll have to get that updated. The new page for submitting activity applications is http://gallery.live.com under Messenger. Cheers, Todd Biggs, Windows Live ...Show All

  • Visual Studio Tools for Office VSTO 2007 Data Architecture Question

    from an architectural point of view, is it possible for me to develop an application using Outlook 2007 as the UI, but to store all the data from my custom form regions inside a third party database. in this scenario, i would not be creating any Outlook message items and would not be saving them to the default data store. I would create a dummy MAPIFolder to allow me to insert a custom NavigationItem. But when users searched on this folder or requested a View from it, I would be searching directly on the database. is this feasible, and is this an approved way to do things thanks. hi - please let me rephrase this post in case it was confusing. my aim was to use Outlook 2007 purely as a UI. i wa ...Show All

  • Smart Device Development textbox

    i try to compare value in textbox, it doesnt return null when it i did not key in anything. what is wrong with my textbox Probably nothing, it just has empty string in it, not null. ...Show All

  • Visual C++ About data type in vc++

    I got following data type define in MSDN. Is there any difference between DWORD and SIZE_T typedef unsigned long DWORD; typedef ULONG_PTR SIZE_T ; #if defined(_WIN64) typedef unsigned __int64 ULONG_PTR; #else typedef unsigned long ULONG_PTR; #endif For such numerical conversions, static_cast is the way to go, such as static_cast<DWORD>(someSizeT); Note, however, that the DWORD can not hold values as large as the size_t on x64. ...Show All

  • Visual Studio Express Editions Publishing A Program? And Adding Settings that can be saved?

    Can i publish the program to my C drive then upload it to my website... but then make it so there is a link on the website to update the program I would also like to know how to make it possable for the user of my program to save there own personal settings like the background color of a form... i mean like putting a check box that when checked changes the background blue... but allowing the user to click a button after checking the box to make it so everytime the app is ran the background is blue... ...Show All

  • .NET Development Calling C# webservice from Visual C++ 6 using SOAP

    Iam trying to call a C# DotNet 2003 webservice from Visual C++ 6 app (used win32 console, mfc, atl_mfc dll) using Soap toolkit 3. The webservice takes a String input parameter and returns a String. The input parameter I pass through C++ is always recieved as NULL in C# webservice while the output is working fine and it is returned back in C++. I have even tried with wsp wizard using atl_mfc dll and vb GUI but input always failed. It didn't give any error either. It will give an error when I output, input parameter as it is without appending to a string, then it will say Invalid pointer error in C++ app. Plz anybody can help in this regard. A bundle of thanks. My C# webservice code is as, it is a simple ASP.NET web service generated thro ...Show All

  • Visual Studio Crystal reports and .net

    I am trying to create a .net app to run a crystal report and keep receiving an error when I try to login into the report. My crystal report is already created and is using a stored procedure that is run on a SQL server. I am attaching my code and the error that I receive when debugging. Any help would be appreciated. Imports System.ComponentModel Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.Shared Imports Everbank.Utility Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the Initiali ...Show All

  • Visual Studio Tools for Office MS Office add-in with licensed components

    Hi I wonder if I can write a MS Office add-in with VSTO that uses some third part licensed components. How the licenses will be "transfered" to the executing process (e.g. Outlook.exe) Can I use licensed components in my add-in or I have to use only the components that are shipped with Visual Studio (For example I've tried it with TxTextControl and is not working). First of all I'd like to thank you for your answer. I know that if the licenses are only in the licenses.licx of a dll that uses the third-party component and not in the licenses.licx of exe (that calls this dll) then third-party component is not working. I think that this is fair enough because third-party vendors do not want someone ...Show All

  • Windows Forms .net 2.0 programmatically add a row in datagridview

    Hello, I display all the data in a datagridview programmatically. The grid is non editable. When I click on a ADD button, it will dynamically add a ROW. The question is that : - how can I move the current record pointer to the new added row - how can I allow the new row for editing but other can't Please give me a hand and very thanks. Best regards, Eric how do you mean "move the current record pointer" you could select it for example: this.theDataGridView.Rows[this.theDataGridView.Rows.Count].Selected = true; in regards to allowing the new row for editing, im not sure but looking through the properties of a row, perhaps make the "Frozen" or the R ...Show All

  • Visual Studio Tools for Office Cannot publish even the simplest Word solution

    Hello all, I have a problem publishing in VSTO 2005. No matter what I do, I keep getting the same error message when I open up the published Word doc. The error message is: "The current .NET security policy does not permit the customization to run. Do not change the security policy in your computer. The .NET security policy is controlled by your administrator or the developer who wrote the customization. You can still edit and save the document. Contact your administrator or the author of this document for further assistance." I get this error message whether I'm creating an actual Word solution (such as following one of the Walkthroughs), or just creating a simple one with no actual code. For example, here are the exact steps I ...Show All

  • SQL Server loop to run 'Create Trigger' script?

    I need to run a script to create a trigger on 18 tables on 3 databases. The code is identical with the exception of the table and trigger names at the beginning. Does anyone know of a way to create them all with a loop instead of manually replacing the table and trigger names and executing over and over I tried variables but get an 'Incorrect syntax near '@TriggerName' error. if exists (select * from sysobjects where id = object_id ( N'dbo.tgUsersAudit' ) and objectproperty (id, N'IsTrigger') = 1) drop trigger dbo.tgUsersAudit go CREATE TRIGGER tgUsersAudit on tblUsers FOR insert, update, delete AS DECLARE @TableName varchar(128) SET @TableName = tblUsers ..................from here the code is the same for all ...Show All

  • Visual Basic Coding Listbox Puzzle

    I want to display a list of employees (by employee number) that have performance results >90 in certain jobs. some employees may appear more than once on the list. I need a good solution that will indicate who is the top performer - who appears most. I'm thinking about using a list box and add emp# to the list - how do I figure out which emp # appears most on the list I didn't want to use a database.... any ideas, codes on using a listbox There are over 30,000 emp #. Job transactions may be in the millions. Thanks. There's always a hashtable. I feel you'd be much better doing this out of a database though, select the data you want and then display it, rather than selecting all ...Show All

  • Visual C++ breakpoints and watches in un/managed c++/cli mixed code

    I'm adding managed c++ (c++/cli) code to a mostly unmanaged project and I'm finding that I cannot put any breakpoints in the managed portions and that watches don't return any useful information. Is this a feature, or is there a workround TIA Nope, has no effect. It doesn't seem to matter whether I set the debugger type to mixed, managed only, native only or auto; it only and always breaks in native code. The project has no clr support, while the managed cpp module has /clr set. By the same token I only get intellisense in native code, it's like the olden days of coding with a separate text editor and compiling at the command line, but not in a good way. ...Show All

  • Visual Studio 2008 (Pre-release) TreeViewItem width to fit control & transformation

    Hi! 1)Is there any way to set TreeViewItem width in such way that they fit eaxactly all free space in the TreeView. (smth like items in listbox) I cannot manually set it in code because treeview width is defined automatically. 2) How can i apply transformations only to the treeview item and not to its child elemwnts (All effects are applied at node expansion, i tried to set RenderTransform of child elements to null but it didn't help) Or maybe i can perform all transformations before node is expanded but just after + button is clicked but i didn't find necessery event Thank you 1.you can try one of the following < DataTemplate x:Key = " dt2 " > < TextBlock Text = " {Bind ...Show All

  • Visual Studio 2008 (Pre-release) Can't use attached properties inside a DataTemplate

    I have the following DataTemplate defined, and I'm trying to set the "Offset" attached property that is found on my SlotItemPanel: <DataTemplate DataType="{x:Type tll:TimelineEvent}"> <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" Background="BlanchedAlmond" tlc:SlotItemPanel.Offset="25" > <Rectangle Width="{Binding DatePixelRange}" Height="10" Fill="Red" Margin="10 0 10 0" RadiusX="10" RadiusY="10" /> <TextBlock Text="{Binding DateAsString}" VerticalAlignment="Center" FontStyle="Italic" FontSize="12 ...Show All

©2008 Software Development Network