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

Software Development Network >> rene schrieken's Q&A profile

rene schrieken

Member List

tongkusat
Rob Lane
Subhosh
MasterG
OasisGames
TAS
Bill Reiss
Mongsreturn
StevenR2
jcsam
S&#248&#59;ren Spelling Lund
Spangltk
Miroslav_shrek
jam281
Binary
d.cosentino
mschelstrate
Vidar Knudsen
blex
medel
Only Title

rene schrieken's Q&A profile

  • Smart Device Development Uninstall programs in WM 5.0

    Hi, i used to install some programs using \Windows\\unload.exe myApp in PPC 2003 ( calling this windows application in my application ). does Windows Mobile 2005 have an application like this if not, does anybody have any ideia how to uninstall thanks! Celso In WM 5.0, you need Uninstall CSP to remove applications. Read this page - http://msdn.microsoft.com/library/default.asp url=/library/en-us/mobilesdk5/html/wce51grfuninstallcsp.asp for more info. ...Show All

  • .NET Development Transforming Large xml files (2 to 5 GB of xml data) using XslCompiledTransform. Application hangs while transform

    I am trying to transform an xml file (1- 2 GB) with an existing xslt. At the time of tansforming the application hags. Dim transformer As XslCompiledTransform = New XslCompiledTransform() 'load the xsl transformer.Load(m_XSLFile) ' add parameter for transformation Dim xslArgs As XsltArgumentList = New XsltArgumentList() ' transform the input xml transformer.Transform(InputXmlReader, xslArgs, output) ' remove all the information from the memory output.Flush() ' close the transformed xml output.Close() for smaller files this will work fine (up to 80-100 MB). if the file size is greater than 100 MB the application hangs. is there any better way to transform heavy xml files ...Show All

  • Windows Forms How to scale text using Textrenderer?

    Hi. The following code will scale the text to match the clientrectangle of a panel, no matter what the textlength or fontsize is. Dim scaledRect As Rectangle Dim actualPoints(2) As Point Dim transformMatrix As Drawing2D.Matrix Dim textSize As Size textSize = e.Graphics.MeasureString( "This is a test!" , Me .Font).ToSize scaledRect = New Rectangle(0, 0, textSize.Width, textSize.Height) actualPoints(0) = New Point(0, 0) actualPoints(1) = New Point(Panel1.ClientRectangle.Width, 0) actualPoints(2) = New Point(0, Panel1.ClientRectangle.Height) transformMatrix = New Drawing2D.Matrix(scaledRect, actualPoints) e.Graphics.Transform = transformMatrix e.Graphics.DrawString( "This is a test!&quo ...Show All

  • Smart Device Development multimedia with WM5

    Hi, I am trying to use WMP10 on window mobile 5.0 from c++ and would like to know if I need to install WMP 10 SDK Reference to other useful link or thread related to this topic would be great. cheers, Yes, install the WMP10 SDK. The type libraries are compatible in that they use the same GUIDs. WMP10 Mobile simply does not implement some of the interfaces or methods/properties, so you need to watch for E_NOINTERFACE when doing QI or E_NOTIMPL when calling a method or getting/setting a property. Also the documentation includes references to WMP10 Mobile and whether the particular functionality is supported on it ...Show All

  • Smart Device Development Loading PNG from disk using DirectDraw

    Is it possible to load a PNG from disk into DirectDraw surface Does anyone have an example of how to accomplish this I understand I may have to involve GDI for this particular operation which is ok i suppose. Any clues Thanks! Refer this thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=970533&SiteID=1&mode=1 ...Show All

  • .NET Development SOAP complex content - array of strings

    Kinda working backwards - need to build a proxy client for a legacy app, and it needs to work on an Axis/Tomcat server I can never see live, so I'm working from the server's WSDL to build something to test against while I work on the client. Built the simple VB web service and have no problem accessing any string or int method parameters passed from a client to the web service, but I can't access the values of string(), array or arraylist parameters. I've been working plain old Windows apps and services for a while - may need a bit of a refresher. Appreciate any help, but I'd love to see some vb source of a complex SOAP service. Regards, Wheels Wheels, Why you can't access collection's v ...Show All

  • Software Development for Windows Vista Creating a New Account Programmatically in Windows Mail

    krishnan I am trying to create a new account programmatically. I understand that i should place the configured oeaccount file in the strore root folder. My problem is Naming the new .oeaccount file. how do i generate the Unique ID Pregrammatically. Is that required or simply account{<Account_name>}.oeaccount will do example : account{3358C6E2-10C0-47E5-8E0E-FA409E305A93}.oeaccount Borland C++ example: #include "Rpc.h" AnsiString __fastcall TForm1::GetAnsiUUID() { AnsiString result; UUID uuid; UuidCreate(&uuid); unsigned char *uuids; UuidToString(&uuid,&uuids); result=AnsiString((char*)uuids); RpcStringFree(&uuids); return result; } ...Show All

  • Windows Forms Validating Fields

    Hi, In my If Then Else Statement as given below which is to validate that no fields is left blank and display message: If txtOrdNo.Text <> "" Or DateTimePicker1.ToString <> "" Or txtCustId.Text <> "" Or ProductId.ToString <> "" Or txtCost.Text <> "" Or txtAdv.Text <> "" Then MsgBox("Welcome to the Jungle") Else MsgBox("Fill up the jungle") End If Welcome To the Jungle is displayed accurately but if one of the fields is left empty then instead of showing the msgbox it comes with the exception window message. Could u plz help me rectify it Shells ...Show All

  • Windows Forms Overriding an 'invisible' property

    UserControl has a property called Text which is hidden from the user at design time. How do I override Text such that the user can 'see' it Yeah, that's the attribute I was looking for last night when I posted my reply. I knew I had used it in the past, but I was doing a quick search of my various apps and I couldn't find it. I couldn't remember exactly what it was, and I since I couldn't find it, I didn't mention it. Glad you found it on your own! ...Show All

  • SQL Server Filename Variable Trouble

    I want have multiple records from 1-4500 that I must insert a picture into the database for. I am trying to set up a variable to do this if someone can show me my error I would apprieciate it. This table has 4 columns (id# Float is a FK) (ImageName nvarchar (10)) (ImageFile Varbinary(Max)) (rec# int PK Increment Seed). declare @jpg as int Set @jpg = 0 While @jpg < 4500 begin set @jpg = ( @jpg + 1 ) use consumer insert photo ( id# , ImageName , ImageFile ) Select @jpg , ' @jpg.jpg' , bulkcolumn from Openrowset ( Bulk 'D:\Data\Pics\@jpg.jpg' , Single_Blob ) as 'ImageFile' Take a look at your other post for a solution: ...Show All

  • SharePoint Products and Technologies Farm account generating errors on a private database

    Our MOSS farm has a database that we added to it for SQL administration perposes. This database exists in the same instance as the MOSS and WSS db's. This database contains backup information and it is SOP to add this type of database to every sql instance created thoughout my corporation. Every 5 minutes there is an error in the event log that says the following: Unknown SQL Exception 916 occured. Additional error information from SQL Server is included below. The server principal "<insert farm account name>" is not able to access the database "<insert our custom admin db name>" under the current security context. Obviously, our farm account does not have access to read this database. The db ...Show All

  • SQL Server Best way to learn SQL Mobile?

    I am an experienced web developer using PHP and MySql have experience with VB. What is the best way for me to learn programming pocket pc's Is using sql server mobile the best offline database to use as I will be using MySql Compact framework to connect direcly to our Linux server. Any help is much appreciated as I can't seem to find any useful tutorials on quering an sql databse to update, insert, read or delete. I have created a datebase however, I just don't know how to use it. Thanks in advance. Mark Hi Mark, The SQL Mobile is ideal for offline scenarios. You can find SQL Mobile related resource on MDSN. I am providing the links below SQL Mobile page on MSDN - http://msdn.microsoft ...Show All

  • Microsoft ISV Community Center Forums Order by in select statement not working

    Hi there - i have a select statement that runs on form load that allows selection of appropriate company names from a combo box based on if the user is the owner of a company, which works great, syntax is below; Me.companyname.RowSource = "SELECT [companyname] FROM [qryactivity] WHERE [active] = Yes AND [leadofficer] ='" & loginname & "'" However i want to sort them alphabetically by name but cannot get it to work, i keep getting syntax errors, i have added the following code but it does not like it: Me.companyname.RowSource = "SELECT [companyname] FROM [qryactivity] ORDER BY [companyname]ASC WHERE [active] = Yes AND [leadofficer] ='" & loginname & "'" any help would be greatly appreciated. Rhys. ...Show All

  • Visual Basic Just trying to understand?

    Below is the code that I got from MSDN help files it shows Encryption/Decryption, I want to use it in my program but first I thought I would try to understand it on it's own, so I have a form with two text boxes and a button, when the button is pressed text appears in the text boxes. What I want is a 3rd textbox that shows me the encrypted data, what variable do I use to show this THE EXAMPLE CODE Imports System Imports System.IO Imports System.Security.Cryptography Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim original As String = "Here is some data to encrypt!" ' Create a new instance of the RijndaelManaged ...Show All

  • Windows Forms How can I automatize process of synchronizing versions of project & deployment files?

    How can I automatize process of synchronizing versions of project & deployment files (such as resources, setup.exe etc) And why version of the setup.exe equals to version of Visual Studio Setup.exe is generic - it's not compiled when you build your setup project. It's the same one every time with a slightly different payload in its resources that describes the prerequisites. Your other question I don't really understand. I think you want automatic increments of your file versions, is that right ...Show All

©2008 Software Development Network