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

Software Development Network >> Fanny Tejera's Q&A profile

Fanny Tejera

Member List

aaraaayen
wadnerk
versace582
Biju S Melayil
canadian_coder
Dirty Steve
Shadoware Technologies
bobygeorge
PareshGheewala
Fergnab
Dennis Lackey
Forscius
jitendra badkas
GiovanniP
chakravarthy_b
JFoushee
zille
MunishGupta
Burrough
Andrew Mackie
Only Title

Fanny Tejera's Q&A profile

  • Windows Forms how to increase row height of listview

    hi, In a listview can we change the height of row Actually i am having a listview having 2 column.. if the data in database is larger then the width specified then that data should appear on the another line... so can we manage row height dynamically... all helps will be appreciated... thnx in advance... The height of a listview item is entirely controlled by the listview's Font property. You can't have multiple lines in an item unless you use custom drawing with OwnerDraw/DrawItem. Using a font half the size of the listview's Font in DrawItem gives you enough space for two lines. You can't adjust the height for each individual item. Consider a commercial grid control if you can't li ...Show All

  • Visual Studio 2008 (Pre-release) Clipboard Problem

    Hi there I seem te be having a problem when placing images on the clipboard. It only seems to be a problem when the code is executed on a Virtual PC and I suspect it has something to do with graphics memory, but I am not sure, and I was hoping that perhaps someone will know of a better way to accomplish this. Here is some info on the app. We have an avalon design canvas on which all kinds of objects are placed. Later on the user can then select an area of this design canvas and "grab" a bitmap image of the selection. This bitmap image is placed on the clipboard from where it can be pasted into other applications as normal images. Here is the code that takes, as input, a FrameworkElement, makes a bitmap out of it an retur ...Show All

  • .NET Development system clock date/time change event?

    I have a .net windows service that needs to be aware of any changes made to the system clock. the solution proposed was that I create a hidden form that would listen for the WM_TIMECHANGE event. but this seems like a kludge.. Is there a better event that I can establish a handler for I'm pretty sure there isn't. The WM_TIMECHANGE message is a voluntary notification, to be sent by the app that changes the clock. Most of all, if there was a hook, the framework would surely use it. Perhaps running the service under the Local System account, allowing it to interact with the desktop might work... ...Show All

  • Visual C# Problem regarding displaying the £ sign in a win32 console application

    Hi, I'm trying to write what is really a very simple program, and am running into a stumbling block in regards to character output.   when I type theline:      'cout << "£";'   it displays in the console window after compilation as:      'u'   I was hoping someone could perhaps tell me why this happens, and suggest a solution   I've been scouting around online, and to my surprise found really very little information on how to do deal with this issue.   Thx It works fine in C#: namespace ConsoleApplication2 { class Program { static void Main( string [] args) { Console.WriteLine(" ...Show All

  • SQL Server CLR User Defined Aggregate Function

    I am trying to modify the C# example given in the "Invoking CLR User-Defined Aggregate Functions" in SQL Server 2005 Books Online. I want to add a parameter that is used as the list delimeter, instead of the hard coded comma that is used. I am not a C# programmer and don't know where to begin. Please help! using System; using System.Data; using Microsoft.SqlServer.Server; using System.Data.SqlTypes; using System.IO; using System.Text; [Serializable] [SqlUserDefinedAggregate( Format.UserDefined, //use clr serialization to serialize the intermediate result IsInvariantToNulls = true, //optimizer property IsInvariantToDuplicates = false, //optimizer property IsInvariantToOrder = false, //optimizer property MaxByteSize = 800 ...Show All

  • Visual Studio Team System How to run a web test from VSTS command prompt which has a custom validation rule

    Hi, I've a webtest that needs to be run from the command prompt. This web test is using a custom validation rule to check for redirections of the URL as described in blog. http://blogs.msdn.com/joshch/archive/2005/11/02/488398.aspx The web test and the validation rule works well when I run it from inside the VS. but when I run the same from the command prompt, it gives me an error: Microsoft.VisualStudio.TestTools.WebTesting.WebTestException: Could not create instance of rule class 'URLValidator' :Could not load file or assembly '21Aug, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. Also tried copying the Webtest and the URLValidator class file on ...Show All

  • Windows Forms how to add Uninstall link in startup menu

    Hi, In setup and deployment project, how to add uninstall link in startup menu Thanks in advance Regards Nataraj.C Hi all, I found the solution to the above problem. I create one uninstall.bat file and add it to the shortcut.Now its working fine.But while un installing it displaying the command window in the back. How to avoid this Thanks and Regards Nataraj.C ...Show All

  • Software Development for Windows Vista Where to create workflow runtime

    Asp.net host One method is create it in Application_Start and keep the reference in the Application Object System.Workflow.Runtime.WorkflowRuntime workflowRuntime = new System.Workflow.Runtime.WorkflowRuntime("WorkflowRuntime"); Application["WorkflowRuntime"] = workflowRuntime; another is use web.config module section and get the reference by below code WorkflowRuntime wr = WorkflowWebRequestContext.Current.WorkflowRuntime; what's the difference which prefer Lezi, The WorkflowWebRequestContext class was removed after Beta2, so that's not an option anymore. You can see the details on the Beta 2.2 changes document. The option of creating the WorkflowRuntime from your Application_Star ...Show All

  • Visual Studio IDE does not run

    Visual Studio 2005 Professional was running fine on my machine. Then I downloaded and installed evaluation versions of 2 different antivirus programs, uninstalling the one before installing the other. Now Visual Studio does not run. I have uninstalled all antivirus software, and uninstalled and re-installed Visual Studio. The installation goes smoothly. MSDN installed from the CD works fine. When I try to start Visual Studio, the splash screen displays for about 1 second, then disappears. There's a small amount of disk action, then nothing. Is there any documentation of the startup procedure that Visual Studio goes through as it loads It would be helpful if I knew what files it was trying to access and what scripts it was trying to run. ...Show All

  • Smart Device Development Pocket PC Installer

    You'll need a .inf file to go with your custom action for your install program. I googled "pocket pc install custom action icon" and the first result was: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/netcfdeployment.asp which has some really nice tips. In the project properties you'll need to assosciate a new icon with it, and your .inf file will specify where to create shortcuts.. here is an example .inf file i used to deploy my WM5 C# app (with some web-safe alterations): [Version] Signature="$Windows NT$" Provider="Me" CESignature="$Windows CE$" [CEStrings] AppName="MyMobileApp" InstallDir=%CE1%\%AppName% [Strings] Manufacturer="Me" [CEDevice] ...Show All

  • Visual Basic show the particular record when click on a DataGridView control

    Hi, I want to show the particular record when I click on a DataGridView control. I have the ID of the record which works, but I can not figure out how to show the form for that record (the Details.Show line). I tried 'Details("ID") .Show' but I got an error "can not index because there is no defualt property". Thanks in advance for your help. Private Sub PropDataGridView_CellDoubleClick( ByVal sender As Object , ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles PropDataGridView.CellDoubleClick Dim Row As DataGridViewRow = PropDataGridView.SelectedRows(0) Dim ID As Integer = CInt (Row.Cells( "ID" ).Value) Details("ID").Show() End Sub is ...Show All

  • Visual Studio Windows Media Player

    I don't know anything about visual but everytime I start my Window media playerit opens fine then when i try to play a dvd it gives me an error saying : << AN unhandled win32 exception occurred in wmplayer.exe [3696]. Just-In-Time debugging this exception failed with the following error: No installed debugger has Just-In-Time debugging enabled. In Visual Studio, Just In Time debugging can be enabled from Tools/option/debugging/Just In time.>> Now I dont hav Visual Studio so I dont know how to fix this so I downloaded Visual Studio to see if I could do it but still can't PLEASE HELP Thank You Mike In wmplayer go to the options menu > dvd > advanced and enable the decoders for the filetype ...Show All

  • Windows Live Developer Forums org.apache.axis.ConfigurationException: java.lang.IllegalStateException: can't declare any more prefixes in this context

    hi, when iam acceesiing msn search api using axis api in tomcat iam getting the following exception.can anyone help org.apache.axis.ConfigurationException: java.lang.IllegalStateException: can't declare any more prefixes in this context java.lang.IllegalStateException: can't declare any more prefixes in this context at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:524) at org.apache.crimson.parser.Parser2.parse(Parser2.java:305) at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442) at org.apache.crimson.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:185) at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:369) at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:3 ...Show All

  • SQL Server Full Text File Locations - Best Practices

    Any suggestions and/or supporting documentation for best practices on where to locate the full text catalog files. Especially as related to other data, log, and tempdb files My searching is coming up empty. Thanks in advance. Terry ...Show All

  • Visual Studio 2008 (Pre-release) Sample code / Demo projects

    Hi Due to the abscence of the Sync Designer, it will help immensely if you can post either or all of the following: Documentation for Microsoft.Synchronization.Data.Client, Microsoft.Synchronization.Data.Server and Microsoft.Synchronization.Data.dll Sample code : Any demo projects Regards, Kk You might add a line in the Readme.txt file that advises folks to click Synchronize to create clientdb.sdf before clicking the Random ... buttons. It's not immediately evident that the Synchronize click handler creates the database. See http://oakleafblog.blogspot.com/2007/01/microsoft-releases-synchronization.html . --rj ...Show All

©2008 Software Development Network