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

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

thiaygu

Member List

Dany V
dandrievsky
Zac Boyles
Antaris
David Luu
Graça Cunha
Banhnam
ShiningMasamune
pu132
sally_de
sparecycles
Sweed
Titou
Ampers
lwfoon
Guilherme Cestarolli Seleguim
AmitKGupta
MJWhiteman
Jon Braganza
PAULL
Only Title

thiaygu's Q&A profile

  • Smart Device Development menu Problem

    AoA, I have 2 menus in my application and 1 dialogue.when i try to load 2nd menu (i.e. IDR_MENU1) it didnt insert that Menu...... this code work fine in window 5.0 emulator but not work in windows 2003 emulator. m_dlgCommandBar1.Create( this ) m_dlgCommandBar1.InsertMenuBar(IDR_MENU1) // strange thing is that it give error code = 0 when i use this dialogue on InitDialog it didnt work on that part as well :(( please tell me is there any other configuration for menus in windows 2003 emulator how i load other menus in windows 2003 emulator. Thanks -Salman Hi, SP 2003 must have SHMENUBAR resource. Its not possible to create a menubar without this resource, although the WM 5.0 Smartphone ...Show All

  • Visual Basic How to using variables stored in VB6 in my .Net forms?

    Hi I have a vb6 application who should have been upgraded to .Net, and finally it seems that this toolkit (Interop Forms Toolkit 1.0) can help do the upgrade in steps. My Question is: Is it possible to call my variables I have used in my VB6 code in my new .Net Forms Jan Yes.  Your .NET code can access your VB6 variables.  There are a several options for doing this and it really depends on what you want to do with the variables.  Here are a couple examples of what you might do: * If you want to pass the data into your Interop Form, you could define a constructor (Initializer) to take in the variable or you could add a property allowing you to pass in the variable.  See the section called ...Show All

  • Visual Studio Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT

    I've just installed Visual Studio 2005 Service Pack 1 (XP edition) and now when I try to register or unregister a GAT package (for example ASMX Guidance Package) I get the following error: System.TypeLoadException: EnvDTE.Project, EnvDTE ---> System.IO.FileNotFoundException: Couldn't find assembly EnvDTE. I guess because the service pack has installed a new version of EnvDTE. Any advice anyone Here's the full stack trace: System.TypeLoadException: EnvDTE.Project, EnvDTE ---> System.IO.FileNotFoundException: Couldn't find assembly EnvDTE. at Microsoft.Practices.Common.Services.TypeResolutionService.GetAssembly(AssemblyName assemblyName, Boolean throwOnError) at Microsoft.Practices.Common.Services.TypeResolutionService ...Show All

  • Commerce Server Shipping Rates.

    We need to display the prices of shipping methods with the name of the method on our UI. Is there a way to handle this We do not want to run pipeline for each shipping method and compute the result and present it to user. Thanks msdate, The ShippingMethodManager is available as a property on the OrderManagementContext. The OrderManagementContext is created using a static OrderManagementContext.Create method, which takes a site agent or a service agent. You should not use this context in a runtime web-app, as it's going to load up the site configuration everytime that it's instantiated (which is something that the Best Practices Analyzer recommends against). You can also get the shipp ...Show All

  • Visual Studio Express Editions Http gzip encoding

    I am able to send a request to a web server and read the response with the code below. I want to use gzip encoding to save on bandwidth. I can get the encoded response back. I am now lost how to decrypt this code into HTML. What code do I need to add ' Obtain the response Dim LoginRes As Net.HttpWebResponse = LoginReq.GetResponse() ' Perform the navigate and output the HTML LoginRes = LoginReq.GetResponse() Dim sReader As IO.StreamReader = New IO.StreamReader(LoginRes.GetResponseStream) Dim HTML As String = sReader.ReadToEnd 'Debug.Write(HTML) 'MessageBox.Show(HTML) ...Show All

  • Visual Studio 2008 (Pre-release) Please help with Remove the Trust Not Granded Error

    Hai I had build a xaml application with a webservice call. it will work in the debugging mode in visual studio and will run from the local drive directly, but not from localhost. i want to run this file from the localhost. when ever i publish my xbap application to a localhost and try to run http://machinename/websitename/mypave.xbap . i am getting this error. Trust Not Granted The Applciation cannot be deployed because it is not trusted and possibly unsafe. this is the log file details i am getting. PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Spacewar .fbx models.

    Just me, or are the models used in spacewar needlessly huge in dimenisons and in vertex count In wireframe render mode it's easier to see - the ones with gun barrels that have cooling holes are individually modeled that way - it's not like you can see that level of detail. The flying saucer one has an enormous number of verticies can could have been welded away. I haven't seen anything as to what's 'right sizing' a model for xbox360 but these have got be excessive for the level of detail that's shown in game. True, although DeadOrAlive has just two models in play as well. The crux of it, is that to me 'spacewar' is as much a demo of xna as it is a tool to kickstart learning. Demo's should impress upon people t ...Show All

  • Visual Studio Express Editions Connecting to an Online Text File

    Hey, I was wondering how, if at all, to, in Visual Basic Express, connect to a text file on my server and then pull the contents of that file back into my vb program and set the text of a text box to thos contents. Thanks for reading and I hope you can help. -Joel You would want to look at the StreamReader class for this. Basically, you can do something like this: Dim objFile As IO.FileStream Dim objRead As IO.StreamReader objFile = New IO.FileStream("your File path", IO.FileMode.Open) objRead = New IO.StreamReader(objFile) textbox1.text = objRead.ReadtoEnd objRead.Close() ...Show All

  • SharePoint Products and Technologies Printing a page viewed in a page viewer web part??

    I can't seem to get an html page to print when viewed inside a WSS V3 page viewer web part. The same page printed fine from WSS V2. Odd behavior.... When you check the print preview dialog it seems to print hundreds (if you let it) of pages. No actual printed pages show up either at the printer or in the print preview. Multiple client machines using IE6 or 7 both. Anyone else ...Show All

  • Software Development for Windows Vista Get "NextState" in Invoke event

    In a state, there are several EventDrivenActivities, in each EventDrivenActivity, there is a HandleExternalEventActivity and a SetStateActivity, for the HandleExternalEventActivity, there is a corresponding Invoked EventHandler, I want to do something in it, and the first thing I want to get is the TargetStateName of the SetStateActivity in the same EventDrivenActivity just below the HandleExternalEventActivity. I'm not sure if this is what you're really looking for, but you might be able to use the StateMachineWorkflowInstance class to get what you want. This class is used to provide additional runtime information for a running state machine workflow instance. You create a StateMachineWorkflowInstan ...Show All

  • SQL Server Conditional Expression

    I have the following being applied as an expression: =iif(sum(Fields!Percentile.Value) > 10, "Yellow", "Black") I want my percents to show up yellow if they are above 10.00%, and black if they are under 10%, doesn't appear to be working right ...Show All

  • .NET Development problem using XmlSerializer.Deserialize Method

    Hi, I'm getting problem using XmlSerializer.Deserialize Method. Here is my code. static void Main() { string xmlString = @"<OrderedItem>"; xmlString += @"<ItemName> &#936;&#772; SE W810i </ItemName>"; xmlString += @"<Description>Sony Ericsson &#198; W810i</Description>"; xmlString += @"</OrderedItem>"; DeserializeObject(xmlString); } private void DeserializeObject( string xml) { XmlSerializer serializer = new XmlSerializer( typeof (OrderedItem)); StringReader sr = new StringReader(xml); //StreamReader sr = new StreamReader("sample.xml",false); //MemoryStream sr = new MemoryStream(St ...Show All

  • Software Development for Windows Vista Is LVS_EX_COLUMNOVERFLOW implemented?

    I can't make this style work. The listview has 5 columns, but only 2 and a part of the 3rd column fit into the client width. The listview has the following styles: WS_CHILDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_VISIBLE WS_EX_CLIENTEDGE | WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR LVS_EX_DOUBLEBUFFER | LVS_EX_HEADERDRAGDROP | LVS_EX_FULLROWSELECT | LVS_EX_HEADERINALLVIEWS | LVS_EX_COLUMNOVERFLOW It contains 10 items and is in icon view. I would expect a chevron button being displayed in the header control, but there isn't one. If I explicitly set the HDS_OVERFLOW style on the header control, the button is displayed. So why doesn't LVS_EX_COLUMNOVERFLOW work Is it not implemented TiKu Just to confirm, I also could ...Show All

  • Windows Search Technologies WDS - registry settings for indexed locations and disable settings changes for users

    Hello, I hope somebody can help me to find registry settings to do the following things: 1. Enable indexing only for local harddrives, mails and personal home drive . 2. Do not allow the user to change the settings for elements which can be indexed. FYI: We like to deploy WDS via script to the users and they should not be able to index e.g. team network drivers, etc. Thanks for your help in advance. - Katrin ...Show All

  • .NET Development Compiling ASP.NET projects on x64

    What are the basic steps involved in compiling to x64 for ASP.NET 2.0 In Configuration Manager I've created a Solution Configuration of "Debug x64" and set the Active Solution Platform to "x64". I've set the Configuration and Platform dropdowns on all the projects to the above and checked the Build checkbox on all of them. A Rebuild All skips all my assembly projects but then attempts to build the website which then fails because its assembly dependencies have not been built. Why is it skipping my assemblies Can it not find the 64-bit version of the .NET framework on its own, or do I have to set that somewhere Thanks, Terry For web projects, the location of the web site will determine the p ...Show All

©2008 Software Development Network