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

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

GoDaddy

Member List

Oliver_Schwarz
Ron L
GaneshT
llorrac
meighlough
ILoveOregon
Jens K. Suessmeyer - MSFT
borice
Yassi
manjunath cv
dreameR.78
gazcuex
darkwarrior0404
Yassi
Marie-Thérèse
Gregory_23_PL
juryq
palmirag
Kris2006
Anna Vanyukova
Only Title

GoDaddy's Q&A profile

  • SQL Server How to use both auto generated id and a guid in database

    I downloaded the AdventureWorks OLTP Schema and am trying to use some of the design concepts that are used in this example but I don’t quite understand some things. First there is a column named rowguid, at the moment I assume that this is a GUID. If this is wrong most likely my next question will make no sense. Second if that is indeed a guid all the tables have another id; example would be Employee table would have employeeid and rowguid, why do this My best guess is that you would use the guid to easily insert (linked/sync) data into multiple tables without needing to retrieve the id from the table that was first input into. My scenario would be inserting an employee; to insert an employee you need to create a row in t ...Show All

  • .NET Development Ping, packets, TTL and losses

    I have done a fairly good search and had found some good code that I was able to use. I have been programming in VB only for a while, thanks to the Express 2005. Well a good friend and I are working on a progam that sends requests over the network. What we want to do is first list all the computer on the network, which isn't that many. We want to to pull the IP of the connected computer and maybe the MAC address and computer name. We also want to send a ping and get the losses. I'm new to the system.net but have a lot of work with IOFile systems. Can any one help me with this in VB only EDIT: If some one could get me started on perhaps creating something similar to the Windows ping.exe program. I would like to start by sending the packets ...Show All

  • Visual Studio Tools for Office from a word document i need to extract some information and display in a text box

    from a word document i need to extract some information and display in a text box from a word document i need to extract name and email id and display in 2 diff text boxes Sorry for the delay, John i am using vb.net 2005 and in my window application in a form i have taken six different textboxes,one button and a opendailog box on click button i have displayed the opendailogbox and requesting the user to give the path of .doc file and my requirement is to parse this document and extract some information like name , email ,mobile no .... and fill those six textboxes mostely the document contains resume and from this document i should extract the name .email id..... ...Show All

  • Visual Basic ? Textbox

    I am probably doing this wrong BUT I put a form together with the following: Datagrid - all read-only and most of the cells hidden for a reason 3 textboxes from the same datasource as the datagrid Now when I select a record from the datagrid, the textboxes change accordingly to match the record that was selected in the datagrid, I can change a value in the textbox and update the datasource and it changes(everythings fine) but when I change the visible property to false, I run into a little snag. I cannot reference the textboxes content. I change change it back and its fine. How can you hide the textbox I changed the color of the box and text to the background color and you can still see the text. I also tri ...Show All

  • Visual Studio 2008 (Pre-release) Videostream

    Hi all. Been looking around with the aim of writing an app that can both preview and stream webcam video, but appear to have fallen at the first hurdle. All the information I can find seems to be older, using either native calls or DirectShow to perform this, but I've been told that the framework now supports using a WebCam. Anyone got any information on how to use a webcam preview, and maybe how to go about streaming it over a network Thanks! I think implementing this as you describe would be very complex. A fun weekend project sounds optimistic. Even if you did, you would have several limitations: 1. Lack of videocard acceleration (alternatively you could do the video processing on the card and t ...Show All

  • Software Development for Windows Vista Is June CTP SDK work on Xp pro OS

    hello Now I have setup for MicrosoftR WindowsR Software Development Kit (SDK) for June CTP of Windows Vista and .NET Framework 3.0 Runtime Components. I down load from the follwoing URL http://www.microsoft.com/downloads/details.aspx FamilyID=9221A6AA-AC1C-4604-A326-B8CF2B12B6EB&displaylang=en I want to know whether I install in Xp -pro this setup will work or not. Please guide me Advance thanks vijil Dear Kurt CLAEYS I installed. Me too no problem. It is working fine Thanks for replay vijil Bangalore ...Show All

  • Windows Forms Membership and Personalisation in Windows Forms

    Hi, Can I use the Membership and personalisation feature of ASP.Net 2.0 in Windows Form based applications or is there a different way to achieve the same Thanks Sai Yes, I do for an application the simpliest method is to setup a webservice and do your authentication against the webservice. i.e Webservice expose function public bool Login(string username,string password) So you would call you webservice app instead of calling a bus layer class. The cool thing about this for me is that I can then keep on username and login for extranet services and internal windows app. You should use SSL on the webservice though to keep things secure. The other way I believe is that you could use the ...Show All

  • .NET Development Using codedom to generate static classes

    Hi, I'm trying to use codedom to generate c# static classes ie like public static class Foo { int bar} However, no matter what I try, I always end up with a class declaration public sealed abstract class Foo {int bar} Does anyone know if this is a limitation of codedom or what flags I met set to generate a static class Thanks, Sung Hon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems with DirectX Viewer

    Hi there I have installed the December release of the sdk and I'm having problems with the DX viewer everytime I try to open a .x file. have the error sying that DirectX viewer has encountered a problem and needs to close... Has anyone had the same problem Thanks :) Have a look here . ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XBox 360 Wireless Controller on a PC

    I've downloaded the drivers for the XBox 360 controller from the MS hardware website, yet when I connect my wireless controller via the USB cable, the "Found New Hardware" wizard fails to recognize it (and continues to prompt for the drivers). What am I missing here Thanks, -dn I got mine today :) (in stock at Future Shop) Installed the Software (check) (XPPro 32bit) plugged in wireless gaming receiver (check) (front USB - since the back is full lol), and it works fine. You go thru the same connection procedure as for linking the wireless controller with the 360 There is even a little app the appears when you hit the big(X) on the controller, that shows battery indicator (you cant m ...Show All

  • Smart Device Development Application login

    Hi, i am building a mobile application, in which the users needs first to login, and then can perform several operations against dedicated web services. we hold an offline table in Sql Mobile with the users that can login into the application. now, considering that the user has successfully logged in (checked againsted the offline table) - how do i check in the web service that the requester of the method is a legitimate user. should i send out the user+password on each call to the webservice what is the best practice to work with web services , where i want only authenticated users to use I read a while ago, that i can login once (using a login method in the webservice), get a token and use it is the next calls. Th ...Show All

  • Community Chat ENormously Interesting Reading

    I'm reading the history of Digital Equipment Corp written by Gordon Bell who is on this board at times. Digital began from noting and grew to the second largest computer company in the world. This article is at: http://search.msn.com/results.aspx q=http%3A%2F%2Fresearch.microsoft.com%2F~gbell%2FDigital%2FDigital%20at%20work%201992.pdf Digital was noted for it's committment to quality and innovation and enormous attention was paid to DEC's culture. I noticed this thought about the culture. Little Kids on the Block “The culture in the early years was very much: hey, we’re the little kids on the block, we’ve got to show people we’re good. We’re a team. We like each other. We’re a quality outfit and we like what ...Show All

  • Visual Studio Generate one chm from multiple dlls and their xml documentations?

    Sorry if this has been asked/answered already. I quickly browsed through the threads but didn't find any that would answer this in detail. Let's say I have a Logic.dll and an Elements.dll. I also have a Logic.xml and an Elements.xml which contain the vs2005 generated xml documentation. Logic has the, um, well, logic and Elements contains the property classes that could be the input/output parameters of the methods in the Logic.dll. They are not in the same vs solution or project. Logic.dll is referencing to Elements.dll as a dll reference. Is it possible to generate a single chm from those two dlls and their comments with Sandcastle I tried to use the Mrefbuilder like so: " MRefBuilder Logic.dll /dep:[path_to_references]\b ...Show All

  • Visual Studio Express Editions Files with same manifest resource name

    Ok so I am writing a prototype of a program for school. The program does not have to be fully functional. The program only needs to be able to open new forms and they must have a working exit function. I am receiving an error about the manifest resource name. The error states Resources 'Form1.resx' and 'FrmMain.resx' have the same manifest resource name 'slentz.menus.FrmMain.resources'. I have looked over the code many times and can't seem to find what could be the problem. Any help is greatly appreciated. Thank you in advance. Here is the code: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace s ...Show All

  • .NET Development Declaring an Event in a class causes memory leak?

    I think this one is for gurus. I am creating a class with an Event, then I instantiate the class and dispose of it. VB seems to be wasting 16 bytes each time. Any help I'm desperate!! Example Class: Public Class Myclass Public Event Status(ByVal pText As String) Public Sub New() End Sub Protected Overrides Sub Finalize() MyBase.Finalize() End Sub End Class Example Form That Instantiates / Clears the class This form only requires a textbox (multiline / accepts return) and a button. Imports System.Threading Public Class Form3 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim LClass As New LeakingClass LClass = Nothing End Sub Private Sub Form3_Load(ByVal se ...Show All

©2008 Software Development Network