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

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

TimHiggison

Member List

ZokaBL
brob
mina_mina
MPSIperson
eyedealist
faty
steverino
Gouri
vexmm
GitzJoey
Aman B
NeoHaruo
delly_jm
HimanshuG
Koolchamp
Kabron
gardener01
JClishe
apavluck
TheDarkestShadow
Only Title

TimHiggison's Q&A profile

  • Visual Basic show tablenames in combobox

    I want to list the tablenames of a MySql DB in a combobox, but i do not have any idea how. please help me! thanks a lot for the really fast answer! My problem is that I do not know how to fill the result in the combobox. Here is the code I am using: Private Sub cmd_tables_Click( ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles cmd_tables.Click Dim sqlqry As String Dim rs As ADODB.Recordset Dim conn As ADODB.Connection conn = New ADODB.Connection rs = New ADODB.Recordset conn.ConnectionString = "Provider=MSDASQL;Dri ...Show All

  • SQL Server Custom connection manager development sample?

    Does anyone has code/sample/tutorial/pointer to developing custom connection manager with a custom UI. And then developing a custom task with a custom UI that can point to this custom connection manager... and passing values during runtime from UI to the custom class. TIA, Nitesh The first updated Web release of BOL will contain one sample that works with SQL Server and simply asks for server name...a kind of "Hello World" version of what you're asking for. The second Web release next spring will contain a second sample, a replacement Excel connection manager that includes a checkbox for Import Mode to resolve the common "mixed data typ ...Show All

  • Visual Studio Team System Work Item templates: from-types such as SQL?

    Are there any plans to expand the from types for from="<fromtype>" I am imagining using a SQL query to populate the field setting for a DEFAULT, COPY, or SERVERDEFAULT taking parameter(s) from work item field(s).  The SQL data source might perhaps be defined in another XML file for external data sources, yielding something like: <DEFAULT from=" sql " source=" DataSource1 " sql=" SELECT assignedUserValue FROM someTable WHERE assignmentCriteria=$1 " parameter=" System.AreaPath " /> Hi Andrew, At this point, there are no plans to expand to take the "from" value from a sql dataso ...Show All

  • SQL Server Framework 2.0 is not installed

    Hi All, I just installed the RC of SQL SErver 2005 on my development server and set it all up. Then I created a model report. From my desktop, I browsed to the development server and clicked on Report Builder. A message said I must have Framework 2.0 installed. I clicked on Install and downloaded Framework 2.0 Beta 2 and again clicked on the Report Builder button. Again, I get the Framework not installed message. Framework 2.0 Beta 2 is installed. Could it be because I am downloading Framework 2.0 Beta 2 I am downloading what the install button takes me to. Your help/advice is most appreciated. Roy The web li ...Show All

  • Software Development for Windows Vista Passing credentials with Invokewebservice activity

    How do you pass in user credentials when using an Invokewebservice activity. I'm starting a workflow from within a Winforms application and it fails when calling the webservice.... System.Net.WebException was unhandled by user code   Message="The request failed with HTTP status 401: Unauthorized."   Source="System.Web.Services"   StackTrace:        at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)        at System.Web.Services.Protocols.SoapHttpClientProtoc ...Show All

  • Visual Studio Team System TF 30177 Team Project Creation failed

    Hi, I have installed Visual Studio Team Foundation Server (Dual server deployment). When I try to create a project team, I get the following error TF 30177 Team Project Creation failed Message: Unable to connect to Windows SharePoint Services at VCORDEVTFS01. The reason for the failed connection cannot be determined at this time. The error log is as follows: .1/5/2006 11:30:35 AM | Module: Work Item Tracking | Thread: 11 | WorkItem Field Found: Name = 'Microsoft.VSTS.Common.Issue', Value = 'No' 1/5/2006 11:30:35 AM | Module: Work Item Tracking | Thread: 11 | WorkItem Field Found: Name = 'Microsoft.VSTS.Common.ExitCriteria' ...Show All

  • Visual Studio 2008 (Pre-release) how to serialize my collection of itmes

    hi all, i have a colletion of items. now i want to serialize this collection. here is the example:- Eg: foreach (item in my collection_items) { item.serialize() } Can anyone please help me in doing this!! Thanks in advance bye nani There a a lot of examples of serialization over Internet: Have you try to search Also, there are not just 1 serialization but many: XmlSerialization, BinarySerialization, etc... Which one do you want to implement Bye ...Show All

  • SQL Server Stored procedure parameter without type

    Hi All ! How i can create a stored procedure like ISNULL I need to a procedure that accepts Int type parameters and Float type ect. Thanks. DBT. Hi there, So you'd be looking for a catch-all data type sort of like Object in Java or C# or Variant from old school VB Maybe have a look at the sql_variant data type. There are certain types it can't hold though (see doco like Books Online for details). You might have to cast back to the original data type at some stage though (not sure because I don't really know what your stored proc'll do) so the question then would be how does your procedure kno ...Show All

  • Visual C++ show a txt file from ftp in a textbox(edit)

    I have this code in c# . but I want it in c++ . what is the codes codes in c#: public static string ReadHttpText( String mURL) { WebClient oWeb = new WebClient (); string s = "" ; s = oWeb.DownloadString(mURL); return (s); } Application .DoEvents(); try { textBox1.Text = ReadHttpText( "ftp://username:psword@www.domain.com/filename.txt" ); } catch ( Exception ex) { textBox1.Text = "Error: " + ex.Message; } This forum is not meant to be a translation service. In the future, I would do the coding your ...Show All

  • Windows Forms validate DataGrid bound to Array

    Good afternoon, I have a DataGrid bound to an ArrayList.  The ArrayList contains "segment" objects. Among other properties each segment object has a "value" and a "length".  The following must be true: segment.value.Length = segment.length In other words, if segment.lenth = 3 then segment.value = 245 would be OK but segment.value = 2456 or segment.value =&n ...Show All

  • Visual C++ spawning a 3rd party application from my application

    Hi Ok - I know I can use various methods to start a 3rd party app such as system (yes I know it blocks), the spawn family, CreateProcess, winExec and ShellExecute. What I need to do is have a 3rd party application start either where I want it to on the screen and of a particular size or maximized in a window that I have created. I also know that you can specify dwx,dwy,dwxsize,dwysize in the STARTUPINFO struct passed to CreateProcess. I can see the app starting in taskmgr but if I try to size the window it doesnt appear ! Is it because the applications main window hasnt been defined as overlapped I may not have the option of requesting ...Show All

  • Microsoft ISV Community Center Forums Section 1 Footer

    Hi, I have a template whose footer is changed at the run time. The template has a different First Page and I modify the footer based upon certain conditions. I am doing this by using the following code Application.ActiveWindow.ActivePane.View.SeekView = wdSeekFirstPageFooter and Then I modify the code. The problem occurs when a section break occurs in the document.Then the first page footer becomes Section1 Footer, and the above code gives an error "Requested view does not exist" Is there anyway I can change the section 1 Footer at run time regards Vishal Hi Vish ...Show All

  • Visual Studio Express Editions Visual Web Developer Express does not recognise ASP code in source view?

    We still have to work on some ASP pages at work so I use VS 2003 to open the ASP pages and work on them.  I have found Visual Web Developer Express 2005 to have a superior design environment to that of VS 2003.  Our ASP pages are in mixed code format where the code is mixed with the html.   My problem is, I noticed the source view in Visual Web Developer Express does not recognise the VB code that is mixed with the HTLM even though enclosed in <%...%>.  VS 2003 does not have this problem with ASP pages even though it is a .NET tool too.  Is there any setting I can change to g ...Show All

  • Software Development for Windows Vista Problem with "The Goods"

    All, I tried to install Windows Vista with Virtual PC last evenning, following Ben's (Virtual PC Guy) instructions.  I however got stuck early on, it asked for my 25 digit activation code to do the install but refused to accept the one I was given in the book accompanying the disks.  Any thoughts E. Will Microsoft make a new Vista CD available Or will Microsoft publish a workaround I tried all possible posts on the web, nothing was successful. Is anyone from Microsoft working on this ...Show All

  • Visual C++ In my program I have #include <GL/glut.h> like this,but when compiling my program,it have error "can not open file GL/glut.h"

    In my program I have #include <GL/glut.h> like this,but when compiling my program,it have error "can not open file GL/glut.h" Thank you for your answer. Seams that you have a code that uses the glut library (what ever this is). I just used google and found this link. http://www.xmission.com/~nate/glut.html ...Show All

©2008 Software Development Network