Software Development Network Logo
  • SQL Server
  • Visual FoxPro
  • Microsoft ISV
  • Windows Live
  • Visual C++
  • VS Express Editions
  • VS Team System
  • Architecture
  • Visual J#
  • Smart Device
  • .NET Development
  • Visual C#
  • Game Technologies
  • Visual Basic
  • Windows Vista

Software Development Network >> Ries Vriend's Q&A profile

Ries Vriend

Member List

Shishir_Vaidya
.net sukbir
James Rosenvall
Bryan Dunlap
Brachole
Leonardo Juszkiewicz
VistaCurious
C#loup
nLella
Peter Sollich
Sommarafton
Yves Dolce
filippg
SmileyMicros
RGreene
Alan Foster
Neilgd
AlexCode
sai81
Don Tucker
Only Title

Ries Vriend's Q&A profile

  • Windows Forms Crystal Report.NET : Error occurred when exporting to PDF

    I encountered this error when attempting to export a crystal report to PDF: System.NotSupportedException: Error in File C:\DOCUME~1\tnguyen1\LOCALS~1\Temp\temp_a605641b-1f63-401d-b8e3-710c095306bd.rpt: Operation not yet implemented.    at  . A(Int16  , Int32  )    at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)    at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export()    at CrystalDecisions.CrystalRe ...Show All

  • Windows Forms OnMouseMove application start taking more memory VB.NET

    Hello,   I have created a VB.NET application.   On first form i have Textbox, Datagrid, Combo box and checkbox control.   There is no mouse move event in the form or datagrid.   But when i move the mouse on the form and see the memory usage    in task mamager..   Memory increase by 4k or 8k on each mouse.   Why it is behaving like that i have no Idea..    i tried with new project with one form, with one button button there also    memory get increased..    any idea to control not to increase the memory.    I have using Visual Studio 2003, ...Show All

  • Visual Studio Express Editions How To Work Update PRogram?

    i am new to c# and am learning slowly but am learning :) i have created the basic program i wont to use i.e i got the menustrip done and working thats it so far. got the ABOUT box to load and an UPDATE box to load i have created another application for an UPDATE program i have done the design but the buttons CHECK NOW and UPDATE NOW and also a programs bar to show the progress of the update.. problem i got is i just dont know how make the CHECK NOW button check the webserver for an updated version of my program and then to return saying UPDATE AVALIABLE PLEASE CLICK UPDATE NOW or NOW UPDATE AVLIBLE. and of course when ...Show All

  • Microsoft ISV Community Center Forums What's your experience with the buddy program?

    Started by admin at 03-28-2005 5:11 PM. Topic has 2 replies. 03-28-2005, 5:11 PM admin Joined on 12-16-2004 Posts 14 What's your experience with the buddy program We've already received a couple of posts on buddy experiences (thank you!) and would love to see more of them, so feel free to jump in and reply to this post and share yours! Thanks, Brenda [msdn/isv] 05-09-2005, 6:08 AM thomas woelfer Joined on 02-14-2005 Posts 5 Re: What's your experience with the buddy program i introduced myself and never h ...Show All

  • Software Development for Windows Vista January CTP - no Activities in the Toolbox

    I've just installed Beta 2 of WWF that is included in the Jan CTP. When I open a new Sequential Workflow Library project, in the designer view for my workflow, there are only 7 Activities: Compensate,FaultHandler,Suspend,Termainate,Throw,TransactionScope,and SysnchronizationScope. Any ideas on what went wrong How to solve PS I installed in the order recommended by Jan CTP: winfx runtime, Winfx SDK, VS ext for Winfx, and VS Ext for WWF beta 2. Riley I found how to fix this, should anyone else run into the same issue. Tools->Choose Toolbox Items -> Activities -> Reset This added all t ...Show All

  • Visual C# How Can I execute the desire form first when I have two forms in one namespace

    Hello, How Can I execute the desire form first when I have two forms in one namespace In detail is it possible to set the form execution order in the same namespace if Yes how Pomi in your main method, Application.Run(new Form1()); In your Form1 under some event, invoke Form2. Namespace should not have any effect. ...Show All

  • .NET Development Capabilities of Visual Basic 2005 Express

    I would like to eventually learn to write programs that control windows functions such as in this example: Create a program that can change the icon of all the folders in a chosen directory, by selecting an .ico file to asign to a group of folders and apply them to all folders in the directory at once. Can anyone tell me if the express edition will be able to make this possable Thanks Customizing a folder's icon is done by creating a file called Desktop.ini in the folder. The following link shows you how to do this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/shellcc/plat ...Show All

  • SQL Server Studio 2005 Sql environment?

    I am brand new to visual studio, and just installed the 2005 beta with the latest sql server ctp. When I went into studio, it gave me an option for which default environment settings I would want. There is no Database Developer environment listed. Shouldnt there be one since sql and studio are supposed to be so heavily integrated now Is there an add-on I can get that will give me a database environment to work in Thank you in advance! ...Show All

  • Windows Forms Create a control that uses complex data binding

    I want to create two controls I want to create a control that I can bind to a given result set.  For example I want this control to display four fields, FirstName, LastName, Phone and Fax.  Let' call this the contact control. I also want to create a second control.  This second control needs to be able to be bound to a datatable. &n ...Show All

  • SQL Server Job Fails

    I have a package that runs fine when manually executed, but if a job is created that executes the package the job fails. The job is run as the same account that runs sql server agent. The error message that appears is to see the job history but the job history just says the package failed. When I try to add logging no log is created. Did you check 'reconnect at logon' option (or /persistent:yes in net.exe command line) In this case every logon creates a connection, but technically they are different :) Is this Windows 2003 I'm not sure it worked the same way on Windows 2000. This is simple to check with SysI ...Show All

  • SQL Server Writing to text file from Stored Procedure

    hi Writing to text file from table/view is done using osql,bcp etc. How do we write output of stored procedure into text file Thank you SQLCMD, ISQL, or OSQL will work.. With SQLCMD, you can do this to export a query (the query can be anything): sqlcmd -S.\yukon -E -Q "select * from sys.dm_exec_requests" -s, -W -S ServerName -E Trusted Connection -Q Run the following query and exit -s Seperator -W Remove trailing spaces ...Show All

  • SQL Server Exporting Sql data to MS Access

    Hello, I'm trying to export data to an MS access database from a sql database but am having problems with mapping the sql data to the table i created in the destination database (using ADOX). Any ideas Cheers. If the destination table already exists, your best solution would be to create the "base" package by using the Import and Export Wizard, which creates any required conversion transformations for you. You can tweak the package, and add on to it, from that point. -Doug   ...Show All

  • SQL Server Extended Stored Procedures and VB

    I have two functions in a .DLL created in VB6 I want to use. I create two Extended Stored Procedures using: sp_addextendedproc 'MyFunctionA', 'MyFunctions.dll' sp_addextendedproc 'MyFunctionB', 'MyFunctions.dll' When I run: EXECUTE @ReturnValue = MyFunctionA @Paramate1 I get: "Cannot find the function MyFunctionA in the library C:\Program Files\MyDLLs\MyFunctions.dll. Reason: 127(The specified procedure could not be found.)" What am I missing I have tried this solution and it seems to be very easy to implement:    sp_OACreate, sp_OAMethod, and sp_OADestroy.  It also seems to be muc ...Show All

  • Visual Basic Open

    Can someone tell me how to open an application manifest if you do not have .net on your computer. I recomend for something simple like your mentioning, just code it in VB6, easy to use - and dosnt require .net(although does require a few dll's - which most people have anyway.) ...Show All

  • Visual C# net mail namespace and SMTP

    I know that this has been asked before, but I've tried all the answers and haven't found the answer yet. I'm trying to send email using C#. My code works great on my local machine - no problems.  But when I publish to my 2003 server, it won't send.  There are no errors, all the other scripts execute ok, but the email doesn't come through. Here's my code =====================         MailMessage mail = new MailMessage();         mail.From = new MailAddress(this.tbEmail.Text);         mail.To.Add("myemail@myhos ...Show All

©2008 Software Development Network