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

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

worldhello

Member List

Witold
mr_superlove
Joshizzle
fibonacci1123
xLogicTalentedx
Santhosh Pallikara
cb3431
Titu
timmy44
Giminiani
GrandpaB
Speeding Target
Postman001
陛下
teemark
Seekaye
ijrr
jwadew
Pascal Frey
Musafir
Only Title

worldhello's Q&A profile

  • Visual C++ simulate keyboard operation, but while compiling the program, it said: KEYBDINPUT and SendInput have not been defined.

    I want to use the following codes to simulate keyboard operation, but while compiling the program, it said: KEYBDINPUT and SendInput have not been defined. Please tell me why and the head file needed to be added. KEYBDINPUT ki; ki.wVk = VK_RETURN; ki.wScan = MapVirtualKeyEx(VK_RETURN, 0, GetKeyboardLayout(0)); ki.dwFlags = KEYEVENTF_EXTENDEDKEY; // or KEYEVENTF_KEYUP, one of those must work ki.time = 10000; ki.dwExtraInfo = 0; INPUT ipEvent; ipEvent.type = INPUT_KEYBOARD; ipEvent.ki = ki; UINT nNumEvents = SendInput(1, &ipEvent, sizeof(INPUT)); I appreciate your help. It seems that SendInput(1, &ipEvent, sizeof(INPUT)) was not introduced to vc6.0 when vc6 was released, so I can not use SendInput in vc6, please tell me wha ...Show All

  • Visual Studio How to generate Dyamic crystal reports ?

    I am having two dropdown list box . Which the use has to select the starting date and ending date . With the help of his input i should develop crystal report . How to do it . I am using c# and Sqlserver . Regards, Raghu You first need to create report which take start date and end date as parameter. This report can be associate with your project two ways. 1) Create report in crystal report program and load it "ReportViewerControl" of your project using Crystal API. 2) You can create report directly in your project. Select project-> Add new Item-> (select file type Crystal Report) When you say dynamic report what does it mean . Is it same data but display format is different ( you can control this ...Show All

  • Visual Studio Setup templates

    We currently have a guidance package which we are building, it is almost complete. However, we still need to add a setup project to be generated by the guidance package. I'm at a complete loss on how to do this. Anyone have an example Thanks Wayne where would I find this manifest file I've been looking through the GAT install dirs, but really haven't seen anything that jumps out at me as this is what I need. Thanks Wayne ...Show All

  • Software Development for Windows Vista HELP: Adjusting/Controlling Attenuation (Volume) Level

    I need help guys ... How can i adjust the volume of the audio playout in real time For e.g Left Channel Right Channel 50% 50% 30% 30% 0% 0% 30% 0% 0% 30% i really need this program, good if there's an article of it or a source code or at least steps that where can i get this achive. note that im using simple audio playout using directshow that make use of the Quartz.dll thank you in advance I assume you have looked at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/directshow/htm/ibasicaudiointerface.asp ...Show All

  • Visual C# Object not set to instance of an object

    I want my form to be binded to theses properties of my object but i get that exception....Can somone help me out...I call this function in my form load and when the form loads is when i get the exception I dont thinkg i am missing any thing i have my object reference declared at a global level..... public void LoadFormToData() { try { Customers.CustomerCode = txtCustomerCode.Text; Customers.Attention = txtAttention.Text; Customers.Class = ( string )cboClass.SelectedItem; Customers.LoadType = ( string )cboLoadType.SelectedItem; Customers.VehicleType = ( string )cboVehicleType.SelectedItem; Customers.TermNumber = ( int )cboTerm.SelectedItem; Customers.Status = ( int )cboStatus.SelectedItem; Customers.Commodit ...Show All

  • SQL Server Status of Replication Through Transact-SQL

    Hello, I currently have a transactional replication between SQL Server 2000 and an Oracle database. Once a week on Monday mornings we have a process that drops replication, uploads data to the SQL Server database from Oracle, does some manipulation of the data and then recreates replication. We came across the thought of what would happen if replication had erred out and there were still transactions within the distribution database to be replicated across. Then our job just came about and dropped the replication. We are looking for a way to tell what the status is of replication through Transact-SQL. This way we can check the status and if it contained an error that we could abort the job, so as to not lose any transactions. D ...Show All

  • Visual Studio Express Editions How to read specific lines from a text file?

    Peeps, may I know how can I read specific lines from a text file For example from the "C:\test.text" containing: Line1 Line2 Line3 How would I only read Line 2 without having to read Line1 This would be similar in the case of reading an *.ini file: [LINE1] Line1 [LINE2] Line2 [Line3] Line3 How would i read Line2 under [LINE2] Thanks in advance To work with file content you have to load it into a string variable, then you work with this variable... if you need to substitute a piece of text in string you have to use Regex.Replace ============================================================================= Const pathIniFile As String = "C:\a.ini" Dim s As String = IO.File.ReadAllText(pathIniFile) 'lo ...Show All

  • Smart Device Development Visual Studio 2005 and Mobile 5.0

    Hi there, i've installed "Windows Mobile 5.0 Pocket PC SDK.msi", and supposely it would include some sort of plugins for VS2005. However, in VS, on smart device's projects, i only have: - pocket pc 2003 - smartphone 2003 - windows CE 5.0 Also, on "Device Emulator Manager", i also only see these emulators... Do i need to install something else Tnks Hi there, sorry for the late reply, but i have been busy, and in fact, i still haven't tried your suggestions, that is, trying to run the SDK without any anti-virus or anti-spyware or similar programs... As soon as i try it, i will give you my feedback... Thanks ...Show All

  • Visual C++ Problem with end of file with Ctrl+z

    Hello, I not understand why my program not work. Here is my code. #include <iostream> #include <fstream> #include <string> using namespace std; fstream f; void Create(); void Print (); int main () { int n; do { cout<<"1. Create a new file "<<endl; cout<<"2. Print file"<<endl; cout<<"Your select: "; cin>>n; if (n==1) Create(); if (n==2) Print(); } while (n>=1 && n<=2); return 0; } void Create() { f.open ("Proba.txt", ios::out); string name, Nr; while(cout<<"Name: ", cin>>name ) { cout<<"Nr: ", cin>>Nr; f<<name<<" "<<Nr<<endl; } f.close (); ...Show All

  • Windows Forms Forms and Menory usage

    hi, im running MS Visual Studio .NET 2005 and i created a simple Form by clicking on File >>> New >>> Project >>> CLR >>> Windows Form Application. I added nothing to the forum and then built it and then Started Debugging... When i started Task Manager it shows a simple Form (with nothing on it)as using a hoofing 16.296k of memory i don't get it, i have software on my computer that is basically a Form and many controls on it and it also performs many tasks as an application does and may only use 4.50k Why would a simple Form use so much memory if it isnt doing anything thanks ah ok, i didnt like the look of those MFC because of the toolbar at the top and i couldnt get rid of it . thanks for your ...Show All

  • Visual Studio 2008 (Pre-release) Adding Web Reference in VS 2005 to WCF Service

    Hello, As I’ve found out yesterday, it’s important to create a proxy class for ‘WCF web service’ using svcutil.exe even though it uses 'basicHttpBinding'. If one does it through VS2005's 'add web service' routine, the created proxy allows passing string fields only. All value types doesn't go through. I mean the proxy class looks correct with all fields having correct types. But when I attach the debugger to the WS I see default values only for types like int, short, DateTime etc. Am I doing something wrong nefis Nefis, Do you have the Visual Studio Extensions for .Net 2.0 installed If so you can use "add service reference" instead of "add web reference." If yo ...Show All

  • Commerce Server Basic Pipeline Component Template

    I just published a basic pipeline component template to get any aspiring component developers started: http://blogs.rockstarguys.com/blogs/colin/archive/2006/11/13/26.aspx The first release includes both a C# and VB project template as well as a bonus C# unit test item template. I have a few other aspects of our pipeline development process that I want to extract and publish in the coming weeks. Let me know what you think! Cheers, Colin ...Show All

  • Internet Explorer Development IE7 RC1 and vbscript (InternetExplorer.Application)

    Hi, Has anyone had problems with existing vbscripts that output to IE and the IE7 RC1 release I have some vbscripts that use IE to display output and they work perfectly in IE6 but are broken with the RC1 release of IE7. Code like this below doesn't display anything in the browser window: Set objExplorer = CreateObject("InternetExplorer.Application") objExplorer.Navigate("about:blank") objExplorer.AddressBar = 1 objExplorer.Toolbar = 1 objExplorer.StatusBar = 1 objExplorer.Width = 600 objExplorer.Height = 400 objExplorer.Left = 300 objExplorer.Top = 150 Do Until (objExplorer.readyState = 4) wscript.sleep 100 Loop objExplorer.Visible = 1 Set objDocument = objExplorer.Document objDocument.Open objDocument.W ...Show All

  • SQL Server Forms Authentication without Report Manager

    I am intergrating Reporting Services into my own web application and want to use Forms Authentication. Do I need to do anything different than the Security Extension Sample on MSDN books online Specifically, since I no longer need to go through Report Manager, how would I login the user and manage the cookie http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnsql2k/html/ufairs.asp ferame=true will help you in this. Actualyl I am researching this myself. I am looking to add/delete user roles programmatically. So far, I am having little luck but, I think I'll pull it together! ...Show All

  • Software Development for Windows Vista Windows Vista other versions.

    Hi, I downloaded windows vista RC2 build (v5744-16384) from microsoft connect site and installed in my PC. It is installed only Windows Vista Ultimate Version. Is there any option for installing other versions like Home Basic, Home Premium etc., Note: I downloaded Windows Vista (v5744-16384) FAQ document also from microsoft connect site. In that document, they have mentioned about all the versions of windows vista available in the v5744 build. But, i am not able to find any other versions. Thanks in Advance. Regards, dotnetsekar. I've been trying to install Vista Basic Home, but it seems it only can installing Ultimate. The install program don't ask for any product key. On Vista RC1 I was asked for product ke ...Show All

©2008 Software Development Network