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

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

mankow

Member List

actofbob
2D
Sianspheric
CJ_Barnhart
caeriel
Ehsan_AIUB
rod 001
Bil Simser
Matt Gates
kO2n
Will K
Am X
Martin Hellspong
XF
vogue
Rodel E. Dagumampan
Richard G.H.Lin
AllenClark
HerrLinder
Wa5h
Only Title

mankow's Q&A profile

  • Visual Basic How to use Sybase ASE11 to a VB project

    Can somebody help me on how can I use Sybase ASE11 as a backend of a VB project Thank you! ...Show All

  • Visual Basic Why do the ODBC 3.5.1 and MySQL 3.1.8 drivers not work?

    Why do the ODBC 3.5.1 and MySQL 3.1.8 drivers not work Michael Seriously I read a few of your post, atfirst I can understand that you are pissed off. But then when I read a couple more, I totally think you should go do something else. I have the same problem with MySQL but I know its a B E T A, and people answering this thread is just like YOU and ME. Its not like every reply is OFFICIAL MICROSOFT SUPPORT. So STFU. Dont act like a kid that doesnt get candy. You made me register to post this................ ...Show All

  • Visual Studio ItemGroup and Copy Task

    I have defined a ItemGroup to point to a <SourceFolder> that references all xml files in that folder. Note that this folder is empty at the start of the build. <ItemGroup> <SourceFiles Include="$(SourceFolder)\*.xml"/> </ItemGroup> I want to have a Copy task that moves any xml files from the <SourceFolder> to a <DestinationFolder>. <Target Name="CopySourceFiles"> <Copy SourceFiles="@(SourceFiles)" DestinationFolder="$(DestinationFolder)" ContinueOnError="false" /> </Target> What I am findi ...Show All

  • Visual Basic Using my.log.WriteEntry or WriteException in a web service.

    I’m trying to use the my.log.writeExcption method to write exceptions to the event log on a web server. I’m having a hard time finding information on how to set up the web config. There are lots of good examples for my.application.log but not much showing up for my.log from ASP.net. The following is what I have in my web.config: <system.diagnostics> <sources> <source name="DefaultSource" switchName="DefaultSwitch"> <listeners> <add name="EventLog"/> </listeners> </source> </sources> <swi ...Show All

  • Visual Studio Express Editions Comment closed...

    I managed to fix this issue, so it should probably be closed. ...Show All

  • Visual C++ /CLR and Packing issues

    It seems that one cannot build a .net project in VC++ that uses anything other than default structure alignment  - in VS2005.  After some trial and questioning I found that out and now my VC++ web service does compile and all the link errors are gone except for 1 new one.  That one is about a missing extern called _CorDllMain.  I need to know what that is about as I cannot find anything in help on it. Also, it seems that changing packing to 8 will cause me problems, even if I do get the project to link.  This is a mixed mode project, managed and unmanaged code, that uses /clr:Oldsyntax, and it accesses an existing ...Show All

  • Visual C# Process & WaitForExit & OutputDataReceived

    . Rob, This is from a larger project so I've tried to cut and paste the relevant bits.  This took ages of trial and error to get working. Hope you can make sense of it. Cheers Steve The process is started from a class that also has a Windows form (to show progress).  The sendclip method starts the commandline process which returns as soon as the process is started - as then events take over.  The show dialog displays the form and kind of forces a 'wait'.  I use events to close the form when the process finishes and things carry on this.sendclip(clip, clip.Partialcommandline, Qsyst ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here:  http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp  and here:  http://msdn.micro ...Show All

  • Visual Basic How can i pass a variable from a sub to another sub ? thanks.

    hello, this is really simple but drives me crazy, i want to retrieve saved value of OldTab in the 2nd sub, however, when doing step by step i can always see the variable resetting to 0 i tried to declare it at module level with Public & Public Shared also tried Static, Shared, Private Sub, Public Sub .............. etc but it doesnt work   Public OldTab(0 To 1) As Integer Sub TabList_Deselecting( ByVal sender As Object , ByVal e As System.Windows.Forms.TabControlCancelEventArgs) Handles TabList.Deselecting Dim TabListSelectedIndex As Integer = TabList.SelectedIndex Dim OldTab(0 To ...Show All

  • .NET Development Run one instance of a window

    How do I run only one instance of a window if I do not know the window name (Just suppose the title had the time in it). This means I cannot use FindWindow. Hi, What do you mean by window If you are talking about you application then you can run its single instanace ... read following post... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=453945&SiteID=1 If you are talking about a particular form then you can make its singletone. ...Show All

  • Visual C# Make a timer go once

    How do I make a timer call only once private void start( object sender, EventArgs e) { clock.Stop(); ...Show All

  • Visual Studio Express Editions New to C

    Hello. I was interested in programming in C and of course I bought a book. However the book is a little outdated, so they describe how to use the tools such as the compiler, etc. They teach you how to compile and link everything with Borland and Microsoft Visual C++. This book is C For Dummies, printed in '96. I downloaded Visual C++ and it has WAY more features than the one in the book has. I'm lost. Starting out he teaches you to do the usual "Hello world!" script, I started a new project, created a C file, typed in the code, saved it and... How do I compile I tried the Visual Studio command prompt, placed the C file where they told me ...Show All

  • Visual C++ TIME CONVERSION BUG

    // TimeConstructionBug.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "ATLComTime.h"   int _tmain( int argc, _TCHAR* argv[]) { COleDateTime a(2006, 12, 1, 17, 0, 0); SYSTEMTIME b; a.GetAsSystemTime(b); FILETIME c; ::SystemTimeToFileTime(&b, &c); COleDateTime d(c); CString startTime(a.Format()); CString endTime(d.Format()); printf( "StartTime %s, EndTime %s\n" , (LPCTSTR)startTime, (LPCTSTR)endTime); return 0; } I compiled the above C++ code (minimum to show the possible bug) using Visual Studio 2005 as ...Show All

  • .NET Development New datasource doesn't produce tableadapters

    New datasource doesn't produce tableadapters I created six new tables in my access database.  Try as I did, I couldn't add them to my current dataset. So I added a datasource, to which I added those six tables. The designer new the new datasource shows tableadapters for each of the tables. However in my code, when I try to dim a new tableadapter, I get the warning that the tableadapter isn't a member of the new dataset. However, intellisense will allow me to dim a datatable.  However adding a row to a datatable is cumbersome.  I haven't used vs studio 2003 for a long time, and I don't even remember how to do it. dennist6 ...Show All

  • Windows Forms User Controls Vs Custom Controls

    Hi, I'm currently using VS 2005 and designing Winforms. We have a need to develop new controls. During this tenure, we are stuck which control to design, either "User Controls" or "Custom Controls" What do you suggest and specific reason for that In other words, which is the best option between User & Custom Controls Any light on this aspect will be highly appreciated. Regards, The difference is in the design. User control can bo design with drag 'n drop Custom control must be all coded In windows form there's not a big difference but in asp.net if you want to distribute a user control, you also need to distribute the ascx not ju ...Show All

©2008 Software Development Network