Alexey Orlov's Q&A profile
.NET Development Microsoft Access Question
Sorry I didn't know where to put this in the forum. Is there a patch that I can use so that I can view/edit/save my databases from Microsoft Access 97 and Microsoft Access XP. Regards, Bob Bamber A patch for what For Access itself, or for a development technology like ADO.NET Are you running into a problem that you are looking for a fix for If so, please post more information about the problem. This forum is geared to ADO.NET, so unless ...Show All
.NET Development Cannot DataBind DatePicker UserControl
Hi! I have made a userControl to select dates as follows: //************************************************************* <% @ Control Language ="C#" ClassName ="datetimepicker" %> <% @ Import Namespace ="System.Data" %> < script runat ="server"> private string _beginningYear = "1950" ; private string _EndYear= "2008" ; private DateTime _Date = DateTime .Today; public DateTime Date { get & ...Show All
Visual Studio Local Search from VS'05 returns zero items
I'm using VS'05 Pro. The search function of help has stopped retuning local items. It used to work, and the only change I can think of is that I uninstalled VS'03. I've tried both the repair and to reinstall MSDN Library from the December '05 DVD, but it has not fixed the problem. Help is configured to "try local first, then online" and the local help option is checked in "Search these providers". It does appear to spend some ...Show All
Windows Forms Finding a Control in the GAC
I'm developing a windowsforms application that will be deployed on a variety of workstations. Each may have a different level of Visio installed. If the user has Visio 2003 installed, my app should use the PIA and host the control withi ...Show All
.NET Development runtime error
I hope someone can help me out here. Since a few days my website gives a runtime error. I haven't changed anything, and my provider says he didn't change anything, and he can't solve the problem. Take a look at www.gratisverlanglijstje.nl/default.aspx The problem is solved. My hoster didn't know what caused the problem. After he completely re-installed IIS the error does not occur any more. Thanks everyone for y ...Show All
Visual C++ Problem to delete unmanaged object
Hello, I would like to know why I'm unable to delete an unmanaged object : Here is the code : public ref class SpeGui : public System::Windows::Forms::Form { private : String^ m_sCompassPort; int m_nCompassBaudRate; int m_nCompassDataBits; int m_nCompassStopBits; int m_nCompassParity; int m_nCompassRefreshPeriod; int m_nCompassAccuracy; PI_DigitalCompass * m_pThCompass; MyCom ...Show All
Visual Studio Express Editions how to Use a SQL select for a variable
I am sure this is not the easiest thing in the world but, I would like to do a sql query to get information for a variable and I have no clue where to start. Dim Rate As Decimal Rate = 78.81 "This is what I have now" But I want to do something like Rate = Select Price From Product Where Product_No="300" I have the Product table setup up in my DataSet how do you code this Thanks, Terry ...Show All
Windows Forms "The terrarium server is experiencing temporary difficulties. This is probably why you are not receiving any animals. Please bear with us while we get the issue resolved."
Hey guys, Would it be too hard to put a status indicator on the web site somewhere indicating the availability of the server. Ie, a red or green light representing the server status being available or not would be a nice feature. I for on ...Show All
Visual Studio Remote debugging DCOM nightmare
Hi, Does anyone go through the nightmare of configuring remote debugging using DCOM I have followed all the MS tutorials and still does not work, I receive the message "The RPC service is not available". Not very handful when I have tested the RPC communication with my server using RPCPing and works fine! I have the user on Debugger Users and I can see that my user is logged using the security audit, but once it tries to retrieve the proce ...Show All
Visual C++ I have a problem with AfxBeginThread()
I want to create a worker thread but i recive an error like this: my code: UINT ReadCD(LPVOID lp) { .//Some Code// . . return0; } . . . AfxBeginThread(ReadCD,NULL); Error:"error C2665: 'AfxBeginThread' : none of the 2 overloads can convert parameter 1 from type 'unsigned int (void *)" http://msdn2.microsoft.com/en-us/library/s3w9x78e.aspx might help! Thanks, Ayman Shoukry &nbs ...Show All
Visual C# simple multi thread in c#
HI Ok, i understanded what is multithread but can anyone show an example of a simple simple simple program using multi thread or point to a good tutorial Thanks.. Have a look at this MSDN article, describing multi-threading and how to apply it in Windows Forms programming: "Give Your .NET-based Application a Fast and Responsive UI with Multiple Threads" ...Show All
Visual C# Dynamic assembly loading with static functions
Hello, I have a program which is dynamically loading in several assemblies. So what I am doing is creating instances of the assemblies just to extract some data (constants). obj = Activator .CreateInstance(typeTemp); //Create the instance then typecast it to access some method But what I want to do is to access a static function instead of having to create an instance of the class and calling the method. Is there a way to ...Show All
Visual C# create gif
does anybody has a simple idea how to create .gif image with c# do you want to create one (like draw a box from scratch) or make a gif from some other image. System.Drawing and System.Drawing.Imaging and System.Drawing.2D are all classes that deal with writing / copying images. hth, mcm ...Show All
Visual Basic How Can I Use Flash file (swf) in my vb2005 project as a splash creen
I have created a project using vb2005, I want to make the splash screen as a flash file Instead of images. How Can I do this it is Ok with all forms but not splash I have added item as splash screen into my project and aslo other time s normal form, I add the flash in these forms and I have assigned it as splash screen from (my project --> application) in this case the error comes . but in normal form there is no error ...Show All
Windows Forms Expression frustration
OK, I have a typed dataset with three tables. Project, Task and Project Task. The ProjectTask table captures the many to many relationship between Project and Task, and has a composite primary key of ProjectID and TaskID, together with some additio ...Show All
