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

Software Development Network >> Alfred R. Baudisch's Q&A profile

Alfred R. Baudisch

Member List

Jimmy Yu MSFT
Afsoon
Dawa
Daisy34001
smgraham
PhrankBooth
poiuyt
Henry Sigourney
Coolerbob
Barry Harkness
S.Sriram
Ahojko
new to .NET
Rory Surname
Belius
stcdereke
Tim2048
Share me
raws
Jaissy
Only Title

Alfred R. Baudisch's Q&A profile

  • Visual FoxPro Can't write to new tables.

    Hey, I was given the task of updating a project in .NET and foxpro. I opened up the foxpro database and added a couple tables. I can write to them from the command line, but I can't insert or update records through the oledb. The users have write access, and can write to any of the old tables, but not the new ones. I am doing this in VFP 6.0. I don't know what the version to make the originals was. What am I missing To be able to insert data naturally you need write access. Why don't you show your .Net code. Maybe when saying .Net you're talking about asp.net and didn't give aspnet account write ac ...Show All

  • Windows Search Technologies Search doesn't work.

    When I search for a file or folder, it will search for all of 2 seconds then say that there are no results. I even tryed searching for My Documents and nothing came up. What should I do Hi GiantSonic, Here are some things that may help: 1. Did you recently install Desktop Search If so, WDS may not have finished building the search index yet (this can take a few hours). This is especially true if you’ve been using your computer quite a bit since you installed the product. You can check on the status of your index by right clicking on the WDS icon (magnifying glass) in the system tray and sele ...Show All

  • SQL Server How to get a row committed

    I have a package loading up rows of employees from an excel file. An employee may be in the file multiple times. The package does a lookup and if not found it inserts the employee. When the employee is found it does an update. So in my file employee A gets added on the first occurrence in the file. On the second occurrence, the lookup does not find the employee and tries to insert a second time and I get a unique constraint. How do I make the first insert Commit so that it is seen by the lookup on the second occurrence. thanks I assume you are using the OLE-DB Destination. Open the component UI, and ensure you have select ...Show All

  • SQL Server Displaying a word document via Reporting Services?

    Does anyone know a way to (given a path to the file) display a word document via a reporting services report Thanks This is not possible out-of-the-box. You could implement a custom renderer to do this. You can publish Word documents into the Report Server catalog and browse them, though, you just can't embed them in reports. ...Show All

  • SQL Server Uploading images to SQL Express

    Hi, Could someone help me on how I can store images into my SQL Table I'm using "Image" as Column Name and I use VWD 2005 Express. I saw a lot of C# examples, but not VB.NET examples. Please help !!!!! Bart In VB6 I use Dim F As Long, Data() As Byte, FileSize As Long Open sFilename For Binary As #F                     FileSize = LOF(F) Data = InputB(FileSize, F) Close #F              rs2.Open "select * from catalog where catalog.[catalog-no]='123'", cn, adOpenKeyset, adLockOptimi ...Show All

  • Visual C++ error C3861: 'exit': identifier not found

    Hi, I'm trying to build an old code (main.cpp) where I'm using SDL. This is my first time using Visual Studio 2005 . I have included the following: #include <SDL/SDL.h> #include <stdio.h> #include <stdlib.h> int main( int argc, char *argv[]) { if ( SDL_Init(SDL_INIT_AUDIO|SDL_INIT_VIDEO) < 0 ) //SDL_Init will return -1 if it could not initialize { printf( "Unable to init SDL: %s\n" , SDL_GetError()); exit(1); } atexit(SDL_Quit); } I get the error : error C3861: 'exit': identifier not found. What am I doing wrong ...Show All

  • Visual Studio ADO.NET and Crystal Reports

    I'm upgrading a custom app from VB6 to VB.NET 2005. It’s a fairly basic app, glorified word processor . In VB6 I used ADO and VB6’s DataReports, in doing so I could bind my ado recordset direct to the DataReport. My question is can I bind an ADO record set directly to a Crystal Report I understand this can be via the viewer. But can it be done via a CR object and not the CR Viewer control Follow up question I’m requesting this info because I’m attempting to control the printer. I know this is easily done through the CR object. Can it be done via CR Viewer Thanks, Joe ...Show All

  • Smart Device Development Bug in VS 2003?

    I recently posted regarding a TypeLoad exception in Microsoft.VisualBasic http://forums.microsoft.com/msdn/ShowPost.aspx PostID=113878 It appears that my findings have highlighted a bug in VS2003 is this the case Also my work around seems inconsistent sometimes its OK other times it doesn't have the desired effect. Any ideas Thanks in advance. Sure. Please remove "online" from my e-mail. Also, please rename VB files to .txt and pack it all with normal zip, that would let it pass antivirus filters. Thanks. ...Show All

  • Visual Studio Express Editions Replace "

    I'm trying to get hyperlinks out of an HTML page and i need to be able to remove " from the string but obviously when i type string.replace(""") it has an error. Now I assume theres some sort of substitute that I can put in just not sure what it is. Wondering if anybody can help me out. Cheers Nick Dancer ok thanks very much. just for future reference is the character code the same as the ascii character codes ...Show All

  • Windows Forms reading updated part of file only

    Hi, I am trying to read a log file that has following content. 1 2 3 4 I simply read the file. Now after a few seconds the text file gets updated and looks like 1 2 3 4 5 6 Now the next time I read the file, I only want to read the newly added portion, which is 5 6 How canI do this My file reading code runs after a speficied period of time I am doing this right now but that does'nt seem to work. string temp; long newoffset = 0; Byte[] myByteArray = new Byte[200]; while (true) { FileStream fs = new FileStream( @"C:test.txt" ,FileMode.Open,FileAccess.Read,FileShare.ReadWrite); fs.Seek(newoffset,SeekOrigin.Current ); fs.Read(myB ...Show All

  • Smart Device Development Numeric Up Down Select All On Focus

    Ok, I've managed to use API calls to select all text in a numericupdown control, and this works... however, When I override OnGotFocus via: protected override void OnGotFocus(EventArgs e) { SelectAll(); } All text is selected with the select all statement, and as this function exits, the text is unselected. What am I missing as far as numericupdown behavior goes Thanks! Tried that... good idea, still doesn't work. Basically, it selects all, but when the function is done, it unselects all text. I'm thinking there is some additional call me made here. Any ideas Thanks! ...Show All

  • Visual Studio Addin for Visual studio 6.0(msdev.exe)

    Hello, I am trying to develop an addin for Visual studio 6.0(msdev.exe). I am using DevStudio Add in Wizard for it. It provided me default code for handling application events and debugger events. But my objective is to handle copy,cut,paste ,print commands in editor.These command are not the part of IApplication events or IDebugger events. Could anybody please help me in finding the best possible solution for this. As per my understanding Cut,Copy,Paste methods are part of ITextselection interface ,which i try to implement in my class,but unable to handle those events as there is no proper event passing. Thanks and regards, Ruhina. ...Show All

  • SQL Server Printing Blank in Landscape

    I've a report which is quite wide, and I'd like to print it in landscape.  In using the ActiveX control to change the print settings, the Preview looks great in Portrait, yet when I change it to landscape I get 8 pages of blank. If I change it back to Portrait, I get an error saying there was an error rendering the report. Has anyone had any luck with this Thanks. How can I get September build I did not find any hotfixes on September or later on MS download center. ...Show All

  • Windows Live Developer Forums Activities Menu Unavailable

    I've noticed a number of instances with users not being able to access our P4 application because the Activities menu is consistently unavailable.  I have witnessed this situation myself over several  home broadband connections and the Activity list comes up with the following message: "List of games or activities is temporarily unavailable. Please close and try again later." I initially thought this was due to a restriction on the client machine's network, but this has happened to me in my own home after a recent move.  I've changed nothing...even my provider is the same, but the Activities menu is inaccessible from home. ...Show All

  • Windows Forms Does "ClickOnce" download the entire application every-time I update it?

    Dear Developers! I read this on the FAQ page: Q. Does "ClickOnce" download the entire application every-time I update it             A: No. “ClickOnce” only downloads the files and assemblies that have changed.   Can someone tell me how to achive that   Thanks in advance! But why that answer on the FAQ page A: No.&nbs ...Show All

©2008 Software Development Network