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

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

Walter30140

Member List

Jean-Jean
Sarath.
CS05pp2
Jakein2006
Munzer Enayah
sanwanas
vaughanSkyblue
Stanomatic
nka4
SomeDeveloperPerson
Simon Telling
Rohit Ghule
Closer
pkarun
Pawnder
RobinSpicer
tackett
han33981
Diki
corsebou
Only Title

Walter30140's Q&A profile

  • .NET Development Searching Database for results

    Hi everyone i needed a little help with my coding what i wanted to do is allow my users to search a table in the database for links that are stored there for a user searches for a ringtone by a artist and the search returns any results with that value to the sure to be able to download the ringtone. I am using ODBC as well all help is appreciated ok thanks alot ahmedilyas  got everything working fine one thing Say if one of the cells have a link to a file how do i make the link in the cell a hyperlink. So that when that cell is click it will take them to the link that is in that cell.   ...Show All

  • Visual Studio ActiveDocument.Selection.Text Error when editing c++ files

    I created and used this macro with Visual Studio 2003 but with Visual Studio 2005 it does not work. I have removed most of the macros contents to show the bug with ActiveDocuement.Selection.Text Macro Contents Line 1 Sub Upgrade_File_To_ACE_TEXT() Line 2 Dim lOriginal As String Line 3 Dim lNew As String Line 4 DTE.ActiveDocument.Selection.SelectAll() Line 5 lNew = ActiveDocument.Selection.Text Line 6 ActiveDocument.Selection.Text = lNew Line 7 End Sub C++ File Contents // This software contains confidential information, trade secret information // and/or know-how which is the property of xxx Corp. The problem is with line 6. When it encounters a c++ comment line with a comma in it crashes with error 0x80004 ...Show All

  • Visual C++ fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 2701)

    Hello, I am using Visual C++ .NET 2003 (7.1.3088) and get the above error message when I try to compile our code. The strange thing is: Exactly the same code (fresh checkout from the source control) compiles fine using exactly the same Visual C++ .NET 2003 version on another machine. I found some KB articles on this, but they all mention causes for this trouble which should make the compile fail on both machines (in fact we have three machines where it compiles fine and only one where it fails). I am suspecting that this is some strange problem with missing includes... Any hints Thanks! T. Thanks for the info, there is about 50 GB of free disk space, I also did the "delete everything and checkout fre ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. BoundingBox.intersect() position of intersect?

    Is it possible to get which side of a bounding box has been intersected after two boundingboxs have intersected I can't seems to find anything in the documentation. if (bb.Intersects(alien.bb)){ // the boxes have collided but where } I asked a similar question. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=683944&SiteID=1&PageID=1 doesn't seem that there is anything built in, the interect just allows you be notified if they are touching ,it's up to you to see where and how. ...Show All

  • Visual C# Buiding a Resource String File

    Hi, I'm a bit new to C#, comming from a delphi environment, but have been through quite a numerous amount of tutorials and have learnt a good amount. But for now, i have the issue of trying to figure out how to make a resource string file in C# and use it. Second Question - How do i use ansi strings in C#.  Such as 32 for space and 13 for enter and the such Thank you, one last question, is there a simpler way to use ASCII, why, because it is intended to be concatenated with an existing string: for e.g. in delphi i would do const _rsDefaulMessage= 'Your account is currently disabled. '+#13+'Please contact your administrator.' ; and that constant would out put the string as one text, but with the return character in place of the ...Show All

  • SQL Server Reports subscription

    Hello to everyone! I have a question. I need to create subscriptions for set of reports. I have a task to send it via e-mail but I need to be able to send not to e-mail but for user name from Global Address List or for whole groups. When I just type user name from that list I got an error that invalid e-mail. Is it possible to do it or I need to use e-mail Thanks, You would need to use e-mail to send to email addresses. SQL RS can't talk to Outlook. You could probably write a custom wrapper to convert user names / distribution lists to email addresses, and append to the subscription. Alternatively you should be able to setup the subscriptions using a command line or script. http://www.sqldbatips.com/showarticle.asp ...Show All

  • Windows Forms Duplicating MS Access Continuous Subform Functionality in .Net

    Hello All, I'm currently writing an Inventory Control and Invoicing program for a friend.  I statrted writing the app in MS Access and found that I couldn't get the level of control I needed.  Rather than write it on old VB, I thought I'd try writing it in .Net.  My main form in Access consisted of one main form and two subforms.  The main form was Customer Information, the first subfor ...Show All

  • Visual Studio Symbols loaded (source information stripped)

    Hi, I'm pretty noob and im just trying figure out my Visual Studio C++ 2005 Express and get it to do a first debug on a HelloWorld and I get these errors 'Hello World!.exe': Loaded 'C:\Documents and Settings\Mike\My Documents\Visual Studio 2005\Projects\Hello World!\Debug\Hello World!.exe', Symbols loaded. 'Hello World!.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Symbols loaded (source information stripped). 'Hello World!.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Symbols loaded (source information stripped). The program '[2944] Hello World!.exe: Native' has exited with code 0 (0x0). I've been looking around and I guess it would be helpful to tell you my Symbol File (.pbd) location list C:\WINDOWS\Symbols\dll http://msdl.microso ...Show All

  • Visual Studio Express Editions Serial port communication and exit application

    I would like to start off by saying I have no idea what I am doing. I am trying to piece together a very simple program that will send 4 bytes of data to the serial port (com2 to be exact). I have downloaded Visual Basic 2005 Express Edition and using this forum have come up with the following which works to a degree. It gets the info sent and the device I am controlling does what its suppossed to do. Only problem I have now is the application will not end unless I click to close the window. I have seen lots of people get referred to a "console" program but when I try I get no tool for serial port and get lots of declarations errors. All I need is this code to get sent and the app to close and it has to do it without user interve ...Show All

  • Visual Basic Text not showing up in Listbox

    I have the same problem as is described on some forums: When I create a listbox, and add a number of items, the items are added, but their text is not displayed in the listbox like this VB.Net listbox add items but their text is not displayed in the listbox ListBox is displayed there, however, it has no items in it yet Text not showing up in Listbox - MSDN Forums When I build and debug the program, I get the listbox with no text displayed. However, I can click where the text should be, and I can tell there are 4 elements in the listbox. Yet, I can't seem to get them to display. I have checked the foreground and background colors, and they are set to default. The problem is your antivirus (mcafee). Download this patch http://s ...Show All

  • Microsoft ISV Community Center Forums connection to foxpro datasource from excel vba

    i have tried many approaches but i can't seem to connect to a foxpro database from excel this needs to be dynamic odbc and i don't seem to know how.. can anyone please help ...Show All

  • Visual C# How TextBox,Button etc be packaged to Array

    Any one can tell me how the TextBox,Button etc be packaged to Array, i have developed a form with verious control as textbox, combobox etc, i want to reset its fields, i want to add all textbox and comboBox to an array and then using loop reset them instead of writting code like textbox1.text=""; textbox2.text=""; textbox3.text=""; Thanks it started work if textbox is out out of groupbox, i placed a text item on empty form and a button, after clicking on button with same source code it reset the textbox text. so what to do when textbox be inside a groupbox Thanks ...Show All

  • SQL Server A transport-level error has occurred when receiving results from the server.(provider:TCP Provider,error:0-The handle is inv

    Hi, I am using SQL Server 2005, while trying to retrieve data from the database; I am getting the following error: A transport-level error has occurred when receiving results from the server. (Provider: TCP Provider, error: 0 - The handle is invalid .) But I am getting this error randomly. Can some one help me out Waiting for your response Sudhakar Hi Sudhakar Please can you be a little more specific. Are you getting this error in SQL Query Analyzer Are you getting this from some sort of Access or .NET front end application Or is it from an ASP application if you provide a little more info im sure we can work this out. Barry ...Show All

  • Smart Device Development from eVC 4.0 to Visual Studio 2005 Pro (urgent)

    When Iam trying to convert project from eVC 4 to Visual Studio 2005 Pro I got an error called " fatal error C1189 " C:\Program Files\Microsoft Visual Studio 8\VC\ce\atlmfc\include\afxver_.h(77) : fatal error C1189: #error : Please use the /MD switch for _AFXDLL build " Could someone help me, Ho can I fix this proplem .. ...Show All

  • Visual C# How do i inherit from a base from that requires parameters?

    i have a base form that requires a string and an int. when i try to inherit from this i get an error 'no overload method takes 0 arguments'. where do i need to add the parameters in the new form Thanks. Do you mean that the base class' constructor takes two arguments If so the syntax would be class DerivedForm : BaseForm { public DerivedForm() : base("string", 42) { } } ...Show All

©2008 Software Development Network