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

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

i3tech

Member List

Harish1
scompa
UncleSam89
Yasir Imran
mccpres
Benedikt
rivi
brottmayer
vtortola
Joshizzle
bryansp
Xi0N
Billr17
GRK
Esp_99
Peter paterson
whitie
Rajnesh
Allah Is Here
Michael McBryde
Only Title

i3tech's Q&A profile

  • Software Development for Windows Vista Error when saving the workflow in MS Office Sharepoint designer 12

    Hi, I am trying to design a simple workflow in MS Office SharePoint Designer(frontpage) 12 that will send a mail to user B on completion of the task by user A. But I am getting an error saying " Errors were found when compiling the workflow.The workflow files were saved but cannot be run ." In the detailed description of the error it says " Unexpected error on server associating the workflow" . I am not able to find where the workflow is getting saved also. Please let me know if anyone has faced such problems and the fix for it.I need to find an solution fast for this problem Thanks in advance. Mubeen The problem is probably related to a bad reference in the “ ...Show All

  • Architecture Xml string compression?

    Looking for a way to compress a huge xml string. Xceedsoft has a compression library but should we really buy it just for that. Any suggestions will be appreciated. Thanks, Sailu Regarding Pranshu suggestion, you have in .NET 2.0 a new API exclusively for compressing/decompressing streams System.IO.Compression Namespace Hope it helps ...Show All

  • Visual Studio Tools for Office Bug Caching Non-DataSet objects in ServerDocument???

    Is there a bug with caching objects that are not DataSets in Office 2k3 docs Although the examples state that anything xml-serializable can be cached using the "Cached()" attribute, I have had no luck trying to cache a simple string in a Word doc. My code in ThisDocument.cs is something like: public partial class ThisDocument {     string id = string .Empty;     [Microsoft.VisualStudio.Tools.Applications.Runtime.Cached()]     public string ID     {         get { return id; }         set { id = value; }     }   I used to just have a public string that I left null but when I did that the cach ...Show All

  • Smart Device Development exception thrown from InitializeComponent

    Hi All, I would like to ask if anyone has ever come across the same things. There is a file that is being deployed (VS properties: content) with the system. I would expect the system MAY fail after InitializeComponent given if there are anything wrong with the file. Or at least, when we start doing something with the file. However, this time, my system fail and throw System.ArgumentException from InitializeComponent() everytime if the file is not being deployed (VS properties: none). Strangely enough, it run successfully if I put System.Threading.Thread.Sleep (500) just before InitializeComponent. I make sure it is failed from InitializeComponent by putting a breakline in before and after the function and also use try ..catch. ...Show All

  • Windows Forms How can i get and set the value of a column from a TableAdapter, BindingSource, BindingNavigator

    How can i get and set the value of a column from a TableAdapter, BindingSource, BindingNavigator Alex Hi Alex, If you are using TableAdapters then you also have a backing DataSet. The easiest way to get or set a particular column value is through the DataSet. The following example changes a column on the Customers table in a Northwind database: Dim customersTableAdapter As New NorthwindDataSetTableAdapters.CustomersTableAdapter() Dim myDataSet As New NorthwindDataSet() customersTableAdapter.Fill(myDataSet.Customers) myDataSet.Customers(0).City = "New York" customersTableAdapter.Update(myDataSet) ' Have to call update to send the column change back to the da ...Show All

  • Visual Studio Team System Global Lists & Default Values

    I am using the Process Template Editor to customise some work items. I have run into a problem with defining Global Lists and Default Values and am not sure whether this is a problem with the PTE or Global Lists. Is it possible to define a default value for a field where the value is tucked away in a Global List My XML for the field wants to be something like: <FIELD name="Priority" refname="Microsoft.VSTS.Common.Priority" type="Integer" reportable="dimension"> <HELPTEXT>Priority for addressing the risk.</HELPTEXT> <REQUIRED /> <ALLOWEDVALUES> <GLOBALLIST name="Priorities" /> </ALLOWEDVALUES> <DEFAULT from=& ...Show All

  • Visual Basic Correct way to deploy Assemblies?

    Hope I am posting in the correct spot. I have built 2 DLL's in VB.NET2K5. I have multiple projects that refer to these assemblies (Specific Version & NOT local). I built a setup project to install my assemblies -> GAC After I deploy my Assemblies, I deploy one of my projects. Both install no problem. When I try to run my EXE that was installed, I get a runtime exception of "InvalidOperationException". My question is, what is the correct way to deploy an assembly(s) to another machine, so that the assembly does not have to be a local copy/specific version Kevin My deployed application doesn't give me that option. This is what I get; ".....application has encountered a problem an ...Show All

  • Visual Studio Express Editions Button Code

    Hi All. I am new to Visual Basic and I need code for a button to upload an image from my hard drive to a table and display the image in a form. The links you provided, from first glance appear to have the answer I'm looking for. I will let you know of any problems I may have. ...Show All

  • Visual Basic clean solution

    Where can I find a discussion of clean solution Exactly what it does, etc. I haven't found any dox on it. To build, rebuild, or clean an entire solution In Solution Explorer, select or open the desired solution. On the Build menu, choose Build Solution , Rebuild Solution , or Clean Solution . Choose Build or Build Solution to compile only those project files and components that have changed since the last build. Note The Build command becomes Build Solution when a solution includes more than one project. Choose Rebuild Solution to "clean" the solution first, and then build all project files and components. Choose Clean Solution to delete any intermedi ...Show All

  • SQL Server Distributed Transaction

    Hi again, I do not know when to use Distributed Transaction. Would you please give an example about its usage or give a tutorials about this Thanks joeydj , Indeed thanks very much for your really explanatory reply. And yes, I finally kept the idea about distibuted transactions however I have still some questions to you. The advantages of using distibuted transactions is that it provide programmers to utilize from the ACID properties even if programmers use datas from different Servers. So, my question is that what happen if we do this operation(using data from different servers) with local transactions (with only one transactions ) Does this create any error In my opinion; if we attempt to use l ...Show All

  • Visual C# How to send data to a field in explorer?

    Hello, I am building an application that works alongside explorer. The application generates some data that I then need to enter into som text fields on an explorer page. The application itself is currently in c# but this element could be rewritten in a different language. I am currently using Sendkeys but this relies on the windo having the focus, which I can;t guarentee, so I woudl like to find a way of sending data directly to a field. Any advice or hellp woudl be greatly appreciated. Steve Many Thanks, I will consider that as an option, but if I actually want to keep the browser seperate from my application, are you aware of anyway of achieving this Steve ...Show All

  • Visual Studio Express Editions printing RTB

    How do i get my application to print the contents of the RTB , does any 1 have the code ‘ Posted by Nobugz ‘ http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1044135&SiteID=1 Imports System Imports System.Text Imports System.Drawing.Printing Imports System.Windows.Forms Imports System.Runtime.InteropServices Public Class RichTextBoxPrinter '--- P/Invoke declarations <StructLayout(LayoutKind.Sequential)> _ private structure CHARRANGE Public cpMin As Integer Public cpMax As Integer End Structure <StructLayout(LayoutKind.Sequential)> _ Private Structure RECT Public Left As Integer Public Top As Integer Public Right As Integer Public Bottom As Integer End Structu ...Show All

  • SQL Server how to writethis

    Hello, I have MyTable with ID, IsYesNo fields ID is duplicated so I need perform select on MyTable with the following conditions: 1. Select all the ID distinct where IsYesNo=’Yes’ first 2. Then select all the ID distinct where IsYesNo=’No’ if ID is not in the first selection Combine these two and return the result hi jim...do u mean that u can have an id multiple times....and an id can can both yes and no values...now i think u want to display the ids with 'YES' first and then the IDs with 'NO' (i.e excluding the id's in 'YES') in one query...if this is what u want.. SELECT distinct ID FROM YourTable WHERE IsYesNo=’Yes’ UNION ALL Select Distinct ID from Table Where IsYesNo=’No’ And Id is Not in (Select ID fr ...Show All

  • Software Development for Windows Vista using components and library inside a driver

    Hi guys, just another question: I read it is not possible to create a driver in C# (for example) because it is necessary to work with unmanaged code. Fair enough. But is it possible to recall a DLL or a library developed with C# inside a driver I mean, driver in C and it invokes some functions which are in a DLL/library written in C#... hope to hear from you soon, Gianluca. " "Gianluca Colucci"@discussions.microsoft.com " < "= UTF-8 B R2lhbmx1Y2EgQ29sdWNjaQ== ="@discussions.microsoft.com > wrote in message news:f9667a06-1d2a-4dc5-93df-aaa336247c14@discussions.microsoft.com ... Hi guys, just another question: I read it is not possible to create a dri ...Show All

  • Visual Studio Express Editions Visual Basic 2005 connect to remote db error [StrClr)

    I am having an error when trying to connect to a remote database. CODE: Dim connectStringBuilder As New SqlConnectionStringBuilder() connectStringBuilder.DataSource = "****" connectStringBuilder.InitialCatalog = "***" connectStringBuilder.IntegratedSecurity = True connectStringBuilder.UserInstance = True connectStringBuilder.UserID = "***" connectStringBuilder.Password = "***" connectStringBuilder.ConnectTimeout = 15 connectStringBuilder.ContextConnection = True Dim myConnection As SqlConnection = New SqlConnection(connectStringBuilder.ConnectionString) myConnection.Open() My error occurs with my Dim myConnection... line. Any help is appreciated. [ERROR] Th ...Show All

©2008 Software Development Network