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

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

zqzproject

Member List

Xarax
magicalclick
Dev Chris
eric8910
DaGeRe
Ronaldlee Ejalu
herocomplex
fark
Suedois
GazMan
ErsinINAN
iamtgo33
ivy kuo
Dan Moreira
Steve Pontello
wen pin
Jaroslaw Pekala
ITSMEAGAIN
Joe A.
tsoft
Only Title

zqzproject's Q&A profile

  • .NET Development How do I use this method: " Private Shared Sub AssignParameterValues "

    I added the Microsoft.ApplicationBlocks.Data to a .NET solution. No problem. Using its methods and function is clear. No problem. The comments in the methods are clear. No problem.   BUT I am not clear on how to use the below PRIVATE method. I understand the parameters used BUT where and how do I CALL this method. Do you have a sample on how this method is used ___________________________________________________ Private Shared Sub AssignParameterValues(ByVal commandParameters() As SqlParameter, ByVal parameterValues() As Object) ___________________________________________________     ...Show All

  • Visual Studio Crystal Report XI And Visual Basic 6.0

    Hi there, Can anyone help me Please, I am using crystal reports XI and I have some applications in Visual Basic 6.0. I created a report and want to call it using vb6.0 and then show it How can i do this   Thanks very much in advance Hello TJ, You can check out our developer zone web site for Getting Started Guides and How Tos: http://www.businessobjects.com/products/dev_zone/default.asp You will be interested in the COM section as your are using Visual Basic 6. Keith - Business Objects ...Show All

  • .NET Development How do I send mail using C#?

    Does anyone have a code snippet that shows how to send mail from c# Here is the code snippet I found... System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.To.Add(" luckyperson@online.microsoft.com "); message.Subject = "This is the Subject line"; message.From = new System.Net.Mail.MailAddress(" From@online.microsoft.com "); message.Body = "This is the message body"; System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("yoursmtphost"); smtp.Send(message); ...Show All

  • Visual Studio Express Editions help! can not create any project in visual c++ 2005 express edition

    when i try to generate any project in visual c++ 2005 express edition, it always told me that the operation could not be completed and can not find the required module! Lejing wrote: when i try to generate any project in visual c++ 2005 express edition, it always told me that the operation could not be completed and can not find the required module! Please. This is not enough information to visualize what is happening. What operation , please Are you using Menu selection New | Project | ... Or is it later - orcmid ...Show All

  • Windows Forms access windows forms from a web service

    i have a windows form that i want to access from a webservice. the web service resides on the server where the aplication is running. i want to be able to access some of the methods of the windows form remotly using a web service residing on the same server. in fact i am doing this becoz i have a scheduling application that enables me to  ...Show All

  • Visual Studio Express Editions Rowfilter with variable

    Hi, I am using the following code to filter by name. The code works fine. My question is "how do I code the Rowfilter line to use a variable instead of Karen eg: .Rowfilter="ColumnName = variable"   Dim view As DataView = New DataView With view .Table = ds.Tables( "settings" ) .RowFilter = "name = 'karen'" End With Any help would be appreciated Ron Sorted Dim view As DataView = New DataView With view .Table = ds.Tables( "settings" ) .RowFilter = "name = '" & selected & "'" End With ...Show All

  • .NET Development Recursive searches with Regex Class.

    Hi! How can I do recursive searches with the Regex class. I know the Sample with the matching Parantheses ()*, but I need it with BEGIN/END blocks e.g. some text begin    more text    begin       even more text    end end second part begin    text end So the expression should match the outermost begin/end blocks. How can this be done *) \(     ( >         [^()]+         |    \( ( <number>)         |& ...Show All

  • Visual Studio 2008 (Pre-release) System.Windows.Window Display issue.

    I recently installed the Novermber CTP of WinFX distributed as part of Windows SDK. I created a very simple application using the System.Windows.Window class however, the frame comes up completely black, including the controls added to the frame. Has anyone else experienced this Here is the code I ran (With an Application class instanciating the window on startup) using System; using System.Windows; using System.Windows.Controls; namespace WPFApp {     public class Window2 : Window     {         Button button;         public Window2()   &nb ...Show All

  • Visual C# Please help - How to get the Path of Executable of a Windows Service...

    Dear Experts, I would like to get the parameter "Path to Executable" of a Windows Service programmatically. As you know, we can use Service MMC snap-in (Control Panel --> Services) to adminstrate Windows Services. If you right click any one of the Windows Services and then choose Properties , you would see the Service snap-in. In the Service snap-in, there is an item called "Path to Executable" that shows you the original location of your Windows Service's executable. Now I would like to get this path programmatically. Could you please tell me how I can achieve that Many thanks for your help. :-) Tigger ...Show All

  • Windows Forms identifying with API

    Hello, Im trying to identify textboxes with API on a form, but there are multiple textboxes and they each have the same caption and class name, how can I send a message to a specific textbox I moved this to the Windows Forms forum as it is specific to Windows Forms and not C#. Michael Taylor - 2/15/06 ...Show All

  • Visual Studio Team System TFS BETA3 & SHAREPORINT err!

    I'v installed TFS BETA3 with workgroup config (no use AD),   on a server named "vs2k5tfs".... when I browse http://vs2k5tfs/default.aspx the returned page contains from same machine, (I'v new a team project, and browse project portal,    got similar page....) ********************************************* Error [1] Web Part Error:  This page has encountered a critical error. Contact your system administrator if this problem persists. Error [2] Web Part Error:  This page has encountered a critical error. Contact your system administrator if this problem pers ...Show All

  • Visual Studio Reportviewer print dialog problem

    My .NET version 2 application creates reports by calling a method from a dll (which I also wrote) which displays a form containing a user control which in turn contains a ReportViewer. I set the viewer's .ReportPath, .BindingSource, and .DataSource properties and call the .RefreshReport method. The viewer displays the report correctly. When I click the viewer's Print button, the Print dialog correctly appears, but I have to click the dialog's Print button twice to actually send the report to the printer. What could be causing this http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=177732&SiteID ...Show All

  • Visual Studio Express Editions what data type to use for username and passwords?

    hi i'm making a school project, where i need to make a database that holds the usual information like ID, name, address etc. it also has to hold on to usernames and passwords. i'm confused on what datatype i should use, and is there a way to enforce unique usernames thanks What data type did you use for name, address, etc. Like I said before, just use the same data type for user name and password. They are just strings, like those other fields so there's no reason to use anything different. As was said previously, if you have no specific need to store Unicode characters then no need to use a type beginning w ...Show All

  • Windows Forms Scroll Bar

    Hello, I am making a word Prossesor, and For my Textbox I have made it a multiline texbox, but I need a scroll bar for it. I have looked in the Tool Box and have not seen any Scroll Bar controls... What can I do Thank You If you are building a word processor I think you'd better use RichTextBoxControl. But to answer your question: you can enable scrollbars by using  the ScrollBars property.  This triggers the same behaviour as overriding CreateParams and adding the WS_VSCROLL bit to the Style. You may find additional help here . ...Show All

  • Visual Studio Creating a custom test type in VS 2005 Team System

    I am interested in adding a new test type to VS 2005 Team System.  The document "Creawteing Custom Test Types in Visual tudio 2005 Team System" gives instructions to "create a shared instance of the class TestType" and "to subclass TestTlement".  What assembly are these two classes defined in Sam Has anyone been successful in deploying the Custom Test Type Sample   I am able to build it and register the package in the experimental build, but cannot get the templates to show up in any of the dialogs ( Tools->New Test , Add->New Test, or Add->New Item). I have followed the procedures se ...Show All

©2008 Software Development Network