Software Development Network Logo
  • Audio and Video
  • SharePoint Products
  • Visual FoxPro
  • VS Team System
  • Visual C++
  • Smart Devicet
  • Microsoft ISV
  • Visual Studio
  • Windows Forms
  • IE Development
  • Windows Vista
  • SQL Server
  • Visual C#
  • .NET Development
  • Game Technologies

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

pinoyz

Member List

Burrough
NickGetz
TommieJ
TheQuietShadow
Tylerk
Mona_D
tribal
Matt Stum
lord_8
nope25546
nate-d-o-double-g
Wasting Body
dczraptor
Selva kumar
JR-J
Saishyam
akjoshi
CYBORG615
Fritz Klein
DoS
Only Title

pinoyz's Q&A profile

  • Visual Studio Express Editions How to refill a dataset?

    I have this code in my vb.net program. Me.TickersTableAdapter.Fill(Me.DataSet1.Tickers) It fills the data from the external file fine. However, I'd like to be able to refill the data after it has been changed by an external program. Calling the line a second time doesn't work because I get "datareader already active on this command" error. How can I refill the data from the external file tia No worries, I'm blind ! Just found the .Clear command. Hopefully efficient enough. Thanks go to these good folk! ...Show All

  • Windows Forms How to control record deletion using BindingNavigator?

    Hello.. When I use BindingNavigator to navigate records shown in a DataGridView a button whose default action is to delete records is placed on the toolbar. How can I show a confirmation message when that button is clicked I tried to use the Click event but when I don't accept the deletion, I don't know how to cancel the process. That is the first problem. The second problem is that if I have more than one rows selected in the DataGridView, only the first selected row is deleted. Any help will be greatly appreciated Thanks Jaime Firstly you have to select your bindingnavigator - > property . set deleteitem to none. then this code - > Private Sub BindingNavigatorDeleteItem_Click( ByVal sender ...Show All

  • .NET Development The Specified Module could not be found

    I have an application developed with Visual Studio 2005 which consists of the main application EXE as a managed .NET Windows Forms application in C# and an unmanaged C DLL. I am calling functions in the unmanaged C dll using for example: [ DllImport ( "mynative.dll" )] public static extern short initialise(); and in the C DLL I have __declspec ( dllexport ) short initialise(); This all works perfectly on my development PC but when I deploy to another PC and run the application I get an exception as follows: Unable to load DLL 'mynative.dll" : The specified module could not be found (Exception from HRESULT: 0X8007007E) mynative.dll is present and stored in the same folder as the myapp.exe file and .NET 2 Frame ...Show All

  • Smart Device Development Disabling backlight turning on automatically with internet connection

    I am developing an application for windows mobile which synchronizes with a server. If no internet connection is enabled, Windows Mobile connects via GPRS automatically. Unfortunatly there is always a popup message and the backlight is turned on when this happens on Windows PocketPC 2003. How can I avoid this ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Undefined errorcode from D3DXGetImageInfoFromFile

    At the moment i'm programming a 2d graphical engine with directX9, but when i try to run the function D3DXGetImageInfoFromFile((LPCWSTR) filename, &imginfo); it gives back an undefined error code, i'm using the directx october 2005 sdk with the latest version of the directx runtimes. Full engine GraphEngine.h: #pragma once class GraphEngine; #include <D3d9.h> #include <Windows.h> #include "GraphResource.h" class GraphEngine { public : IDirect3D9 *D3D; IDirect3DDevice9 *D3DDevice; IDirect3DSurface9 *D3DScreen; GraphEngine(HWND hWnd); ~GraphEngine( void ); void drawImage(GraphResource *img, int X, int Y); void RefreshScreen(); }; GraphEngine.cpp: ...Show All

  • Visual Studio Express Editions dataset and datagrid problems

    i have a db (access file) i draged a datagrid and connected the thing to the dataset in wizard it automathicly gave me this line in my load function this .workersTableAdapter.Fill( this .db1DataSet.Workers); now i see the rows inside the grid, but i cant seem to change them (when i reopen the program, the rows are the same they were) if someone here knows the subject and can give me some pointers that could be great (if that someone has an email address, icq, or msn, even better, maybe i could even send it to them if they would rather see it with their own eyes) Hi darthziv, My e-mail address is on my profile, just remove the (nospam) bit. Also I'm on a computer that dose not have Visual Studio on a ...Show All

  • Visual Studio 2008 (Pre-release) CompositionTargetRendering vs Timeline animation

    Hi all, From a display point of view, is there a difference between operations performed by an animation timeline, and those done in a CompositionTarget.Rendering event By difference, I mean the smoothness of the animation achieved with the two approaches. In Flash, one notices a difference between animations done in onEnterFrame, vs. actions that are timer based. One can also liken this to the old practice of syncing graphics operations with the vertical retrace interrupt. So, in the WPF context, are animationclocks somehow aligned with render events Thanx for the detailed and helpful reply. Another unknown that I have in the area of timelines and performance, regards the begintime property. When you run a timeline whose begintime ...Show All

  • Visual Studio Team System Project/TFS Integration issue - please help

    Ok, this is my last effort before opening a ticket with Microsoft and spending the rest of my life on the phone with them. I have Project Server setup, and I have it receiving its data from TFS. The data is replicating between the 2, etc. Here is the problem. When I click "Refresh" on the Team plugin for project a couple times, the data will change. Here is an example: I have a work item with Actual (Completed) Work set to 8 hours. This shows in TFS. Refreshing it in project shows the 8 hours fine. However, if I refresh again it changes it bakc to 0. Clicking refresh 2 more times sets it back to 8, hitting it again makes it go back. This happens with most of the work items, and I cant for the life of me figure out what it is. ...Show All

  • Smart Device Development Device not connected

    Hello every one! i am very new to Windows Mobile development. My problem is, I am unable to deploy files from my Visual Studio 2005 to my WIndows mobile based Pocket PC. When i run any Pocket PC application on Emulators, it works fine, but when i choose to test on device, then VS says device not connected where as, the Device is connected through Active Sync ver 4.1. I have I-mate JAMin as my Pocket PC, i am using the 90 days trial version that comes with Windows mobile resources Kit DvD. and above all, i am a total NEWBIE in WIndows mobile world. Waiting for your kind answers. Thanks for your time! Regards! Syed Mazhar Hasan AndrewBadera wrote: when you set your ...Show All

  • Visual Basic ExitWindowsEX - How to get it to work in VB.Net 2005

    I have been attempting to get the ExitWindowsEX function to work in VB. I have not been able to get it to work as yet. I have read numerous MSDN articles and help solutions from various sources on the internet. Non of the solutions I have found work for me. I am hoping to get some help in making this work in VB. Here is what I have so far: Public Enum TokenQueryFlags 'As UInteger STANDARD_RIGHTS_REQUIRED = &HF0000 STANDARD_RIGHTS_READ = &H20000 TOKEN_ASSIGN_PRIMARY = &H1 TOKEN_DUPLICATE = &H2 TOKEN_IMPERSONATE = &H4 TOKEN_QUERY = &H8 TOKEN_QUERY_SOURCE = &H10 TOKEN_ADJUST_PRIVILEGES = &H20 TOKEN_ADJUST_GROUPS = &H40 TOKEN_ADJUST_DEFAULT = &H80 TOKEN_ADJUST_SE ...Show All

  • SQL Server views in stored procedures?

    Hello, This maybe a simple question, I'm using reporting services to make a report, question is can I write a stored procedure that queries from a join of two views instead of two tables I'm having trouble getting my table data into the reportable state I want it, and I think organising into views might be easier. Thanks for any help. Excellent, I'll embark on that route right away then, saves me faffing with the tables no end. Cheers Buck Woody. ...Show All

  • Visual C# How execute for example calculator from my application code?

    Hello I need code which opens any file from disk. For example When I click button in my application then - calc.exe opens or xxx.html opens in Internet Explorer or ... Can anybody help me. Hi You can start any application with System.Diagnostic.Process.Start method just specify the application name and arguments and it will run the application for you. System.Diagnostic.Process.Start("calc.exe"); //will start Calculator System.Diagnostic.Process.Start("iexplorer.exe"," www.micorosft.com "); //will open IE with loading Microsoft.com web site ...Show All

  • Visual C++ textBox - 2 questions

    Hi all. I have a textBox controler in my win app that i write in c++. I insert data into the textBox in runtime. 2 Questions: 1) Is it possible to insert the data in LIFO that means that if i insert line "bla bla bla" then new line and then "yada yada yada" it will appear as yada yada yada bla bla bla Is it possible without clearing the box each time, writing new line and then filling with old data. (I have a lot of info and after a while the screen updates slow) 2) If the first question is answered and the data is inserted in LIFO, is it possible to show only the last X lines As i mentioned i have a lot of data comming in but only the last data is the relevant to see... Thanks ahea ...Show All

  • Visual C++ Legacy MFC app using HWND_TOPMOST

    Hi All... We have a browser-based application that uses an active-X control to spawn off another process. This spawned process is written using MFC. It performs a call to SetWindowPos with HWND_TOPMOST specified - this is so the application will force itself to the top of the Z-Order. And (until now) it works fine... We've found however, that when that that active-X control lives in IE7, the app spawned does not force itself to the top of the Z-order. It gets above all other apps except for the IE7 from which it was spawned. Any ideas as to why IE7 refuses to allow the app to get above its Z-order Hello Curt, Thanks for your advice. Personally, I want to apologize for make you feel frustrated. I agree ...Show All

  • Smart Device Development Needs to support ARM DSP opcodes out of the box (or, Welcome to the 21st Century)

    The DeviceEmulator 2.0 Community Tech. Preview has gone live, at http://www.microsoft.com/downloads/details.aspx FamilyId=13F5DE85-30CD-4506-9C5B-A2068FA1EE9E&displaylang=en . V2 has: Much improved performance DEComInterfaces.idl - the COM interface to the emulator, along with sample code showing how to use DMA to communicate between a Windows app and an app or driver running inside the emulator. This is the DeviceEmulator's equivalent of the "Building DMA Drivers for the Windows CE.NET Emulator" article at http://msdn.microsoft.com/library/default.asp url=/library/en-us/dncenet/html/builddmadriver.asp . An eXDI driver for Windows CE Platform Builder 5.0, giving you a hardware debugger interface to the emul ...Show All

©2008 Software Development Network