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

Software Development Network >> Ed Mundorf's Q&A profile

Ed Mundorf

Member List

kiwilamb
chutachut
LaViMa
VSUser2k5
LokiSD
Allen Junior
Viren341
Bill Henning
Jay McKinney
No-spam Sam
Bryan Kardisco
tradle
bcarter00
WinFormsUser13232
swine
akin_l
shaul_ei
BobTheBuild
Pankaj11
leonardoreyes
Only Title

Ed Mundorf's Q&A profile

  • Visual Studio Express Editions AddNew in Navigation Bar - want to autofill data in bound fields.

    I'm pretty new to vb.net and very new to 2005, so feel free to answers in begginer language... I need to autofill a field on a data entry form when i click the "addnew" button on the Navigation Bar. (The one that is automatically generated by 2005 when I add the data source grid/fields to a form. (I have both the grid and data fields on the form becuase I want to see all records for one customer as I enter new records for him.) I've tried doing it by entering this code: Room_CustomerTextBox.Text = custStr in this routine: Private Sub BindingNavigatorAddNewItem_Click (custStr is a global field containing the value that should autofill in this field for every record added for that customer) This code works fin ...Show All

  • .NET Development sprintf() for unmanaged C++ in .NET 2005

    Hi all, We have our projects written in native C++ (unmanaged) running on Visual C++6.0. We are migrating all these to .NET 2005 environment. We want to retain all the C++ code(unmanaged) without converting it into managed C++ in .NET environment. The problem that we are facing right now is trying to use the sprintf() function. We use sprintf() in so many places for formatting strings. Since the stdio libraries are deprecated in .NET environment, we are unable to use this function. Any ideas for alternative sprintf function in unmanaged C++ or .NET I tried using String. Format() but it failed to recognize this function. Thanks, Nathan Project + properties, C/C++, Preprocessor, add ...Show All

  • Windows Forms Problem with DataMember of DataGridView

    Hello, I am having some problem with flitering a dataset and setting the same data set as the source of a datagridView. customer_list.Tables[0].DefaultView.RowFilter = "Surname like '" + textBox1.Text + "%'" ; this .dataGridView1.DataSource = customer_list.Tables[0].DefaultView.ToTable(); this .dataGridView1.DataMember = "customer_list" ; But it is not working. In my earlier projects the same code worked fine with dataGrid, well, i did not have to specify the datamember in that case to see the data. Can anybody please tell me, how do i simply show the data of a DataSet(thats been flitered) in a dataGridview wow I'm kind of hitting the same problem at the minute, well actually I d ...Show All

  • SQL Server Delete syntax to delete a record from one table if a matching value isn't found in another

    I'm trying to clean up a database design and I'm in a situation to where two tables need a FK but since it didn't exist before there are orphaned records. Tables are: Brokers and it's PK is BID The 2nd table is Broker_Rates which also has a BID table. I'm trying to figure out a t-sql statement that will parse through all the recrods in the Broker_Rates table and delete the record if there isn't a match for the BID record in the brokers table. I know this isn't correct syntax but should hopefully clear up what I'm asking DELETE FROM Broker_Rates WHERE (Broker_Rates.BID <> Broker.BID) Thanks kfrost: Maybe something like: DELETE FROM Broker_Rates from Broker_Rates a WHERE not exists ( select ...Show All

  • Visual C++ How to write Custom Windows Error Reporting

    Hi, I don't know if anyone else has asked this but ah well I need to know something. Anyway have been developing applications for quite some time now but one thing that I could find any information on any search I did on google and msdn was how can I create custom Windows Error Reporting Dialogs. What I am requesting to know is not something new since it's been implemented by some software already (3ds max 9) but I don't know how to do it. The idea behind the whole scene is that I want to replace or modify the built-in Program Error reporting that Microsoft Windows OS has, only for the specific application I want, in order to send the data I want where I want and how I want. Does any1 have a clue on how to archive something like that U ...Show All

  • Visual C# Loading RTF file into RichTextBox on load

    Hello. I am new to C#. I may be particularly dense, because I am stuck on something that I feel should be (and probably is) simple. All I want to do, is create a brand new C# project (which I have done), add a RichTextBox control, and display the contents of an RTF file in the box. It will always be the same file, so I don't need an open file dialog or anything like that. I simply want to load an existing RTF file into the RichTextBox. I did some searching through MSDN and found the LoadFile method. I think part of my problem is that I don't know where to put the code. So I humbly ask that someone please walk me through this. I have named the RTF file "myfile.rtf" and it resides in the same directory as my project. I hav ...Show All

  • Visual Studio Tools for Office VSTO Tools Add In, Outlook 2003

    Hi, we created an Add In using VSTO Tools for Outlook 2003. We have a problem when Outlook 2003 is running and another application has it as well, and we close Outlook, it still runs in memory but when we open Outlook, our Add In disappears. Is there any event or something we can do to make the Add In shown always Thanks! Hi, we have following scenario and are going bananas :) 1. outlook is started via automation 2. Outlook is opened with Add In 3. Outlook is closed 4. when outlook is opened again, add in not there 5. it is only there when the program with automation closes This has to do with Outlook being started somewhere else with Automation and is runni ...Show All

  • Software Development for Windows Vista DirectShow Training

    Hi everyone I would like to get a DirectShow training courses. I could not find any from the Internet. Does anyone know where can I get these training Thank you Hi, I am setting up shared DirectShow training sessions in May. If you are interested, see my site ( http://www.roujansky.com ) for details. Best regards. ...Show All

  • SQL Server format issue

    I've created a new calculate member in (SQL Server Business Intelligence Studio 2005) with the following format string: "#,#0.00". This measure is displayed like this: 22,250.22 Then I created a Measure in the Cube structure menue and used the same format string:"#,#0.00" and this measure is displayed like this:0,66 --> Comma and decimal point are changed in the display of the measures!!!! Can anyone help me with this I just like every measure to use a decimal point for the decimal place or the other way round. But I want every measure to be displayed in the same format! Thanks a lot! Here is a link to a BLOG that might solve your problem:http://sqljunkies.com/WebLog/mosha/archive/2005/10/13/mdx_format_curre ...Show All

  • Software Development for Windows Vista Developing on Windows XP SP2

    I will be developing Workflows to run on XP Service Pack2. I will not be using Vista. As I am not using Vista will I be limited in what I can develop ...Show All

  • Visual Studio 2008 (Pre-release) MessageVersion.None problem

    Hi, I created a custom POX binding with the following binding elements: 1. HttpTransportBindingElement 2. TextMessageEncodingBindingElement( MessageVersion.None , ...) 3. A custom inteception channel that intercepts a message and Logs it in the following code void Log(ref Message msg) { ... using (XmlTextWriter writer = ... ) { msg.WriteMessage(writer); } msg = msg.CreateBufferedCopy(int.MaxValue).CreateMessage(); } When I try to write the message (bolded above) I get "The body reader is in ReadState 'Initial' and cannot be consumed." exception(detailed below) What do I need to do to be able to use the message System.ServiceModel.Channe ...Show All

  • Internet Explorer Development Internet explorer 7 MUI pack

    Hello, I have Xp pro with multi-language user interface for the dutch language(and other languages). What means that xp is basically english but everything else is in dutch (menu, help etc...) Now my problem started with IE7 install I wanted to install the dutch IE7 version but I got the error message that the language of the operating system is not supported by this download (IE7-windowsXp-x86-nld.exe) So I installed the english version that did work BUT now all my IE7 menu etc.. is in english now Is or will there be a MUI pack for IE7 that will change my menu' back to dutch If there will be a MUI pack when is the release date If allready available please send me the correct link. Help would be appreciated. ...Show All

  • SQL Server OLAP Cube from an OLTP (normalized database)?

    Hi All, I am new to OLAP and every book that I have read so far talks about creating an OLAP cube from a Star Schema (Data warehouse). I want to ask that, is it possible to create a Cube in Analysis Services from an OLTP (normalized database) without creating any star schema I understand that the first concern is performance. Regards, Ravi S Hello. Sorry. These features are not available in AS2000. You will have to build views in your OLTP-system in order to build cubes. AS2000 only supports starschemas as data source. Regards Thomas Ivarsson ...Show All

  • Visual J# Help With FileSystemWatcher Please

    Hey all, I am having trouble with a FileSystemWatcher. It is not acknowledging changes in a file. I have the FileSystemWatcher's NotifyFilter set to Size in the properties menu. I have the filter set to a specific file because I want it to only watch that file and the directory set to the directory where the file is. So here's my code: public void button_start_Click(Object sender, System.EventArgs e) { try { FileSystemWatcher LogWatcher = new FileSystemWatcher(); LogWatcher.set_Path(optionsForm.getLogFileDirectory()); //Directory of the log file LogWatcher.set_Filter(optionsForm.getLogFilePath()); //Path of the log file LogWatcher.add_Changed(new FileSystemEventHandler(OnChanged)); LogWatcher.set_EnableRais ...Show All

  • Smart Device Development GPRS Connect at Startup

    Hi again (again), Last question, I promise. I'm looking to start the GPS up wen the device starts. I don't mind changing hte registry for this, or doing it programatically. All the stuff I have found is either for C#, or the registry info doesn't exist in my phone. Once again, any help would be very appreciated. Cheers, Dan. I thought Connection Manager was a C# class. I tried to implement it in my code, and it just refused to recognise it. I added the header, ad<something>.h, which didn't seem to work. Googling it, I foudn something about jagpublic.h. I didn't see mention of this in the MSDN Library though. ...Show All

©2008 Software Development Network