Batistuta's Q&A profile
Visual Studio Team System Visio for Enterprise Architects and Team Edition for Database Professionals
Hi there, I haven't yet performed the install but I have a question about Visio EA and DBPro. I have had a quick look around but haven't found a definitive answer to the question below... If I just have DBPro installed can I also install Visio EA or do I need to have an Architect Edition installed as well Cheers, James Visio belongs to the MS Office line, not to Visual Studio. The installation of one does not affect the other installation or the prerequisites.. HTH Alle ...Show All
Visual Basic IsDBNull problem
I am probably doing this wrong If IsDBNull(EDFRow.EStart) Then Me .EStartDateTimePicker.Checked = False Else Me .EStartDateTimePicker.Checked = True End If I get the error that the filed is dbnull Can someone please explain this. Davids Learning If ( EDFRow.isEStartNull = True) Then Me .EStartDateTimePicker.Checked = False Else Me .EStartDateTimePicker.Checked = True End If isEStartNull Method is provided by default for typed datasets. :) ...Show All
Visual Basic dropping files into windows explorer ?
Hello, I can't manage to drag items from a listview and drop into explorer, all I want to know is, when I drag an item and drop into a windows explorer, where (into which folder) the item is dropped Can anybody please help Thank you When you drop into explorer the item dropped should appear in the folder that Explorer is currently displaying. Can you post the code you are using to start the drag on your ListView ...Show All
Visual C++ make a dependatnt service
hi all i had made a service that beeps after a specified time interval.now i want that this service should be depend upon the some other services like RPC so that user cannot turn it off. or like RPC service whose stop button does not work or is disabled. Thanks in advance. If you use the .NET ServiceBase class, set the CanStop property to false. If you do this native, remove the SERVICE_ACCEPT_STOP flag from the dwControlsAccepted member of the SERVICE_STATUS word. Be careful doing this, beeping tends to drive users nuts. ...Show All
Visual FoxPro Visual Studio 2k5 Database tools problem with Fox pro 9.0 sp1 ole db provider
I have MicrosoftR Visual FoxProR OLE DB Provider 9.0.0.3504 installed. In the visual database tool, when I run "SELECT DATE() FROM MYTABLE", visual studio will give me the follow error: Error in SELECT clause: expression near ')'. Error in SELECT clause: expression near 'FROM'. Missing FROM clause. Unable to parse query text. However in visual studio 2003 on another machine, everything works fine. I tried to reinstall visual studio 2005 and the fox pro ole db provider many times. I still get the errors. Also, I remember it works on my friend's visual studio 2005. Can someone give me some help to fix this Thanks. Also, "Verify SQL Syntax" returns "This command is not supported by this provider&quo ...Show All
Visual C# New C# Keyword - retry?
I believe that C# could benefit from extending try-throw with retry keyword. Simple example of this would be: try { PerfomAction(); } catch(Exception ex) { DialogResult dr = MessageBox(ex.Message, "Error", MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Question); if(DialogResult.Retry==dr) retry; // Jumps to the begining of try block } IMHO: This makes for cleaner-looking and less bug-prone code than the alternatives with goto or loops. Since the windows SEH exception handling mechanism is a two pass system you could even do something like this: object o = null; void DoSth() { o.GetType(); } void f() { try { DoSth(); } retry { o = new ...Show All
Visual Studio Team System Team Build error MSB4019
I have a database project that I am trying to build and am getting an MSB4019 error on the the AfterDropBuild" task. The actual error is as follows Target AfterDropBuild: c:\build\Larrys test\DB\Sources\Database Projects\Database1\Database1\Database1.dbproj(74,11): error MSB4019: The imported project "C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamData\Microsoft.VisualStudio.TeamSystem.Data.Tasks.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. Done building target "AfterDropBuild" in project "TFSBuild.proj" -- FAILED. Looking at the build machine I do not see the missing object although there is a folder called TeamBuild that contains Mi ...Show All
Audio and Video Development New visual creating tool...
check: http://www.dvd1one.net/network/content/home/tool.asp Hi Rakesh, DoStudio is a visual tool for creating advanced content for HD-DVD, most of the questions being asked on this forum about techniqies for implementing features such as dynamic text, listening to various events are implemented in DoStudios API as well. If you or anyone else has any any questions please contact me directly and I can answer them. Thanks, -Denny B ...Show All
Software Development for Windows Vista Poor User Experience on failure
Hi folks. I'm a bit disappointed with the user experience you get when you fail to authenticate with Cardspace. I'm trying to authenticate with a username/password token, and if I've got a network error, an internal server error or I give an incorrect password, or even if my account is locked out due to too many failed attempts, I see the same generic error - essentially "please check network connections, credentials and try again". This is a really poor user experience that will only serve to frustrate users and increase support calls to my organisation. Cardspace really needs to distinguish between something being our fault, the users fault or the network's fault. As an STS, I'm actually returning one of the correct WS ...Show All
Visual Studio Express Editions Setup problem.
When I launch the msvcs.exe or the msvc.exe they get to the point where it says " Setup is loading installation components. This may take a minute or 2." It's been like 5-10 right now, is there a fix Tyrael I had the same problem as well. When I went into task manager I saw setup.exe was also using up all my cpu cycles. I couldn't even get the program to close! What I ended up doing was freeing memory and that caused the program to start running again. After reading things on this forum I wonder if it wasn't my antivirus interferring with it. I would recommend shutting that down and see if it installs. Hope this helps! ...Show All
Visual Studio Team System tfpt annotate - unable to connect to the remote server
I'm attempting to run tfpt annotate from the command prompt. I opened a command prompt, and moved myself into the directory in my local workspace folder that contains the file I am interested in. When I run the command "tfpt annotate <myfilenamehere>" I get the following error message: Team Foundation Server <mytfsnamedeleted> does not exist or is not accessible at this time. Technical information (for administrator): Unable to connect to the remote server. Using the Source Control Explorer, I can use the GUI annotate command and it works fine. Any suggestions on what I might be doing wrong from the command line Thanks Kevin! That did it. The folder I was in was not actually mapped in my workspace. T ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Microsoft.DirectX.Direct3D.NotAvailableException was unhandled
While coding Microsofts/digipen's webcast class: http://www.digipen.edu/main/Webcast/Introduction_to_2-D_Video_Game_Development Session 5 I get the error below. Yet in session 4 the error does not occur. The only difference between the two is adding more sprites, moving them, and mirroring them depending on which side of the shooter they will appear on. I do not know enough about either the code or c# to figure it out. So I hope others have done this tutorial and found the answer. Also regarding this tutorial, all the sprites show a black box even though they are set to be transparent: Picture trooper01 = new Picture ( "trooper01.bmp" , Color .FromArgb(0, 255, 0)); 255 meaning grn will be/is the transparent c ...Show All
Windows Forms Adding Row header a text in datagridview
hi all, Can anyone tell how to add the rowheader a text in datagridview using visual c# Thanks. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=298522&SiteID=1 please look at that thread ,i hope it will help ...Show All
SQL Server Hypertext link in a report.
hello : On a hypertext link in a report, how to open the link in a new window IE. Thank's. Thank's: but : I I use the properties of a zone of text, and I put in anglet Navigation towards another report(relationship). Thus I do not know or I put your code. ...Show All
.NET Development Raw Sockets?
Is there a way to use raw sockets in vb.net Please not some operations are limited when using raw sockets on Windows: please see here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=431824&SiteID=1 The blog meantioned above is here: http://blogs.msdn.com/feroze_daud/ ...Show All
