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

Software Development Network >> satya n's Q&A profile

satya n

Member List

mahima
bslim
Will Merydith
mpetanovitch
T. Beachler
smithygreg
Noorul Ahmed
Shawn Weitzel
JohnBurton
JPC16
Yterium
Leonid Niraev
Jeremy Schneider
vidya_084
lalremsiama
gauls
g0nzo
GeorgeMohr
Travis75
R_Vogel
Only Title

satya n's Q&A profile

  • Visual Studio Express Editions How to name buttons with database field values

    To begin, I know very little about VB express. I started out using VB for apps in excel. I could record macros and copy or edit, but I'm having a little trouble writing code from scratch in VB express. Anyway, here's what I'm trying to accomplish. I have about 40 buttons on a user form. I would like for each button's text to be the value of a separate field in a data table (using SQL Server Express) and update when the data table is changed. I have selected all buttons at once and through the data binding option in their properties tied the "text" property to a specific column in my data table. The problem is that when I do this, every button's text contains the first field value in this column. Since the only option when sel ...Show All

  • SQL Server TSQL function to return numeric value of non numeric field

    I need to replace Access Val() functions with similiar function in sql. i.e. Return 123 from the statement: SELECT functionname(123mls) Return 4.56 from the satement: SELECT functionname(4.56tonnes) Any one with ideas please Thanks George this will extract the first few numeric chars from the string declare @data varchar(10) select @data = '4.56tonnes' select left(@data, len(@data) - patindex('%[0-9]%', reverse(@data)) + 1) ...Show All

  • Visual Studio Express Editions Image Format Proliferation,Coupla Questions

    I can't seem to find a way to produce an exe or a setup program for critters I create in anyof the languages, or a compiler and linker. Is this intentionally left out to keep you from writing the software in a saleable form so you can use the proceeds to subscribe to MSDN, or am I missing  some seizmic change in how C++ will work from here on out Can the Intel Compiler amd Optiimizer be plugged in on Express C++ Can I use the code generated by Express in my old MS C++ compiler And finally my favorite questions of all. 1-why does MS write file formats it does not recognize, send you to the FileExt Page which tells you which program in MS it is associated with, thus inducing dog chasing tail syndrome OK, maybe the normal us ...Show All

  • Visual Studio Team System Installing VSTE for Database Professional

    I have some questions regarding installing visual studio Team edition (VTSE) for DB professionals Currently I have VSTE for Developers with VS2005 SP1 installed (And .net 3.0 and related Workflow, Windows Presentation and Communications components) I would like to use VSTE for Database professionals If Install the Trial version of Team Suite VSTS (visual studio Team suite trial edition 180 days) what will happed to my exisitng install of VSTE for developers will it get over written will the .net 3.0 components get wiped off If my plan goes well in installing VSTE trial edition, can I then simply intall the "Team Edition for Database Pros Add-on for Team Suite.EXE" I assume to have both VSTE for Developers and Datab ...Show All

  • SQL Server Installation of SQL Server 2005 + RS on a vista 64 bits

    Hello, I'm trying to install a version of SQL server 2005 with reporting services on a vista 64 bits. I've a licence for SQL server 2005 standard edition in French, my vista is in French, and I'm using visual studio standard edition in English to develop. I would like to develop reports using SQL server to include these reports in my applications developped with Visual Studio. Wich version of SQL server should I install I've tryed to install SQL server express 2005 with advanced feature SP2 (english version) and then later the standard edition (French version) (each time uninstalling all SQL server components between tries), but I got problems with reporting services each time. I got first a warming saying than reporting servic ...Show All

  • Software Development for Windows Vista List of Applications compatible with vista

    hi, what is the list of LOB's,ISV applications & third party tools that are compatible with VISTA Hi ramkasarla, I would suggest checking out the public shim database that ships with Windows Vista. To get access to this, download ACT 5.0 which can be found here http://connect.microsoft.com/site/sitehome.aspx SiteID=81.You can also take advantage of the community feature to see what others are saying about specific applications. Note that the community feature will only show you applications that have been inventoried on your domain. You can read more about the Application Compatibility Toolkit (ACT) here: http://connect.microsoft.com/Downloads/DownloadDetails.aspx SiteID=81&DownloadID=1570 . Thanks! ...Show All

  • Visual Studio Express Editions web browser question

    having used Dim wbBrowser As New SHDocVw.InternetExplorer Dim HTMLDoc As MSHTML.HTMLDocument Dim iHTMLCol As MSHTML.IHTMLElementCollection Dim iHTMLEle As MSHTML.IHTMLElement when I click on a given iHTMLElement by using iHTMLEle.click() Internet Explorer opens a new window and I cannot get access to the new IHTMLElement collection How can I "connect" to that window I mean, how can I get the Element Collection of the new window browser opened Thanks, Antonio I want to have an .exe file that I can put in my startup folder or in the Start menu to launch certain web pages and fill out some fields in them. I do not want the windows ...Show All

  • Internet Explorer Development Image not being displayed ("Not found") >> Same thing works in firefox (BUG!?)

    I've written a html page which contains the following tag: <img src="icons/addmate.jpg" /> The html file resides in "C:\Documents and Settings\matt\My Documents\Visual Studio 2005\Projects\DaNetCli_Proto\Mods\default\tools.html" and the jpg file resides in: "C:\Documents and Settings\matt\My Documents\Visual Studio 2005\Projects\DaNetCli_Proto\Mods\default\icons\addmate.jpg" Now the strange bit: this html file works in Firefox, but not in IE. Anyone come across the same problem or know a workaround. I'd really like to avoid using an absolute path. AH! Found the problem! The reason this was happening is why most software running on windows (usually) isn't as good as softw ...Show All

  • Visual Basic Managing Font Information

    Dealing with the font information for a control seems complicated and perhaps someone can explain a simple method to record font information. Net offers several dialog controls such as fontdialog andcolordialog. In using the fontdialog. My code looks something like this: Dim fd As New FontDialog Dim dr As DialogResult = fd.ShowDialog( Me ) TreeView1.Font = fd.Font Dim StringView as string=fd.Font.tostring The font information captured in the string variable looks like: [Font: Name=Times New Roman,Size=9.75,Units=3,GdCharSet=0,GdVerticalFont=False] I am interested in being able to store in my application font information for a treeview and tabcontrol that I can recall upon application startup. If I store the fon ...Show All

  • Visual Basic DeviceIOControl Does Not Work on Windows 98

    i wrote a program that get hard disk's firmware serial and it works fine in winXP/Win2000 but when i run it in win98 it doesn't give me the serial number i used Smartvsd.vxd and vWin32.vxd to Solve this problem but it doesn't work yet. any idea plz forgive me for my bad english .   dear, i know that . but i'm a programmer and i write program, i don't know which Windows people use and i must test it in Difrrent version of windows and fix Bugs. ...Show All

  • Software Development for Windows Vista How to do WlxGetOption for Vista( Cred provider model)

    There is this function defined in winwlx.h for XP and below. BOOL WlxGetOption( HANDLE hWlx , DWORD Option , // I need WLX_OPTION_SMART_CARD_INFO ULONG_PTR* Value // returns a WLX_SC_NOTIFICATION_INFO structure. ); Documentation says these are ignored for Vista. What is the substitute of such a function in Vista Thanks, - dchawla. ...Show All

  • Visual C++ error LNK2001

    Hi, (I saw the post on same subject but it seems to be a little different. so I'll use some word from that post!) There is a project earlier written in VC++ 6.0.  I opened the same project in VS. NET 2005 and I am trying to compile.  The code compiles properly (with couple of warnings) but while linking I am getting unresolved external symbol errors like this: The linker seems to have problem with seeing .obj from files in program (which are in the debug directory). It doesn't seem that the /Zl switch or the /NODEFAULTLIB  are on. 1>Linking... 1>Utm.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zone.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zones.obj ...Show All

  • Windows Forms "the path is not of a legal form" error

    Hi, I made a control, and when I try to add it to a form, it shows me the error "the path is not of a legal form". How can I solve it Thanks. I struggled with this error for a long time and I found that, even though I didnt think this was the problem, one of my .dll references was bad. When I removed it, everything worked fine. You should check all of your references in your projects... ...Show All

  • SQL Server Field names must be unique within a data set?

    I am moving reports from a 2000 db to a 2005 db but for now I am staying on RS 2000. The reports I built some time ago now do not work. Now I am getting an error that the field names must be unique in a dataset. This was not the case in 2000. The error message is below: More than one field in the data set ‘DRSTracking’ has the name ‘NewCommit’. Field names must be unique within a data set. (rsDuplicateFieldName) More than one field in the data set ‘DRSTracking’ has the name ‘CancelCommit’. Field names must be unique within a data set. (rsDuplicateFieldName) More than one field in the data set ‘DRSTracking’ has the name ‘NETCommit’. Field names must be unique within a da ...Show All

  • Visual Studio Crystal reports studio 2003 vs 2005

    I have an app in vs studio 2003 that is getting the following error Could not load file or assembly 'CrystalDecisions.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. I have several apps running on the same server using vs2005 that utilize Crystal without any problems. Can someone tell me what I need to do to configure the 2003 app to work as well You will need to deploy more files to your server. There are different files used for running under the 1.x and the 2.0 .NET frameworks. You need to create a deployment package with CrystalReports11_5_NET.msm to get the 1.1 versions. ...Show All

©2008 Software Development Network