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

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

Jeremy613

Member List

kavita bhalodia
Epsilone3
Mark McLain
Juan Morato
dankster
Milos Cimfl
Wprogram
Mike Russo
C0BA1T
ProTurbo
jim from the foothills
KodeCruncher
deemsdn
Dogs-R-us
Pomo
mparker1113
GoldenBrown
SzKane
askumar
Zoe Cheng
Only Title

Jeremy613's Q&A profile

  • Visual C# How To Send a Mail Using CDO 1.21 with C#

    Hi I try to write a console application in c# whichs sends a mail using CDO 1.21  (I can't use a smtp server). I found a good description for j++ ( http://support.microsoft.com/kb/216723/en-us ), but don't know how to write the cdo parts in c#. I could logon to my profile, but I wasn't able to create or send a message. I would be very happy for a code example which shows how to send a mail using CDO in C# (just a simple conso ...Show All

  • Visual Studio Express Editions Outlook-Automation in VC# Express

    I tried to getting a contact item in the contacts folder of outlook as follows (coded same as MSDN-Library).  Outlook.Application app = new Outlook.Application (); Outlook. NameSpace ns = app.GetNamespace("MAPI" ); ns.Logon( "", "", false, false); Outlook. MAPIFolder oContacts = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts); Outlook. Items oItems = (Outlook.Items)oContacts.Items; Ou ...Show All

  • Visual C# Using a variable in place of a hard coced table name

    I would like to have a S elect query that uses a table name selected from a list following the FROM part. Parameters do not seem to work although they compile. Run time gives a join error message. How can I make this work: string Sym; // (Selected from a datagrid) "SELECT * FROM Sym" C# querystrings are strings. So personally I don't see why it wouldn't work. It sounds as if the query itself ...Show All

  • Visual Studio Express Editions How to use the timer correctly?

    Hi, Im working on an VB.NET Application. Now I've got an Problem: I want that the Browser "webbrowser1" reloads the Document every minute. But I don't know how to use the timer correctly. Could someone explain the component to me, please Thanks Fabian It's pretty simple. I'd declare your timer as a member variable. Protected Friend WithEvents WBTimer as As New System.Windows.Forms.Timer Then when you want to ini ...Show All

  • .NET Development Sharing a software process with my business network

    Im trying to find out a way on how to share my application process with the rest of my business computers network. We have over 20 computers that have an average of 2.5Ghz CPU and they only use 10 to 20% of the CPU capaticity daily. So it ill be nice if i could use the 80% of does CPU's so i can execute same major BIG process from a distance software under my local intranet. Any link, ideas, tutorials or help will be well appreciate ! ...Show All

  • Windows Forms form close reason

    Hi! I would like my form to be hidden when the use clicks on the window close button (the X button on the top-right corner). The e.CloseReason does not provide a value to determine that this particular button is the reason that is closing the form. This was very simple in VB6: Private Sub Form_QueryUnload(Cancel As Integer , UnloadMode As Integer )     If UnloadMode = vbFormControlMenu Then       ...Show All

  • Visual Basic Labels

    how can I display the sum of two numbers from two text boxes in a label e.g. text box 1 + textbox2 = (display answer in label) How about Dim x As Single Dim y As Single If IsNumeric(TextBox1.Text) Then x = CType(TextBox1.Text, Single) End If If IsNumeric(TextBox2.Text) Then y = CType(TextBox2.Text, Single) End If Label1.Text = CType(x + y, String) ...Show All

  • Visual Basic I want manual for the regular expression

    I want manual for the regular expression  Please I want it to make some input text format     Hi, I think this should help ypu to learn regular expressions: http://msdn.microsoft.com/library/default.asp url=/library/en-us/script56/html/reconintroductiontoregularexpressions.asp ...Show All

  • Visual C# Which ROW in DataSet gave error?

    Hi, How to find exactly which row in the DataSet gave the error when more than one row has been updated. I use the RowUpdated trigger for the DataAdapter. i.e. oracleDataAdapter1_RowUpdated(object sender, OracleRowUpdatedEventArgs e) However the e.Row does not have the row number. For example if in a 10 row data set user updates row 2 and goes to row 8, updates it and presses the Update button. Now row 2 gives a primary key violation. How ...Show All

  • Windows Forms Problem copying a text string to a textbox(database field)

    i'm having a problem copying the filename string of a drawing to a textbox that's bound to a field in a sql db. i'm using this code: Private Sub btnopendialog_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnopendialog.Click opendialog.InitialDirectory = "\\d-fs01\ES Departmental\Drawings" Dim link1 As String = opendialog.FileName If opendialog.ShowDialog = Windows.For ...Show All

  • Microsoft ISV Community Center Forums Export an Access Table to a csv file

    Hi... I'm trying to export a table that I have in a Access Db to a csv file. For now, I'm exporting it to a Excel file, but I can't make it to a csv file. Can someone help me This is the code that I'm using to export the data to excel...First the query... DoCmd.RunSQL "SELECT [Files] INTO Table2 FROM Table1;" and then the code line: DoCmd.TransferSpreadsheet acExport, 8, "Table2", "C:\Table2", True ...Show All

  • Visual J# I need System.setProperty(String, String)

    Hi; I need to be able to set some system properties (for some unit tests). How do I do this In java it's System.setProperty("key", "value"); thanks - dave I have the following in my code: System.setProperty("key", "value"); and the compiler says there is no setProperty(String, String) method. thanks - dave ...Show All

  • Visual Studio Express Editions Copy a file to a directory?

    Hi, I'm trying to just make a simple program that would display a list games that I have added to a directory. I made button that when you push it, opens a OpenFileDialog so that I can choose a game to copy over into the directory. The only problem is that I am using File.copy() and it will not let me copy anything into a directory. Is there another thing I can use to make this copy work From the Hel ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Rotate the form

    Is there any way to rotate the form around its axle , like the watch hand Thanks for help You'll want to learn a little about DirectX.  You can search on DirectX 9 tutorial.  Here's one site that may help: http://users.pandora.be/riemer/ Josh ...Show All

  • .NET Development Error using WaitHandle.WaitAll() in STA thread.

    I have a WinForm application that is declaring Main() with [STAThread] attribute. To optimizing performance I'm using worker threads and rely on WaitHandle.WaitAll() for synchronization. The code compiles but will raise a "NotSupported" exception stating "WaitAll for multiple handles on a STA thread is not supported". This does not seen to be an unreasonable task. Any ideas on why this error occurs Any solutions ...Show All

©2008 Software Development Network

powered by phorum