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

Software Development Network >> Tyler Miller's Q&A profile

Tyler Miller

Member List

4i
Ouster
MarvinTPA
Jacek Jablonski
Abrar
Tim Rice
martinig
AndrewTaiwan
sonaht
bogomil
pato
F. Gsell
FtLeeJerry
X4U
ommy
ricoxxx
Adrian Browne
fraXis
Shamrox
GoMSF
Only Title

Tyler Miller's Q&A profile

  • Visual Basic unspecified error

    I donno why but whenever i try to pass parameters to the procedure iam calling its giving me an error saying -2147467259 - unspecified error Can anyone tell me what this means The error is when i try to pass parameters oComm.Parameters(0).Value = uHeaderInfo.sProjNumber I would hazard a guess here and say that what you're doing is causing the string to replace the , but not to put quotes around it. If you must do it this way ( and it seems like a hack to me ), then try putting ' ' where-ever you have a in the command string. What benefit do you derive from not using the framew ...Show All

  • Visual Studio Team System Connecting Remotely to Team Foundation?

    What is needed to access Team Foundation through a firewall I have setup and installed Team Foundation on my Active Directory server, and can successfully connect and setup a team project from within my domain.  When I take my laptop outside the domain and attempt to connect, I can get parts of it connected, but not all.  After VS loads, I get the list of projects in the Team Explorer, but when it is loading Work Items, Documents, and Reports, I receive the message box "Could not connect to application tier.  Please contact the team system administrator(s)." I have open ports 80 and 8080 on my firewall.  Is there anyth ...Show All

  • Visual Studio Express Editions Get specific row value from DataTable

    Hey there, I have a problem trying to get an specific row from a table. I'm using a DataSet that has several nums of tables created in runtime, but I need to get an specific row from each table, I'm using this code: Dim TablesResult As New DataSet 'then I call the function to store the tables into the dataset For Each Table As DataTable In TablesResult.Tables Dim  Generic As Integer = CInt (Int((Table.Rows.Count * Rnd()) + 1)) 'And then here is where I need to select the specific row and get the value, 'the tables from the dataset just have one column!, Next Please help! Thanks! &nb ...Show All

  • Visual Studio How to update the build number in a .RC file every time I build?

    I thought this was such a basic thing that it would be built into VS, or answered in a FAQ somewhere, but I can't find the answer.  What is the best way to increment the build number of my (non-managed) C++ exe Microsofts internal build process uses a system very similar to the one described in the articles posted. Since our processes are based around a "daily build" the version information that is stamped into DLLs and EXEs is controlled centrally and corresponds to the day that the build was done. We have a header file (used by RC files amongst others) that is generated by our build lab and checked i ...Show All

  • Visual Studio Text template load a file

    Hi, I need to load a project file from text template and write all lines. The below code work fine, but I need to put complete "path" in property " FileSourceCode" I need to load from "current path". <# if (System.IO.File.Exists(att.FileSourceCode)) { System.IO.StreamReader sr = new System.IO.StreamReader(att.FileSourceCode); #> <![CDATA[ <# while (!sr.EndOfStream) { #> <#= sr.ReadLine() #> <# } #> ]]> <# } #> </EventHandler> Any idea Thanks, Alexnaldo Santos Alexnaldo, To round this thread ...Show All

  • Visual Basic How do I change my Build so that it is release and not debug?

    How do I change my Build so that it is release and not debug I scoured help but apparently I'm missing something All that matza I ate during Pessach caused all my blood to head south to digest it and left none for my brain. dennist Go to Tools | Options. Under Projects and Solutions check Show advanced build options. The Build menu should now have the Configuration Manager.   Robert ...Show All

  • Windows Forms Graphics question

    Ok my problem is with Graphics class //------------------------------------------------------------------------------------------------ private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; g.DrawLine(new Pen(Color.Black), new Point(30, 30), new Point(30, 100)); g.Dispose(); } you see i declare Graphics g=e.Graphics where 'e' is the PaintEventArgs and then draw a line //---------------------------------------------------------------------------------------------- private void button1_Click_1(object sender, EventArgs e) { Graphics g = CreateGraphics(); g.DrawLine ...Show All

  • Visual C# Property vs field

    Hi. I don't understand why we should use properties rather than fields to initialize fields. Any work that can do with properties we can do with field itself. I think that only one difference there is and it is that can make a field read-only with properties. Is there another reason to use properties You can use Logic's behind setting is and check values, here is soms self-explaining code: public int MyInt {     get     {         return _myInt;     }     set     {        // When the given ...Show All

  • Windows Forms Ensuring minimum size of UserControl

    Hi! You can directly set a minimum size of System.Windows.Forms.Form objects. How do you achieve the same effect for classes derived from System.Windows.Forms.UserControl   I have two user controls, let's say: A and B, placed on a form. A is filling the bottom of the form and B is filling the rest of the form. Those two controls are separated with a&n ...Show All

  • Visual Studio Tools for Office Does the VSTO package come or not with C++ ?

    Does the VSTO package come or not with C++ * In the compare page it shows that there is only VB.NET and C# in the package. *In the VSTO product description page, there are many samples showing c++ in the project wizard. Could someone help me on that Thank you, Fabio Hello Fabio, VSTO only supports VB.NET and C# as the supported programming languages. VSTO project types exist in the higher end Visual Studio Team System (VSTS) SKUs, and in those SKUs there are C++ project types but not for any of the VSTO project types. Hope that clarifies things. Thanks ...Show All

  • Smart Device Development Need some advice from the Pros

    Hi, I need some advice developing a DSP app on PocketPC (specifically iPaq 2215 , which is PPC2003 I think).  I have been developing Windows apps for a long time using VS with C++ as well as C#.  So I am quite familiar with Win32 and the .Net framework on Windows but when it comes to developing for the PPC I am a complete newbie. I have the following requirements for my PPC app: 1) Must be able to record and play back audio at the same time (full duplex). A typical example might be a spectrum analyzer that also needs to send out a test tone at the same time. 2) Need as small as possible latency from recording a buffer of aud ...Show All

  • Windows Forms "New Programs Installed" notification on ClickOnce Update

    I realize that this is probably something I can't change, but I thought I would ask anyway. I have a ClickOnce application installed on ~100 computers. When I publish updates, the users always see the "New Programs Installed" notification on their "Start, All Programs" menu. Technically, this is not a new program - is is an update to a program that they already installed. Is there some way to suppress this notification My users are wondering why it is popping up and I am trying to clear up confusion. I would appreciate any suggestions - or even a reason why this is the default behaviour. ...Show All

  • Visual Basic 2005 App terminates when I switch to another program

    My VB.NET 2005 application terminates any time I swtich to another program, both in the IDE and deployed. For example, I'll run the app in the VS.NET 2005 IDE, and CTRL-ALT toggle to Internet explorer, and my app terminates. There is no warning or error, it does not break on any line of code. It just disappears. Any thoughts Thanks in advance. Adrian Just a few questions. First, are you certain that it terminates, or is it simply hiding itself In other words, look in the process list and let me know if your application disappears. Secondly, do you mean that you "alt tab" out of you ...Show All

  • Smart Device Development c# to develope pocketPC/SmartPhone apps?

    Hi, I am going to develop an application which uses a lot of communication with a PDA's internal GSM/GPRS modem, but also with external units via an extension slot. Now I have heard that the .NET CF is not ultimate for this kind of work, but that Suns J2ME should be used. I have gotten the impression that communication with ports in for example C# is not very well developed. Anyone know where I can find more info on this subject, or have any opinion Thanks a lot! Yes, if language allows you to call this underlying DLL. C# and VB.Net do, don't know about Java. You should check if specific Jav ...Show All

  • Visual Studio Express Editions Searching for """FREE""" VIDEO Tutorials that help C++ beginners learn how to program...Anybody got any ideas???

    Hello, I am new to the C++ programming language. I am using the Visual Studio 2005 Express Edition. I learn best when I am hearing what I am supposed to do and I can see what it is that I am supposed to type...so I am trying to find find Video tutorials that do this. Does anyone know of a website(s) that has really good tutorials (that are FREE)...besides Microsoft... that really help an individual learn how to program as a beginner in C++ Please list as many sites as you can possibly list No one can realy teach you programming you need to buy a book learn your seft even in my c++ class now they do not teach you ...Show All

©2008 Software Development Network