Kai123's Q&A profile
Software Development for Windows Vista Is there a possibility to run the SendEmail Activity with Lotus mail server?
Hello, Is there a possibility to run the SendEmail Activity with Lotus mail server if it's how would I proceed yes very easy : one additional string property for the password (it can be encrypted if you want), and in SendEmailUsingSmtp() , add the following lines : NetworkCredential myCredentials = new NetworkCredential(<your email>,<your password>); client.Credentials = myCredentials; // if necessary: client.EnableSsl=true; client.Send(message); ...Show All
Windows Forms radiobutton event set coordinates for image?????
ok, newer to developing (at least in C#), but I want to have an array of 81 radiobuttons at specified coordinates (done), when clicked they will go to my "placepiece" class (does what it says), BUT i want to input the coordinates of the clicked radiobutton into the placepiece class, in the event code [note, b5 is just ONE of the buttons]and also i do not know how to implement it into the playpeice code after that...where should it go in this code/how should it go there, i tried to set a variable for each button, but got an error...help!( b5.AutoSize = true ; b5.Location = new System.Drawing.Point(330, 90); b5.Name = "b5" ; b5.Size = new System.Drawing.Size(37, 17); b5.TabIndex = 61; b5.TabStop = true ; b5. ...Show All
.NET Development SQL Server 2005 BulkCopy Problem using C#.NET 2.0
Hi all, God Bless U, i am facing a problem in SQL Server. I am have a table given below.. ------------------------------------------------ Table name is "A" ------------------------------------------------ 1 Michle Administrator 2 John Consumer Finance Officer 3 Jackson Employer 4 Goeffery Empl0yer ------------------------------------------------ Here the identity column is the first one. Now if i delete the 2nd row the this table becomes like that ------------------------------------------------ Table name is "A" ------------------------------------------------ 1 Michle Administrator 3 Jackson Employer 4 Goeffery Empl0yer ------------------------------------------------ Now i hav ...Show All
SQL Server Is 100'000 x 1 == 1 x 100'000 ?
Is processing 100'000 rows x 1 at a time == 1 time x 100'000 rows at once TheViewMaster wrote: Is processing 100'000 rows x 1 at a time == 1 time x 100'000 rows at once No ...Show All
Windows Forms Redistribute Framework 2.0
Anyone knows which version of operating system already have framework 2.0 as part of it window xp, 2000, 2003 Thanks. I do not think Windows XP, Windows 2000 or Windows 2003 come with the .NET Framework 2.0 as part of it. I found some documentation stating that the plan is to have the Framework 2.0 pre-installed on Windows Vista. (See http://blogs.msdn.com/somasegar/archive/2006/06/09/624300.aspx .) If you need to get the .NET Framework installed on several computers, you can use SMS, Microsoft Update or the Generic Bootstrapper. I've listed some links about the Bootstrapper below. Introductory article: http://msdn.microsoft.com/msdnmag/issues/04/10/Bootstrapper/default.aspx Pre ...Show All
SQL Server Package configurations stored in the database
If the configurations are stored in the database then does the package pick up the configuration as and when required or it a one time pick when the package is executed. What I plan to do When the package is executed, I want to have a script task at the start of the package that will update the configuration table in the database with the values that the package needs to run with. I mean change the values of the configurations of the tasks which will be executed after the script task. Thanks for your time. $wapnil I would used a foreach loop if it would have suffice our requirement. One of the requirement could be that we want to download files from 4 different FTPs a ...Show All
Visual Basic MySQL
Using MySQL to store my information on my server and I am writing a program to read/write to it. I am using an example on the web click here to setup my Login screen. Im having problems with the Imports MySql.Data.MySqlClient . I have gone to MySQL.com and downloaded the connector but I can't seem to get things working right. What am I doing wrong I just used the drivers from the MySQL site and everything attaches fine for me. I used the ADO.net driver and the Visual Studio Plugin. ...Show All
SQL Server Reg URL Report Access Path Format
I'm trying to render a report created using SSRS to open in a web browser in windows form. This is the URL used: "http://localhost/reportserver /C:/Documents and Settings/xsbangalore/My Documents/Visual Studio 2005/Projects/prmRpt/prmRpt&rs:Command=Render&rs:Format=HTML4.0&rc:Parameters=false&StartDate='01/01/2005'&EndDate='01/01/2007'"; I'm not able to see the report. Error: Unable to link to Web page What is missing The URL must refer to a report that is in the Report Server catalog database. You cannot refer to documents on disc as reports. Upload the report to the Report Server and then use Report Manager or the reportserver url to browse to the report. From there you wi ...Show All
Visual Studio Express Editions How to display a specific part of a RichTextBox content in a textBox?
I receive some data coming from a buffer and display it in a RichTextBox. The data looks like this: --------------------------------------------------------------------------------------- t1 +22.3 * --------------------------------------------------------------------------------------- i would like to only display '22.3' in my textBox. I have tried many different approaches but i really struggle. It might look easy but its not for me as I am new C#. If anybody have a idea, please feel free to help me. That would be great. Thanks Lio Yes that's correct, that's what im trying to do. I found how to do it with a single measurement: textBox1.Text=rtfTerminal.Find ...Show All
Visual Studio Express Editions i have no dll template
hello there, i have a copy of visual c++ 2005 express edition, now when i want to crate a new file, there is no .dll template, and i really need it because i need to compile a .dll file for a game mod, and so far ive had no luck, if there is a template could you please point me in the right direction. thank you Visual C++ Express doesn't allow you to directly create DLLs using a project template or an application wizard. However, you certainly can create dlls in VC++ Express. Here is an article that can help: http://msdn2.microsoft.com/en-us/library/ms235636(VS.80).aspx ...Show All
Visual Studio Express Editions Shortcut Key to Launch an Application
Hi, I have created a custom program launcher application in VB.NET 2005 Express. Is it possible to launch or switch to this application with a single keystroke Similar to Windows Key+E for Windows Explorer. Many thanks for your time Kind Regards Mark. You would need to use a hook for this-im just a begginer, but I just made a program that used a hook. Hope this helps. Public Class Form1 <System.Runtime.InteropServices.DllImport("user32")> Private Shared Function GetAsyncKeyState(ByVal vKey As Integer) As Integer End Function WithEvents Timer As New System.Windows.Forms.Timer Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles ...Show All
Visual C# Embedd video in email
Hi. I want to embed video file in email. I m using <EMBED> tag of html it works fine for simple html page but when i send it using my code to any email adress it does not work. I am using this code string file = "http://www.freevideocoding.com/video/FreeVideoCodingWMV.wmv"; string plug = "http://www.microsoft.com/windows/windowsmedia/download/"; string body = "<html><head><BODY><b>This test mail</b><EMBED SRC=" + file + " WIDTH=" + (char)34 + "100" + (char)34 + " HEIGHT=" + (char)34 + "143" + (char)34 + " AUTOSTART=" + (char)34 + "1" + (char)34 + "loop=&q ...Show All
Visual Studio http://www.vsipdev.com is not responding
Hi, I need to get a PLK from vsipdev.com but this site doesn't respond, Any ideas Oreng. Hi Oreng, Try http://www.vsipmembers.com/ . I believe that all the VSIPDev.com functionality has moved over to that page. Thanks, Aaron Marten (Microsoft) ...Show All
Visual Basic Saving an image to a database from an OpenFileDialog!
I am looking for a way to take an image from an OpenFileDialog and save it into a database as an Image, then use the Image data from the database to display it in a PictureBox and set it in an image list. Can anyone help Hi, I have been working on this and my code to display the image from the database is as follows: The image is stored in the SQL DB as an image (BlobData) I have done a search for a record which only returns 1 record I With searchTable.Rows If .Count > 0 Then '\\ If records found only ever 1 record With .Item(0) '\\ Heres the code that deals with the image Dim img As Byte () img = CType (.Item( "image" ), Byte ()) Form1.objstockForm.PictureBox1.Image = ...Show All
Visual Studio Express Editions How to make a program fade out
i made a timer that deducts 1% of the opacity each .1 of a second but that didnt work.....so i stumped how can i make a window fade in or out thanks ahead Joseph Stalin it sure is, and to proove it i have a label whose text was set to allways be that of the current level of opacity, and while it did go down, it did nothing until opacity was below 1 then it was entirely gone ...Show All
