Ralf Abramowitsch's Q&A profile
Smart Device Development Explicit examples
I've beginning to write programs in VB.NET 2005 for WM5. I've tryied to make a simple database with SQL CE but after I've connected i dont know how to make a simple add or remove in this database. I have MSDN but can't found an example to understand. Please help me. Please checkout this MSDN How-To page http://msdn2.microsoft.com/en-us/library/ms184404.aspx Manav ...Show All
.NET Development system.net.mail with embedded images
Hi, I want to use LinkedResource to embed images in emails. This works with local images but it's a bit more complicated with an external image (using an url/uri). You could make me happy with an example in VB.... Thanks very much! Martin Click here for MSDN docs . The LinkedResource class is the last, and least used main class. It is mainly used for creating embedded images. To create an embedded image you will need to first create a Html formatted AlternateView. Within that alternate view you create an tag, that points to the ContentId (CID) of the LinkedResource. You then create a LinkedResource object and add it to the AlternateView's LinkedResources collection. Below is an example usi ...Show All
.NET Development Memory not freed in MSHTML
I have a large .net control that I am running in MSHTML. The control simply loads up a number of images, however this problem has been replicated with a number of other .net controls. When the control is unloaded by calling up another page none of the memory is freed. Using perfmon I have a flat line for both virtual and private bytes that is never freed until the application is shut down. I could understand that some of the .net framework is kept open after exciting the control to increase the speed of the next callup, however the memory does not seem to drop at all. I would have thought that the GC would have cleaned up some of the memory Has anyone else seen this problem. Is it something I am not doing in my code or is it normal mshtm ...Show All
Community Chat Zune and the iPod
I've been following the Zune announcements fairly closely here at work. If you follow my blog, you'll see that I'm pretty passionate about media technologies, and recently went through the pain of migrating away from iPod/iTunes and onto Yahoo Music/Gigabeat S (Portable Media Center). Here the blog category where I talk about it: http://blogs.msdn.com/joemorel/archive/category/13772.aspx Now Zune is in the mix. It looks pretty neat, but I'm not sure if people are really going to go for the whole WiFi thing. I'm just not sure that I want to listen to the same music as the person sitting next to me on the bus. What do you think I've had an iPod and hated it. I have a Muvo, and I love it. It holds a gig of music, the screen is ...Show All
SQL Server How to install sql server 2005?
Hi all, I dont know whether it is right place or not I am using .Net 1.1 and Sql server 2000.Now i have installed .Net 2.0 andthis time i did a small project with .Net 2.0 with Sql server 2000. But my client needs .Net 2.0 with Sql server 2005 regular version. Now i uninstall Sql server 2000. But when i insert Sql serevr 2005 cd it shows 1.Prepare a.Review hardware ....... b.Read the relaese notes c.Install Sql server Upgrades advisor 2.Install a.Server Components ,Tools,Books Online.... b.Run The sql Native Clients Installation Wizard 3.Other Information .... Which one i hav eto click to install a fresh new copy of regular version of Sql server 2005 Thanks Ujjwal ...Show All
Visual Studio Express Editions I am having trouble finding the proper Data type to store X Y coordinations Please Help?
I am having trouble finding the proper data type to store an e.X e.Y coordination values. Code Example Below- The mySelectNode Variable needs to get the selected node coordination what data type would I use to Declare this Variable /* Get the tree node under the mouse pointer and save it in the mySelectedNode variable. */ private void treeMnu_MouseDown( object sender, System.Windows.Forms.MouseEventArgs e) { // this Variable needs a declared Data Type--> mySelectedNode = treeMnu.GetNodeAt(e.X, e.Y); if (mySelectedNode != null && mySelectedNode.Parent != null ) { treeMnu.S ...Show All
Smart Device Development Http Image File Uploader for .net compact framework 2.0
Having major problems trying to upload a file (an image) to a webserver via http post, keep getting a WebException.. Tried using the example code available at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/httpcomm.asp ---------- Code -------------- private void menuItem2_Click( object sender, EventArgs e) { String httpResponce = UploadFileBinary( @"\Storage Card\test.jpg" , http://www.myServer.com /upload.php ); MessageBox .Show(httpResponce); } public String UploadFileBinary( string localFile, string uploadUrl) { Cursor .Current = Cursors .WaitCursor; HttpWebRequest req = ( HttpWebRequest ) WebR ...Show All
Windows Live Developer Forums Don't get it
I cant get the gadget to work. I did what the instructions said but cant get it to work http://www.izonnet.se/msntest.php/ Gadget embedded !!! Here: http://motard.martial.free.fr/pages_php/main.php The goal is to send an e-mail to msn contacts, just to say "Hey this is a new site, shared by one of your MSN contact". Waiting for new idea, but now the most difficult is done ...Show All
Visual C# how can I write an application in C# which will support touch screen ?
I want to develop a software in which user can interact with the buttons via a touch screen. About what topic I have to know When we write an application in C# does it support touch screen facility please help. I believe that all depends on the hardware device itself if it supports touchscreen or not. the C# application will act as normal as the touchscreen commands/functions will be sent automatically to the computer as if you were using a mouse for example ...Show All
Visual Studio DataGridView wrapper - additional property-combobox fill up
Hi All, I have made a datagridview wrapper, in wich I add properties to grid for the developer to see at the design time in properties window of the grid . The properties in which developer has to type in a value, those are easy to do. But now I have to make a property as such which appears as a combobox and has 2 values(same as autoscroll property of datagridview -where we have true and false as two default values, and false is default) which are strings and appear in dropdown. I have been able to make a property appear as combobox, but I am nto able to fill up the dropdown list. The code to make property as combobox is here below: ComboBox formManagerMode; public ComboBox FormManagerMode { get { ...Show All
.NET Development FtpWebRequest.EnableSsl
The code works with request.EnableSsl = false but does NOT work when request.EnableSsl = true I access a remote server running Windows Server 2003 Standard x64 Edition Service Pack 1 I receive an error message: 500 'AUTH TLS': command not understood I'm using the MSDN sample code to list files on server. I have added the following code to the sample: request.UsePassive = false; request.EnableSsl = false; request.Credentials = new NetworkCredentials("actual username", "actual password"); I have replaced dummy values in the code below for username, password and ip address Again, the code works with request.EnableSsl = false but does not work when request.EnableSsl = true I would also appreciate any insig ...Show All
Windows Forms Find topic in a chm file from a labellink control
Hello, Does anybody knows how I can open a TOPIC in a CHM file from a labellink control in a winform application Thanks. zozo If I understand, you want to use LinkLabel control as help button or help menu item, like that: " Help ". For that you can use Help.ShowHelp static method: private void linkLabel1_LinkClicked( object sender, LinkLabelLinkClickedEventArgs e) { Help .ShowHelp(textBox1, helpProvider1.HelpNamespace, HelpNavigator .Topic, "Welcome" ); } ...Show All
Smart Device Development Installed custom Windows CE 5.0 device SDK does not show up in Visual Studio 2005
I am trying to build a native C++ application using Visual Studio 2005 Service Pack 1 for a custom Windows CE 5.0 device. I installed the SDK for our device on a machine running Windows XP. But the installed SDK does not show up in the 'Installed SDKs' list in Visual Studio 2005. Would anybody have any ideas as to what could be going wrong I would greatly appreciate your advice. Thanks for the suggestion. I checked the WCE.VCPlatform.config file. It does not contain our SDK entry. I guess that is why Visual Studio cannot see the SDK. The SDK is built from PlatformBuilder 5.0. Are there any settings that we would need to set in Platform Builder before building the SDK ...Show All
Visual Basic converting datagrid control to html table
I have several datagrid controls in an application i am finishing up on, i need to output the contents to an html file, so i need to convert the datagrid control into a html table, their wouldn't happen to be any easy way of doing this rather then going though cell by cell, extracting the contents and adding it on to a string along with the html code to make it a table is their First of all, your idea isn't bad. It's just not as clean. I'd use the Stringbuilder if there is any extensive amount of data because it will be much faster. Dim a As Integer = dg1.RowCount -1 Dim b As Integer = dg1.ColumnCount -1 ...Show All
Visual Studio Team System Team Build Question
Hello, we have gotten team build up and running and our vb.net solution appears to succesfully build on the build machine. The binaries that get sent to the drop location after a build only include the primary output dll's and exe. The output does not include any of the dependent dll's (third party dlls infragistics, crystal..etc) that are needed to run the application. We would like to use InstallShield to package this output for deployment. Is there any way to get the build machine to drop all required demployment files after a build The other question we have is why does the drop location output include all the debug files when the buildtype is setup for release mode Is there a way to have TFS only drop the release binaries Any Help ...Show All
