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

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

Stonaltar

Member List

netpicker9
chire
limssd
Emre Çetinkaya
Kev Wu
Robert.Altland
MaartenClaes
KristianSv
thedo
LKeene
imnotbillg
srividyaramesha
Vaassu
Tryin2Bgood
Ankini
GMS0012
swalker
HonDOn7
Janicita
SelvaVenkatesh
Only Title

Stonaltar's Q&A profile

  • Windows Forms WebBrowser - tracking button clicks

    I'm using the VS 2005 control System.Windows.Forms.WebBrowser. I want to be able to track button clicks. If I've navigated from a page with multiple buttons, how can I tell which button was clicked I have this in VB, but if you're using C# I assume you can do the conversion: Events: AddHandler webBrowserBody.Document.Click, AddressOf Me .webBrowserBody_DocumentClick AddHandler webBrowserBody.Document.Focusing, AddressOf Me .webBrowserBody_DocumentFocusing Both events use HtmlElementEventArgs, so I'll just show one of my handlers: Private Sub webBrowserBody_DocumentClick( ByVal sender As Object , ByVal e As HtmlElementEventArgs) Dim el As HtmlElement ...Show All

  • .NET Development TCP Server Application

    Please it is my first trial with network programming, I want to ask about if I can send a message from a TCP Server application to only some clients of the connected clients, I mean such as in UDP SendTo() method which specifies the Endpoints it wants. If your still looking for one i C#, i was sent this after asking for help with a similar problem... http://www.codeproject.com/dotnet/dotnetchatapplication.asp This might help you out a bit Nick Rawe ...Show All

  • SQL Server Dependency Net Viewer

    Hi, I've got a Decision Tree model and I'm trying to browse the dependency network. Apparently, there are too many nodes and they don't all show up in the view. I know that I can find hidden nodes, but is there a way to show all w/o having to add them one by one to view How does the UI determine which ones to filter out Thanks, Mike Excellent question! The dependency net viewer takes the top 60 nodes determined by a heuristic to be interesting. It uses a mix of input and output nodes to make sure that you don't get all inputs or all outputs (that wouldn't make an interesting diagram, would it ) Using the dependency net viewer control, you can only add nodes one by one. However, if you use the Data Mining Templates for ...Show All

  • Visual Basic [OTP] VB6 - Importing Attachment name into Access table

    Hi All, I am trying to import my inbox details into an Access table via VB6. I am taking information like subject, date, from etc. This is not a problem. What I am having trouble with is when I try to import details of any attachments on the email. I want to be able to import the name of the attachment into the access table along with the subject, from info etc. Also, I am populating a listview with the contents of this access table. this is not a problem. The problem i have is with the attachment info. Any help would be greatly appreciated. Thanks, Gary   T hese forums are for VB.NET and there are better places to find answers for older versions of VB such as VB6. Maybe the foll ...Show All

  • SQL Server Failed to integrate with site

    Hi, Everybody. I'm new to MS SQL Reporting services, and i've got some troubles with it. I cannot integrate my report with the site. I've tried to do it in such two ways: 1) using ReportViewer control. But the server where report is stored need authentication, and this control doen't supports it. So every time someone viewed the report authenication screen appeared. And also no images where shown on this report. 2) using Render method. Now i have NO troubles with authentication and with images. It's all great. But there is no Toolbar at the top of the screen where u could export to different formats. But i really need this toolbar. I pass "<DeviceInfo><Toolbar>true</Toolbar>......</DeviceInfo>" parameter t ...Show All

  • Visual Basic UserDomainName - Domain or Workgroup?

    Hi all, I've used System . Environment . UserDomainName to find out what domain/workgroup the user is on, but how do I know if its actually a domain or workgroup that they've logged onto. I want to be able to do stuff if they're not logged into a domain. Thanks in advance... Scott There may be a more official way but I found this: http://www.devx.com/tips/Tip/26562 type=kbArticle&trk=MSCP Basically you attempt to enumerate the DC name for the "domain" part of the user name, if it pops back with a name then you are in a domain, empty then workgroup. Not tried it and seems a bit untidy but may work. Had a bit of a play, do not have a domain ...Show All

  • Windows Forms Databinding ComboxBox, combo is bounded but behaves like no items present??????

    Hello, I m using VS.net2003 vb.net My question is, I have a class with a dataset in it. The dataset contains 13 tables atleast with most of them to be used for user selection that is read only tables One of them is a table nmed, SalesType, I have a combo box, cmbSaleType bounded to that, this is how the binding is done; cmbSaleType.DataBindings.Add(New Binding("DataSource", mFcPartySetup.DSPartySetup, "SaleTypes"))         cmbSaleType.DisplayMember = "NameField"         cmbSaleType.ValueMember = "IdField" There are controls in tabpages, some of them are disabled and are to be supposed to be enabled only on user selection. cmbSaleType is in the customer tab which is also disa ...Show All

  • Visual Basic VB Output Box

    I am a beginner to VB.Net, I am in my first intro class about it, and I have a question: I'm having to do a project on business travel expenses. The guidelines are as follows: Write a program to generate a business travel expense attachment for an income-tax return. The program should request as input the name of the organization visited, the date and location of the visit, and the expenses for meals and entertainment, airplane fare, lodging, and taxi fares. (Only 50% of the expenses for meals and entertainment are deductible.) The output is displayed in a list box that becomes visible when the button is clicked. Sub procedures should be used for the input and output. The whole output box is to look like this: Business Travel Ex ...Show All

  • .NET Development Formatting text boxes

    Good Morning, i have an SQL Server database feeding VB.Net forms, how would i go about formatting a text box to display a telephone number correctly. Example: Current: 7054447569 'this is what i currenty have Formatted:705-444-7569 'this is what i would like to have the output look like If anyone can help me that would be greatly appreciated You'll want to specify a formatting string of something like "000-000-0000" to accomplish this. How are you setting up your binding or moving of the data from your SQL query to the TextBox Worst case if you've got the value in an integer you could simply fire off a:       formattedValue = unformattedValue.ToString("000-0 ...Show All

  • Smart Device Development Multi-Language support in C#

    Hi, I have developed SmartDeviceApplication output of which is an .exe in C#.I want that exe to support multiple language.can anyone help me in this regard to how to do it.Wheather i need to add a new resx or do i have to create a dll I want to support basically both chinese and english depending on the user requirment. Hi Sunil, How are u anyway, Do the following Sunil... 1- Create new smart device project.. 2- in the form, set the localizable property to true, add new lable and set its text to "Hello All". 3- Choose Chinese(Simplified) language now, and set the new lable text to the alternative words in your language.. This will switch the lable text with the change of the r ...Show All

  • SQL Server Comments in SQL

    Hi, I am new to MS SQL Server 2005. I used MySQL. Now my doubt is how to put a comment in SQL statement, where i am using query editor in SQL Management Studio. Rgds., Aazad Hi, Use -- for single line comments and /* For multiline comments */ HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio 2008 (Pre-release) Using Images and/or Accessing a ControlTemplate Item in a Custom Control

    I have a custom control with a simple Image object in the generic.xaml: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:Logo_Asset" > <Style TargetType="{x:Type local:Logo_Asset}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type local:Logo_Asset}"> <Image Name="LogoImage" Source="Resources/the_image.bmp"/> </ControlTemplate> </Setter.Value> </Setter> </Style> </ResourceDictionary> The image exists in the project in the resources folder and its build action is set to "Resource". The custom cont ...Show All

  • Architecture Developing for ASP (Application Service Provider)...what would be important?

    We are starting a project to be a web app (in C#) that runs hosted in a service provider, outside our company. Then our customers will access this ASP and use it, paying for a monthly license. Well, this seems to be very common nowadays, but I cant find much documentation about how to create, tips, and workaround for eventual problems that might occur. One thing that comes up in my mind is that we should use, for each single table, an ID that can identify uniquely each of our customers accessing that table. Maybe some concurreny treatment should be built as well....what else Anyone could help me on this Thanks a lot ! Well this is a good site indeed. But what I was seeking was something focused on the developing side..somet ...Show All

  • SQL Server How can i prevent that all data can be seen with notepad?

    Hello, is there a way to say to SQL Server to make the data not readable Regards Markus Hello Andrea, yes you are right. The data in a .mdb file is not obfuscated even if a password is used. But it is in Word Files. And in Outlook encryption can be chosen as a property of the outlook file. I have only read a few lines of your link. I don't think that this is what i want. Because it seems to have bad effect on performance and i don't know what effect it has on queries. It is simply to much work cost. I think the encryption or obfuscation should be a task of the database and not a task of the programmer. That encryption can be choosen as a property, like in Outlook, is just missi ...Show All

  • .NET Development Problem in element order - while writting dataset to Xml file

    Hi, I am creating a dataset (e.g. ds) with two datatable (dt1, dt2). dt1 has columns Id, Name, Address, Sex and Age. Same order is followed. dt2 has columns Id, Address1, and Address2. Same order is followed. DataRelation is set between 2 tables on Id column and dt2 is nested table for dt1 (i.e. ds.Relations[0].Nested = true) DataSet content is writted in to Xml using WriteXml method. Xml file is created nicely. There is a problem in the order of element created. <Address> is created at last (could be because of relation). But expected output in the order - Id, Name, Address, Sex and Age. Kindly suggest me to solve this issue. Very urgent..... Thanks & Regards, kalai Xml ...Show All

©2008 Software Development Network