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

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

Takezo

Member List

pradeep toluganti
BradO
C4702
Kanhaiya
MichaelEber
Rogge
Suresh .M.V
R.Papa
F.Costa
geliser131
Anuradika
DigitalPenguin
Six
TimmayB
Jacco Mintjes
nc-ghost
Surit Roy
Mariano_60
Rand AlThor
Bucketo
Only Title

Takezo's Q&A profile

  • Visual C++ Accessing USB with VC++

    Hi! I m doing a college project and i have 2 access an analog signal via USB port! I have used C/C++ to access serial port but dont know how 2 do with USB. Can anyone give me a code snippet to access USB This may help you. Communicating with USB Devices ...Show All

  • Windows Forms How do I make a form read only (vb.net)

    Hi, I'm aiming to create a form to display non editable information. I am aware that I can set the enabled property to false, however this greys out the information and I dont want this. Is there any way I can make the form (or the controls on it) read only Thanks Well, as your aim is to create form for only display, you can use labels to show the value. If you want to make TextBox control as readonly, you need to set textbox's ReadOnly property to true. Hope this helps you. ...Show All

  • Smart Device Development listview with system imagelist (white square)

    hi, I have a listview that using a system imagelist. The problem iIm having now is when i select/highlight a row, there is a white square around the file/folder icon(not masked ) from the system imagelist. Is there a way to fix this problem without using a owner drawn listview code example or idea will be appreciated. thanks in advance. what do u mean by using the same dimension of bitmaps declared in imagelist i get the small icon imagelist from the system and set the return handle to the listview so the dimension should be 16x16 ...Show All

  • Visual Studio 2008 (Pre-release) How to "Load data once" in Pagebased Application?

    Currently I load data from database in the Constructor or in Loaded Event of a Page. But, when I navigate to another page and then navigate back, the data will be loaded again. How can I avoid this Thanks. Lauren Lavoie - MS wrote: Have you tried using Page.KeepAlive See http://laurenlavoie.com/avalon/191 for more info. Hi, I have tried "KeepAlive", but the Loaded Event of the Page is still invoked each time when Navigate back from other pages. ...Show All

  • Visual C++ LNK2019

    Hello, this will probably seem very easy to any c++ guru but I'm having a problem with the error below. I'm writing a CustomAction dll in C++ 8.0 for an MSI installation. I have a function called UpdateDispatcherAppConfig and in that function I want to be able to call a shared function which is defined in a separate class file. I don't want the shared function to be exported, I have included it so I can share some of the code that is being called from two different custom actions. What do I need to do to be able to call a shared function in a separate class Error 1 error LNK2019: unresolved external symbol "public: static unsigned int __cdecl Util::UpdateConfigFile(unsigned long,wchar_t *)" ( UpdateConfigFile@Util@@SAIKPA_W ...Show All

  • Visual Studio 2008 (Pre-release) WCF call fails sometime in CAB application

    We are currently developing a software using both CAB (Composite Application Block) and WCF. The client side GUI is written based on CAB. However, it is found that if WCF callback is used, sometime WCF client side call will raise "TimeoutException" exception. I have checked the WCF log file and found that before the exception was raised, the message was already received by the client side; but for some reason, the message was not processed until timeout. If I not to use CAB, it seems everything works fine. I think a dead lock could be generated by ObjectBuilder, which is the main part of all the application blocks. I have wrote a small test program which has the exactly same problem. I cannot locate the problem precisely ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Source Control for XNA Projects

    Previously, when we were using MDX 1.1 with C# we were able to use VS2k5 with a SourceSafe server on a machine running Windows Server 2k3. To my understanding, VC# Express does not integrate SourceSafe into the IDE like VS2k5 does. If that is incorrect please let me know. What options for version control do we have using VC# Express Thank you. As the Zman mentions, when you install most systems they ship with a client as well. If you would like to use one of the Online services you can always look at www.codeplex.com they use Team Foundation Server as it's base, and you can use the Team Explorer to connect to it. Here is a link to the page on Codeplex that talks about there Client Tools . ...Show All

  • Visual C++ syntax for autoexp.dat custom for template container??

    I have a custom C++ container that utilizes templates. I need to it to reveal all it's container data in the debugger window, but I just can't figure it out. I also need it to display it's other members too, not just the array. The container is like this: //============================================= namespace foo { template<T* > class bar { ... T* mptrArray; size_t msize; }; } //end namespace I have tried following this example, http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=267368&SiteID=1 but with no success. Boris Jabes obviously does not want to answer questions. Chris J. What I was doing in the watch windows was manually entering my var ...Show All

  • SQL Server sql server trigger

    Dear Sir/madam, I have two tables AccountGroups and AccountGroups_Bal. I want whenever a record is inserted in to the 1st table, a corresponding record should be inserted in the 2nd table. both tables have the "code" column. USE [DealSoft] GO /****** Object: Trigger [dbo].[trgAccountsAdd] Script Date: 03/01/2007 12:38:49 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TRIGGER [dbo] . [trgAccountGroupsAdd2] ON [dbo] . [AccountGroups] AFTER INSERT AS INSERT INTO AccountGroups_Bal ( code ) VALUES ( select code from inserted ) the following trigger gives the below mentioned error Msg 156, Level 15, State 1, Procedure trgAccountGr ...Show All

  • .NET Development Embarrassing Problem with inserting record...!

    Hi How can I insert record R1 to Person Table Record: R1 ID: 28 Person_Id: 28 Name: Sara Family: Iranmanesh Table: Person ID: Autonumber Person_Id: number Name: Char[30] Family: Char[40] Note: This table belongs to an mdb file. Regards, Elham I cannot insert that record because there is a recursive relationship in my table. So I have to insert that record without Person_Id. I mean I must leave it with null value. And then try to update that record and set the Person_Id to its value. These processes might be occurred in a procedure. If I wanna insert that record with null value in Person_Id you must change some op ...Show All

  • Windows Forms Highlight the DataGridView Column Header Cell

    Hi, I have some dates in the datagridview colum header my problem is highligting the current date and time in the column header.i am trying to use datagridviewcolumnheadercell but it is not working.Painting the header based on some condition its like if(datetime.now==my condition(my headercell value)) { then i want paint the header cell } Yeah, the problem with that approach is that you're now obligated to paint everything on the header cells yourself - it looses the nice gradient/shadow effect and the text becomes a bland serif font. I already do that in my application (for other reasons.. One, I need some interesting formatting on the text, second, I wanted a gradient background on the header cells) but it's not trivial, because th ...Show All

  • Gadgets Image PReview

    Hi, I need to know how to use an image preview script in the settings.html part of my gadget, because i added the ability to change backgrounds of the gadget it would be nice if i could use an image preview script to show the background before applying it to the gadget. please let me know guys!! TIA for all your help. here is my settings.html (perhaps you could modify your code for me and you will recieve credit where due) <html> <head>  <style>   body{    width:250;    height:120;   }  </style>    <script>  function init() {   var strbackgroundcolor = System.Gadget.Settings.read("ba ...Show All

  • Visual Studio Express Editions PDF viewing within VB2005

    Hi there, May I know if we can import and view a pdf file from VB, and search text strings from within the file I want to build an application for spareparts database and I want to incorporate an exploded view of the parts, if I search for the part number, it will search through the pdf file (within the pdf drawing) and thus, will give me can give me query for my part database for more detailed info. Is this possible Thanks ChrisMoje, According to your question on import and view a pdf file from VB, I have the following suggestions: 1. There is a class in VB.NET called MediaTypeNames.Application Class that specifies the kind of application data in an e-mail message attachment. MediaTypeNames.Application.Pdf field specifies that ...Show All

  • Windows Forms Setting Form Caption

    Hi, Can anyone please advise how I can set the Form's caption, I'd like to do this as the application loads and then reset the caption each time a menu item is selected.. Regards.. Peter. Ahmedilyas, Thanks that's exactly what i wanted, silly really that I was looking for some property of the main form "frmMain" Regards.. Peter. ...Show All

  • Visual Studio Team System Error using MSSCCI provider. <file>.sln not successfully written. ...

    I down loaded the new MSSCI provider and insntalled it on a computer that has both VS2005 and VS2003. I opened our 19 project VS2003 solution and tried to add it to source control. I was prompted for the TFS server. Then after several messages in the output window, The following repeated several times. ---- Operation started at time 11:21:34 AM ---- ---- Operation completed successfully at time 11:21:35 AM ---- The system the then appears to be saving information into the solution, but I get the following message. The solution file 'c:\dge\Dev\Srver\Srver.sln' was not written successfully. Check that the location is available, the file is writable and there is enough room on the disk. I am not sure what is ment by the ...Show All

©2008 Software Development Network