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

Software Development Network >> Lino!'s Q&A profile

Lino!

Member List

Ariel Weinstein
webber123456
phileb
Frederik Carlier
Mild Bill
Winnie Ng - MS
Thomas Freudenberg
SailFL
PoulErik
Philip Painter
John Lynch
Grant McElroy
Douglas Olson
J/-\Y
Carver42
Jeff Bevans
Benjamin Coats
S.Sriram
ploplo
new to .NET
Only Title

Lino!'s Q&A profile

  • Visual C++ Tab is not working with my VC++ Dialog !

    Dear All, In my VC++ Dialog, Tab is not working when ever i call that dialog from the Menu. However Tab works absolutely fine whenever I call same Dialog from another Dialog. I have tested it, Tab on My Dialog (say Dialog-A) works fine when ever i called it from another Dialog (say Dialog-B). But when ever the Dialog is called directly from the Menu, Tab doesn't work. I am really struggling to get rid of the simplest thing (As I am ne ...Show All

  • SQL Server How to get a handle of my queries

    Does anyone knows of a tool that will help me manage my queries I have 100's of them and all scattered. On my PC at home, some of them on my laptop, some of them at work, some in memory sticks. Then, when I need them I can't find the one I'm looking for so I end up writing the query again. Any ideas Hi, snippets are small chunks of code which will help you to avoide to code recurrent code chunks which you wi ...Show All

  • Windows Forms Control Name property

    Is there anything special about the property of the name of a control. The name property does not show in propertygrid for my custom controls. The other properties are fine. Anybody knows why Thanks. Yes,the property has been decorated with the Browsable attribute and set to false. [ Browsable ( false )] public string Name { get { } set { } } This is used internal ...Show All

  • Windows Forms Class Event triggering a method on a Form...

    Hi all, i have a Class that handles Barcode scanning functionality, and a Windows Form that contains an instance of this Barcode class. One of the Properties of the Barcode Class is an Event, which is triggered when the user executes a successful barcode scan. What I want is to be able to somehow call a method belonging to the Form from within the handled event that sits in Barcode class. How can I do this The extremely watered down code is belo ...Show All

  • .NET Development Security issue with using .NET to consume J2EE web services

    Hi all, I am currently working on .NET(C#/ASP.NET) client with Apache/Axis/UNIX Web Services. The server is using Basic Authentication . I created a proxy as usual by adding web reference with the WS URI. And also, I created a service object as below: " EventService service = new EventService(); service.url = "web services URI here"; X509Certificate x509 = X509Certificate.CreateFromCertFile(Server.MapPath("SSL CERT NAME") ...Show All

  • Smart Device Development Compact Framework 2.0 & FTP

    Is there a way to transfer files from a Pocket PC (Windows Mobile 5.0) to an FTP server   I thought FTP functionality was available in system.net.webclient (I read this from another post), but I don't seem to have a webclient class (Compact Framework 2.0). Any help would be much appreciated. I had the same problem : "Not supported Exception". Here, it's the solution to connect on a FTP server from Windows Mobile 5.0 ...Show All

  • SQL Server Login failed for user 'username'. The user is not associated with a trusted SQL Server connection

    Hi All, I understand this has probably asked a gazillion times... BUT I have issue with the solution... ( I DO NOT WANT TO ENABLE SQL Server Authentication) I have developers that need to manage MANY SQL Servers.. some in domains some not.. some develpers boxes are in domains.. some not. I DO NOT want to have sa or any other password for that matter flying around the net in the clear (i.e. SQL Server Authentication). I would like for t ...Show All

  • Visual C# Storing a value that a user inputs.

    Im Sorry if this may seem a little confusing. I am relatively new to programming altogether. I have only been doing this for a few weeks now in my spare time, so I appologize if I ask something stupid. I have been searching these forums, and msdn, but im not even quite sure what to be looking for. Heres my problem: I am creating a simple program that the user will input values, such as name, age, gender, etc. and then go through various ...Show All

  • Visual Basic Connection String To Northwind

    Since I have been trying for some time to populate a treeview with a database, I am excited to see this thread. As cited above, I am working with the linked article ("HOW TO: Populate a TreeView Control from a Dataset in Visual Basic .NET" - http://support.microsoft.com/ kbid=320755 ), but not yet able to get it to work. The problem seems to be in "modifying the connection string to point to the Northwind database on your SQL server." When I ...Show All

  • Visual Studio Tools for Office Create forms and get data in/from Word documents.

      I'd like to be able to create a word document that has form fields. Then, I'd like to be able to retrieve the values that the user has typed in. Oh, and I'd like to do this via ASP.NET. Does the VSTO offer any better automation work arounds for dealing with Office documents using ASP.NET Let me try to address this from a Microsoft Visual Studio 2005 Tools for the Microsoft Office System (VSTO 2005) perspective. In VSTO 2005, w ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Adaptive, temporal Anti-aliasing

    Hello, how do I enable ADAPTIVE or TEMPORAL anti-aliasing modes in the Direct3d API I dont think you do - the various AA modes seem to suffer hugely from various PR and marketting spin when it comes to naming. It might be possible to request a particular combination that the driver can interpret as being one of the special modes, but what (if any) such combination is going to be IHV-specific. The Direct3D A ...Show All

  • Windows Forms Can there mixed row types in DataGridView?

    I have an unbound datagridview.  I need to display data in different row formats.  I.e. first row may have just one column spaning the entire row with some title information,  then n-number of rows of following a second template. -+-----+------+----+--------+-------------------    Hdg1  Hdg2  Hdg3  Hdg4  ... -+-----+------+----+--------+------------------- 0 TITLE --------------------------------- ...Show All

  • .NET Development Change address

    Hello, I make Web base for LAN (Local area network), Every user access, theirs type address like this " httP://Servername/Home.aspx ". how, the change address to become " www.mynameprogram.com Thank's Jebat Boedax's Malay Unfortunately you haven't really described you problem well enough for us to answer your question. I am not sure if you are trying to redirect a request to a different ...Show All

  • Visual Studio Team System How do I derive from TestContext class and implement from base members

    So, I see a lot of people are looking at this. But no one is responding to it.  It would be great if someone would be able to at least check the answer to verify it.  ---------- Im lazy, and somewhat new to OO. I am attempting to derive trom the TestContext class.  But am not able to use the base class methods when overriding the base class methods... namespace TestPlay{ public class newTestContext : Microsoft.VisualStudio ...Show All

  • Windows Forms Find the line control

    Dear all:  I want to find a line or Graphics object for winform like the line object (---->) in office word .  Regards  judy  thanks! my projects code used Graphics.DrawLine before .. but i want to  instead of using control &nb ...Show All

©2008 Software Development Network

powered by phorum