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

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

JayaC

Member List

caligula
Batya
Amilath
Adysoft
CiNN
Leonard Lee
Steve from adzac
clint 2
AndyMills
Yasir Imran
selinux
Vikasumit
QWERTYtech
ile
Jonathan Wong
AndyJ_PS
Seena K
Andreas Johansson
omrivm
Hytham
Only Title

JayaC's Q&A profile

  • Audio and Video Development backgroundImage parameters

    The CSS used in iHD seems to be a bit different than CSS2.0. First question: Does the HD specification cover style syntax and definitions Second question (and example of my confusion): One of the samples posted to these forums includes a backgroundImage assignment with multiple items. I'm guessing this is to define different images per state. style:backgroundImage="url('BUTTON_T1_0.PNG') url('BUTTON_T1_1.PNG')" What is the signature for this style declaration Thanks. I cannot seem to get my own example to work in the iHD simulator (below).  It validates clean. < xml version="1.0" > <root xml:lang="en" xmlns="http://www.dvdforum.org/2005/ihd"   xmlns:style="http://www.dvdforum.org/2005/ihd#style" ...Show All

  • Internet Explorer Development Sharing data between different instances of BHO

    Hi I work in a single sign on system that uses a BHO to complete logins in IE. In IE6 everything worked fine, but now doesn't It seems that the data used to complete the fields isn't beign received. The data is passed throught a shared data memory area inside the BHO's DLL. The question is, with the new security changes, could be that IE7 doesn't allow sharing data between different BHO instances and a controlling app Each tab haves a BHO instance A BHO can send messages via PostMessage to applications I'm testing the BHO in a XP SP2 so no protected mode is involved. And I'm coding in VC++ Thanks a lot Sebastian To answer some of your questions: Yes, Each tab does have its own instance of the BHO. ...Show All

  • Windows Networking Development Weird one - Router Death by Vista

    Here's a weird one. It seems that Vista RC2 is routinely killing my ADSL router I have a dual boot system (patched up XP Pro vs Vista RC2). Vista seems to be killing my D-Link DSL-500 like...., several times a day while Vista is running. Has anyone else noticed this I'm thinking.... some sort of weird network plug and play thing (which is disabled - by the way) RickW The symptoms sound similar. I will try disabling IPv6 too. BTW: When I went to reply.... the router had hung and needed to be rebooted . ...Show All

  • SQL Server Rendering problem in PDF and TIFF

    using ssrs 2005 I have a report that looks fine in the preview and in mhtml. But in Tiff and PDF it page ejects and takes another blank page and an eject prior to printing a textbox. The textbox is as wide as the page width (I have made it narrower and played around with the height in the layout envirnoment to no avail) and the data is a varchar(8000) with about 700 characters in it in this instance. The report also takes an extra page eject at the end when in PDF or Tiff format. I have not objects in the report that are overlapping and there are no warnings. What could be causing this behavior. Regards, Gary I'm really not sure what you mean by "page eject". Do you mean ...Show All

  • Visual C# Are there any event delegate creation plugins out there?

    Just found myself writing events that need to bubble up more and more. Specially when dealing with user control with multiple child controls. ...Show All

  • Visual Studio Express Editions slideshow

    how can I alter this code so it displays a different image every minute.....like slideshow thanks PictureBox1.Image = Image.FromFile _ (System.Environment.GetFolderPath _ (System.Environment.SpecialFolder.Personal) _ & "\Shell2.jpg" ) why wont it work..... access to path is denied ..........in red I have changed path but is still denied Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick         Dim path As String = "c:\pics"         Dim DI As New System.IO.DirectoryInfo(path)         Dim fi() As System.IO.FileInfo = DI.G ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creators Club Benefits

    "Both subscriptions provide aspiring game developers with access to thousands of game assets from Microsoft and key partners such as Turbo Squid Inc., as well as white papers, specialized starter kits, samples and technical product support to help turn Your World, Your Game into a reality." Am I missing something here Where can I get access to these 'specialized starter kits' and 'samples' Have I been deceived into buying this subscription If so, is there some way I can get my money back Maybe I'm missing something... You're not missing anything. Creators Club membership benefits is just still in it's infancy. There is content available at Turbo Squid and there is the Spa ...Show All

  • .NET Development .PNG File As a Embedded Resource in Visual Studio 2003

    A couple of questions I guess. 1. Is there a way of making a .png file a embedded resource from the 2003 visual stuido editor 2. Once I have made it as a embedded resource should a line like the following retreive the resource correctly this ->pictureBoxLED->Image = Image::FromStream(assembly->GetManifestResourceStream(S"CustomControls.pbOffLED.png")) 3. This solution I am working on contains several projects CustomControls are basically user control forms I have created. Thanks for all you help in advance Thank you for your response. I appriciate it. I can easily see how you can set the build action in visual studio 2005.. (Right Click on the item, choose properties ...Show All

  • Visual Studio 2008 (Pre-release) Function Memoization

    I am playing with Wes Dyers' excellent Memoization Function applied on Fibonacci function and I think the Memoize extension function is not correctly executed on a method argument. More precisely the following code: using System; using System.Collections.Generic; using System.Linq; namespace Fibonacci { static class Program { public static Func <A, R> Memoize<A, R>( this Func <A, R> f) { var map = new Dictionary <A, R>(); return a => { R value; if (map.TryGetValue(a, out value)) return value; value = f(a); map.Add(a, value); return value; }; } static void Test( Func < int , int > f, int i, str ...Show All

  • .NET Development printing datagrid data

    how can i print the data of a datagrid placed on a form using windows application project, developed in visual studio.net 2003 using vb.net. You could print the form but that's not likely to be useful when you have a lot of rows in your grid. You'll have to use the PrintDocument control. ...Show All

  • .NET Development Updating a DataTable without recreating

    Is it possible to update a DataTable via a data adapter without having to create a new DataTable and Fill() it again The problem I'm having is that I am adding some new rows to a DataTable which is then updated back to my data source which assigns the row a new IDENTITY. Thus, I need to update the rows in the DataTable to retrieve the new identities. However, nothing I do seems to reload those specific rows. I guess they don't appear as "dirty" to the Fill() method and so are left unchanged. Is it possible to somehow manually mark rows as "dirty" such that the new values will be loaded and filled from the database without having to delete and recreate the entire DataTable from scratch to load everything This is causin ...Show All

  • Visual Studio Sandcastle buildassembler generates indexoutofrangeexception

    Hello All, I was using the July and now the August Sandcastle CTP, but now I seem unable to generate documentation. It still seems to work on a small test assembly, but on the assembly I was documenting the buildassembler generates an exception - I have pasted in the exception from the event log. I cannot send you the assembly to recreate the problem as it contains company code, but I would appreciate any advice on what it is that might be generating the exception. I have also included the last few messages output during the buildassembler phase. FROM THE WINDOWS EVENT LOG ------------------------------------------ Event Type:       Error Event Source:    .NET Runtime 2.0 Error Reporting ...Show All

  • SQL Server Changing "Connection String" in SSIS package ???

    Hi! I create a SSIS Package for ETL on my own machine. During development database was also on my machine. For access to this database an OLE DB connection was defined within a package in BI Development Studio. Everything worked well both in debug mode and testing package itself. Finally I need to load data to a database on a different machine using this package. I used several scenaries: 1) simply copied the package-file to estination machine, open it for execution, in section "Connection Managers" I edited connection string manually - changed server name and Initial Catalog. And try to execute. 2) on the destination machine I manually created an OLE DB connection (using Microsoft Data Link) to a different datab ...Show All

  • Visual Studio Express Editions Axecontrols and Base64 Strings

    Hi all, I am building an app that uses an axecontrol which lets people sign their names electronically into said axecontrol and a method which takes the image of their signature and turns it into a Base64 string. I'm trying to save it into an access database, but it's not working. When I try to save it as the base64 string, it tells me I need to change the field type (in the database) to Base[ ]. Alternatively, when I try to convert the Base64 string into a normal string to save in as a string in the database, it gives me the error message 'Invalid character in Base-64 string'. Anyone have any ideas on how to proceed from here Please Hmm, confusing. Never heard of an 'axecontrol', nor a field type of 'Base' in Access. Try ...Show All

  • Windows Forms newby textbox . question

    i have set my textboxes to only allow one instance of "." my problem is that if i have already typed something that contains a"." when i tab over to the textbox that already contains a "." the text highlights but if the first character i type is a "." it won't do anything. i want to delete all the selected text and replace with the new text. all other keys work fine but since i limited the textboxes to only allow one instance of "." it won't do anything. i need to some how make it replace all the selected text with "." when i press the "." key Thanks Try this: Private Sub TextBox1_Enter(ByVal sender As Object, ...Show All

©2008 Software Development Network