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

Software Development Network >> Ted.'s Q&A profile

Ted.

Member List

kbromer
hazz
Learning VB
dagfari
shinji360
spagbol
Tigers21
Purnendu
Paulustrious
Rajani N
Ramanuj
gherold
airwalker2000
Darren Ford AUS
haryindsfjdbf
arc_dev
Tom_Liu
Shughes
SerratedSoftware
Perry Choy
Only Title

Ted.'s Q&A profile

  • SQL Server backup win98 files and restoring to winxp?

    I have some bookkeeping files that were saved using win98 backup that i need to restore to my accounting program on my winxp computer.. i have no idea how to do that. The files that are backed up belong to the same program on both the win98 and winxp. ...Show All

  • Visual Studio Error Logon

    I have read a lot of posts on what people did but it seems like everyone did the same thing but i dont understand any of it. I have VS 2005 and when devloping reports they run fine on the development machine but when moved to the server and accessed from a client machine inside the network a page comes up asking for login information. I have intergrated windows auth into the intranet site. How do i get rid of this page and just display the report here is the code to my file <% @ Page language ="C#" masterpagefile ="~/MasterPage2.master" autoeventwireup ="true" codefile ="closeouts.aspx.cs" inherits ="Closeouts" title ="Untitled Page" %> <% @ Regist ...Show All

  • Visual Studio Express Editions Flash Button in WebBrowserControl - Must click outside of flash to work?!?!?!

    Hello, all. I am trying to use flash butoons within the webbrowser control, but for some reason, you must mouseclick outside of flash (anywhere on the surrounding html page) before the buttons will work. I have to click outside first before every single mouseclick of the flash button. Is there anyway to fix this Thanks. -kaanuki- After reading around, it appears that this is a bug in the webbrower control. The only current fix is to use the older AxWebBrowser Control. Tested this and it works perfectly. However, AxWebBrowser is very limited, as it cannot disable the right click context menu like vb2005 webbrowser can. ...Show All

  • SQL Server Handling Dataset in Stored Proc.

    Hi, I want to create and populate a dataset from store procedure with following to querires & return the dataset as a result. Select * from billmain where billno = 12 Select * from billdetails where billno = 12 I am currently performing this task aa a resultset. Now I want to use Dataset. Anybody can send me sample sp which returns dataset as a execution of the sp. Nilkanth Desai You can return more than one SQL Server resultsets from a single stored procedure, see the example below. Chris   CREATE PROCEDURE SelectTable @billNo int AS SELECT columnName  FROM BillMain WHERE billno=@billNo SELECT columnName  FROM BillDetails ...Show All

  • Visual Studio Team System tfpt treediff - I'm missing "Get specific version..."

    Hi, Using the treediff feature in tfpt, could often be done with the purpose of detecting files, deleted by mistake in the local folder. This is nicely detected, but to get the missing file from the server, "Get latest" isn't enough - you have to "Get specific version..." and force the get from the server. It would be nice to have this command in the treediff view! Regards, Carsten Upon further investigation, we feel that Get Specific Version is nice to have but Get Latest Version is much more often used. In the spirit of keeping TreeDiff simple, we'll refer that functionality back to the Source Control Explorer. Thank you for your feedback. -Tan ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Fix mdx 2.0 on Microsoft Robotics Studio

    there is a timebomb in the directx dll on 6.october if i was microsoft i say tanks fo the tip and implant physics api into xna  best regards   [moved thread to DirectX general - its not XNA related] I know someone in the Robotics group and they are aware of the timebomb - though I do not know what they intend to do about it. I will see if I can get an answer about the robotics studio and leave the thread open while I check. However this is on the verge of being off topic for this forum. ...Show All

  • Windows Forms A challenge. Text to binary, and back.

    In my windows forms application I need to develop a method to convert a string to binary and then back again. This is going to be a simple way of user authentication to secure the data. Aside from that conversion I will be doing another conversion with it to secure it even further. The only part I need to know how to do is the binary to text and back. Here's my logic: User inputs password -> Converts to binary -> my conversion -> finalized password User retrieves password -> my conversion -> converts to string -> original password Okay, it displays the full byte array in the second text box like it is supposed to. Now I am having problems getting its string value from the text box content. (This binary data is goin ...Show All

  • Visual Studio Express Editions Problems with writing data to an Excel file

    I searched online, and find some materials about exploring data to Excel using C#, however, it usually relates to ADO.NET or datagrid... In my application, first I receive data from the COM port and then after some comparation, I should write each data I received to the desired column of the excel file.. I use the streamwriter to write data to excel file using (StreamWriter sw = new StreamWriter((@"C:\" + DateTime.Now.ToLongDateString()+".xls"),true)) As I need to record the date when the application runs, I have to name the file as the current date, so it is quite different from many examples to create a new Excel application as: private Excel.Application m_objExcel = null; m_objExcel = new Excel.Ap ...Show All

  • Visual C# Create newline in text box?

    Is there a way to create a newline in a text box I have tried "\n" but this doen't work in a text box. Thanks, Make sure that the TextBox’s Multiline property is set to true before trying to add new line characters. As for the newline character(s) themselves... in Windows \r\n is the proper string however you should think about using Environment.NewLine as it is a little more... platform independent. ...Show All

  • Visual Studio Team System get latest on checkout macro

    We just started using team system, and were switching over from vss. We're used to the vss get latest on check out way of working. I know there's a million reasons given as to why this is taken out in team system...but our team wants it to work the regular way (it's to the point where superiors will can the product if a workaround isn't found). It's currently our only draw back to fully using team systems for all internal projects. I posted the macro mentioned on other posts to accomplish this functionality below. My question is how do you set this up to work Does it work automatically when you check a file out Do you have to bind it to a button that you hit when you check it out Any help or solutions will be greatly appreciated. ...Show All

  • Smart Device Development RTC API -> Windows Mobile 5.0 for SmartPhone -> C#

    Hi! I'm facing another problem. I need to migrate a VoIP application from a normal Windows application to a Smartphone. This application makes use of the RTC API but I think that for the WM5.0 platform I need to make some changes on the API. Anyone know if it's possible to use a RTC API, in C#, with a SmartPhone Thanks Windows Mobile 5.0 PPC and SP share the common API infrastructure so you should be able to use your RTC API using C#. Checkout this article http://msdn.microsoft.com/library/en-us/wcertc/html/cmconRTCArchitecture.asp Manav ...Show All

  • Visual Studio Express Editions CheckedListBox simple question

    I have a CheckedListBox with 10 items in it. None of the checkboxes are checked. How can I programmatically check a specified unchecked checkbox or uncheck a specified checked checkbox I hope that tongue twister makes sense to someone. Thanks... Private Sub Form1_Load ( ByVal sender As Object , ByVal e As System . EventArgs ) Handles Me . Load For x As Integer = 0 To 9 Me . CheckedListBox1 . Items . Add ( "Item" & x ) Next End Sub Private Sub Button1_Click ( ByVal sender As System .Object, ByVal e As System . EventArgs ) Handles Button1 . Click 'check all For x As Integer = 0 To Me . CheckedLis ...Show All

  • Visual C++ C2027 Error: Full class declaration required: Bug?

    Hi, This may touch on some obscure corners of the C++ standard, but I believe the example below should compile as is, without the full declaration of class Atom. Comments Thanks. Stuart ____________________ // Shows VC++ 2005 Bug Requiring Full Class Declaration Where Forward Declaration Should Suffice // Compile: cl /EHsc forward.VC.bug.cc (other options didn't make a difference) // Error: error C2027: use of undefined type 'rosetta::conformation::Atom' // Compiles without warning on: GCC 3.4 and 4.0, and Intel C++ 9.1 // Compiles if: // . Full Atom.hh header is included // , std::vector is used instead of vector1, // . vector1 dtor is made non-virtual // . typedef for Atoms_Iterator is removed // Something about the vector class hierarc ...Show All

  • SQL Server Data transfer

    Hi, Not certain whether this is the right forum to post this question - please advise. I am fairly new to SQL Server and need to know the best way to transfer data from one data base to another. For example: I have a database running via SQL Server 2005 developer edition and another running using SQL Server 2005 Express edition. If I do a backup on the developer edition I get an error and failure when attempting to upload the data on to the Express edition. What am I doing wrong can anyone advise Also what is the best way to add/remove/update stored procedures and or change the database table structures for a current database (MySql for example allows one to type command line calls direct to the relevant database to al ...Show All

  • SharePoint Products and Technologies Image displayed based on content type

    This is what I want to do and I want to know the best way to do it. I have defined a custom list A with six custom content types. I want to be able to link that list based on its content type with another list B that contains 2 fields (content type name and the url to an image of the content type). I do not want to have to select the image when creating the list item in list A because I have already selected to create an item of that specific content type. Additionally I do not really want the image url stored in the list A list item because I want the ability to change the url to the image for the item and then the view will change for all the items of that content type. Further I would like to be able to add another content type for list ...Show All

©2008 Software Development Network