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

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

FlatBeach

Member List

gary_gill
nano2k
marktait
George Longmire
robin l
dbrasco
Bogdan Crivat
C# Learner
unclejim
Ramyakeerthi
Berinfo77
Mihaila
Genesis_85
vmelton
Kevin Herring
Adam2000
Ahmed.H.Hassan
Myles R.
Rajesh Govindasamy
Mike1820
Only Title

FlatBeach's Q&A profile

  • Visual Studio Team System How to config the TFS client to access TFS Source control on another port?

    The TFS in our company is behind a fireware and on this fireware we setup a port tunnel by which the port number 1345 on fireware is mapped to 8080 on TFS. Now how can I configure our TFS client to access TFS through this port(1345) We only need source control, so only one port (8080) is mapped. Thanks! Go to VS, Tools/"Connect to Team Foundation Server..", then click on Servers button, and you can create a server mapping ...Show All

  • .NET Development ADD DATABASE TO WEBSERVICE, HOW TO?

    hi, i'm a real noob in webservice && database.... i need to build a webservice that access's to a database built in the same place.. i've built an database in a PDA, and the connection was easy cause there are objects to make the task more simple... but in the webservice i need to write all the code down, and i dont know what i need to do! any help will be great... cause i dont understand any of this... tks por ur time ...Show All

  • Visual Studio Connecting to Object Collections in VS.NET 2005

    Hello All I am trying to create a report in a Website that uses a class for populating data. I've followed the example in http://www.businessobjects.com/products/dev_zone/granville_beta/GranvilleBetaOnlineHelp/ step by step, but in the Report Wizard (after building the solution) when i choose the Vendor class I get the following error: Logon Failed. Details: crdb_adoplus : To access classes in your project at design-time, please build your proj ...Show All

  • Visual C# Formatting a string

    hello all, Can u please tell me quivalent of below string in C#.NET strVehiNumber & " " & strVehiLocation & Chr(13) & strVehiTime & Chr(13) &strVehiSpeed & " Kmph" specifically,How to insert chr(13) in my C#.NET string Thanks , Anil Dhiman In C# you can insert any hexadecimal value in a string using the \xHH[HH] escape sequence like so: string str = "He ...Show All

  • SQL Server SQL Server 2005 JDBC Driver 1.0 error in using XA datasource

    We are in the process of configuring a j2ee application with SQL Server 2005. We have downloaded the new version of SQL Server 2005 Java Database Connectivity (JDBC) Driver 1.0. We are having some issues in getting it to work using the XA datasource. Description of the error is as follows: javax.transaction.xa.XAException: java.sql.SQLException: Failed to create the XA control connection. Error: Could not find stored procedure 'maste ...Show All

  • .NET Development Loading external assemblies that are not strongly named

    Hi,   I have a project which references an assembly that is external to the application (it is not in the bin directory of the project or in a path relative to the application).     At runtime I use reflection to load the assembly from a supplied path.   The exception ‘System.IO.FileNotFoundException’ gets thrown.     The external assembly is not strongly named and so I cannot use the ‘codebase’ ...Show All

  • Visual C# adding Favorites Functionality from IE to a Form??

    What needs to be done to add "Favorites" Functionality to a Form like in Internet Explorer I'm not sure what needs to be done to get that kind of Functionality in my Project.. Thxs for the Help in Advance.. Ok that Fixed it..The only thing i Did was to Remove the Picture Box as its not Needed now..Everything Resizes and the RichTextBox Shows and Closes,With the Web browser Expanding to the Enti ...Show All

  • Visual C++ template template parameter C3200 compile error

    Hi, The following C++ code generates a C3200 compile error in the retail release of VS 2005, which seems to me to be a compiler bug. Anyone seen this Know a workaround template < class P> class RefCounted{}; template < class T, template < class > class Policy > class tSmartPtr : public Policy< T >{}; template < class T> class InterfacePtr : public tSmartPtr<T, RefCounte ...Show All

  • Windows Forms Cancel Selected Index Change of ListView 2.0

    I have a ListView with information in Detail View with SingleSelect, when I select a item from ListView other control update information and I can modify, I keep tracking of information changed, and when the user select other item from ListView I whant to ask him if he want to save, not save or cancel selected index change. I implemented first two, but in third I don't know. Can anyone help me. thanks ...Show All

  • SQL Server Scheduled Jobs & emails ( Sql 2k)

    Hi All, The name of the Server was changed which in turn gave me the following error when I tried to delete the jobs Error 14274: Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server. The job was not saved. Knowing that it has to do with the Originator server in the sysjobs table; I hacked the table ( now I think not a good idea ) and deleted all the jobs that I wanted to delete and ...Show All

  • Visual Studio Team System Error 1305

    I am trying to re-install my Microsoft Office 2000 from CD and get this message Error 1305.  Error reading from file: D:\PFiles|MSOffice\Office\Bitmaps\Dbwiz\TIMEBILL.GIF.  Verify that the file exits and that you can access it.   What does this mean and how can I correct. I'm afraid no one on this forum is likely to have an answer.  I'd suggest trying a forum for discussing issues ...Show All

  • Visual Basic unable to cast COM object error

    Hello, I am having a strange problem that I can't seem to figure out. I am using visual studio 2005, visual basic, .net 2.0. In my application I am using the Microsoft Internet Controls COM object to automate an Internet Explorer instance. The whole application runs fine in debug and release on my development WindowsXP machine. When I publish the project to Windows Server 2003 to run as a release, I receive the following error. I was read ...Show All

  • Visual FoxPro small test on transaction atomicity

    Need help with small test on table in database with transaction. Could somebody show state of table after execution this code: CLOSE ALL CLOSE DATABASES OPEN DATABASE "c:\ path to database\data1.dbc" SHARED BEGIN TRANSACTION UPDATE data1! table 1 SET name = 'BBBB BBBB BBBB BBBB BBBB' = Messagebox ('END TRANSACTION') END TRANSACTION if in table1 before execution was 500K records with value "AAAA&q ...Show All

  • .NET Development add reference of winforms exe to another

    hello all, i am made an application in vb.net and another in c#.net. I want to add reference of c#.net application to vb.net application. How can i do so please write soon! thanks Hi! You can reference to dll-assemblies, not exe. So your C# must be in Class library or Control library assembly. Also what do you mean reference Embed some control and use some class or launch external C# application from VB ...Show All

  • Visual Studio Express Editions Create button Dynamically

    Hi, How to create button in VB dynamically(Prefer using array) After created the button how to set the click event Thanks. Hello. Control arrays are gone forever but you can do something like the following to dynamically create a control and handle its events. You'll just need to use an AddHandler to point each event you want to handle to whatever routine you've designed for it. Here's an ex ...Show All

©2008 Software Development Network

powered by phorum