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

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

Alxenen

Member List

anisk
Mürşit Hakan ÇİL
Scott_programmer
Cody Evans
ghostnguyen
Richard Maher
bishoycom
Uncle Dave
Lbo
DevilDog74
Cathie 64
MichaelEber
BBrazeal
jrsearles
shah_hs
swathi_challa
mtronix
xr280xr
Ash_
schobmich
Only Title

Alxenen's Q&A profile

  • Visual C# Extracting data from html file.

    I have a html file, I need to retrieve from it specific value: <some html code> <tr> <td class="textCell">Internet IP Address</td> <td class="textCell"> 82.2.118.114 </td> <some html code> I need to retrieve IP address. For that I need some how to locate this portion of code (by searching for Internet IP Address), and then to extract the IP. How to do that Yes you could use Regex. In fact this may be a better idea! For Regex - serch the net - Several options, the one below is from: http://www.codeproject.com/dotnet/RegexTutorial.asp Here is a sample - I did not try to compile or run the code, but this is a general outline str ...Show All

  • Visual Studio Team System The application for project is not installed (project types .rptproj and .dwproj)

    It used to work, but then... Visual Studio 2005 was hummin' and I had a number of BI projects in both Report Services and Analysis Services. I wanted to add source control and decided to install the Team Suite and I did something wrong. I just don't know what it was. In the end, I deinstalled every Visual Studio 2005 (including, of course,the Team stuff)and SQL Server 2005 application, and reinstalled old faithful Visual Studio 2005, but nothing has worked. I'm missing the Business Intelligence project templates completely and I'm guessing that if I had them, I wouldn't get either of the following 2 messages when I try to open existing projects: "The project application for 'c:\...\SOS.dwproj' is not installed. Make sure the ...Show All

  • Software Development for Windows Vista WH_CALLWNDPROC is not capturing WM_KEYDOWN

    I am trying to use WH_CALLWNDPROC hook in my program as a dll. I was not able to capture any keyboard event or mouse event (eg: WM_KEYDOWN). Please let me know why I as not able to capture those above mentioned events. I have given below the CallWndProc( ) code and shared data #pragma data_seg("SharedBlock") HHOOK sh_hook = NULL; HANDLE hWnd = NULL; CWPSTRUCT* pData; int pcount; FILE *f1; #pragma data_seg() LRESULT __declspec(dllexport)__stdcall CALLBACK CallWndProc(int nCode,WPARAM wParam, LPARAM lParam) { char FileName1[300]; char name[200]; TCHAR className[200]; char ch; HINSTANCE hInst; if ( nCode == HC_ACTION ) { pData = (CWPSTRUCT*)lParam; if(pData-> ...Show All

  • SQL Server select fields in dropdown

    Hi, I am new to SQL reporting Services. I am using SQL RS 2005 Is there any way to allow the users to select the fields to be displayed in report from a list in a dropdown I don't want any aspx page to be used for this. Is there any command which can do the same.. thanks in advance. PMNJ ...Show All

  • Visual C++ use templated base class declared in 1 C++/CLI assembly in another C++/CLI assembly?

    Hi, In C++/CLI, is it possible to take a template base class declared and defined in one assembly and use it as a base class in another assembly If so, how IOW: assemblyA: template < typename T > public ref class Wrapper : PtrWrapper< T > { protected: Wrapper( T* pObj ) : PtrWrapper<T>( pObj ) { // do something } ~Wrapper( void ) {} }; assemblyB: public ref class Batch : public CoreAPI::Wrapper< cBatch > { }; where T is an UNmanaged type (and cBatch is also). Both assemblies are DLLs, and both are CPP/CLI, if that matters. Wrapper is being successfully used as a base for many classes in AssemblyA. I can't get this to work. If I just have a reference in B to A, ...Show All

  • Windows Live Developer Forums Robot Invaders Contest - Who did you vote for?

    The robot invaders contest ( www.robotinvaders.com ) is closed for new entries, so all bots are in. A total of 51. With $40.000 in prizes, everybody of course wants to win. But which bot do you think will make a good chance The prizes: Grand prize (1): AlienwareR MJ-12 7550 Workstation First Prize (1): BoseR LifestyleR 48 DVD Home Entertainment System Second prize (5): AlienwareR Sentia M3200 System Third prize (10): GarminR nuvi 360 User's choice: 80 GB USB Portable Drive / DX1 Input System / LED Binary Watch The bot with the most votes on September 15th gets the user's choice award. It looks like that would be " samplebot@hotmail.com " with a total of 412855 votes! Amazing. Last time I talked to that bot though it could ...Show All

  • Visual Studio Tools for Office Need help getting started with VSTO & Excel

    I have many custom procedures that I want to use in any Excel workbook through the menu bar. I used to do this in VBA with an add-in. Now how do I do this with VSTO Also, is there any related sample projects and coding for VSTO and Excel complex range work. Tim, Q: ... any Excel workbook through the menu bar.Now how do I do this with VSTO A: Please see the following article about Ribbon and how to implement a RibbonX solution: http://www.excelkb.com/article.aspx id=10217&cNode=3C8V1B Q: Also, is there any related sample projects and coding for VSTO and Excel complex range work. A: Please see the following URL: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=196504&SiteID=1 ...Show All

  • Visual Studio Express Editions The name 'quit' does not exist in the current context

    I don't understand why my method does not see the quit variable. Isn't the boolean quit a wide scope variable available to all methods I tried putting it in a couple of places outside Main and inside main but I can not get a method to see it. Can someone explain to me what gives I get the error: Error 1 An object reference is required for the nonstatic field, method, or property Program.quit'    bool quit = true ; static void Main( string [] args) { do { getChoice(); } while (!quit); } public static void getChoice() { quit = IO .GetChar( "Choose a)square root, b)floor, c)absolute value, d)Quit: y or n " ); quit = (quit == 'y' ); }   Ok, ...Show All

  • Audio and Video Development Set Cursor Image

    How can I add an image to the cursor I've tried: CursorManager.setImage(" file:///dvddisc/ADV_OBJ/cursor.png "); and CursorManager.Image=" file:///dvddisc/ADV_OBJ/cursor.png "; but that won't work. Also I've attached an optical mouse to the Toshiba's USB port but it doesn't seem to work but using the remote controller in cursor mode works. Never used filecache, hope you find it otherwise, i'll just let a button hold a .png cursor and move that ...Show All

  • SQL Server Package Variables Not Available at Runtime

    Hello, I have three package variables that I need to have access to at runtime. All three variables have package scope. The first two, 'StartDate' and 'EndDate' are DateTime variables. The third is called FilePath and is a String variable. I have taken the following steps; 1. Enabled package configurations 2. Set up all three variables as Parent Package Variables, and have targeted the 'Value' property for each. 3. In the properties of the solution, I have set AllowConfigurationChanges to True. 4. After the package was built, I ran the Package Installation Wizard from the Manifest. I have done both File System and SQL Server installations. When I go to run the package, none of the three package variables are available for modifica ...Show All

  • Visual Studio Super slow installation for VS2005 SP1 beta

    Well, it’s not something new, there are people at Microsoft that work hard to make our life easier, like the Microsoft Windows Vista installer for example, an entire OS in 20 min; and there are some less experienced developers (my assumption only) who are given for some reason the task of creating the VS2005 SP1 installer. Whoever wrote that thing, he, she or they, can say whatever they want, but to take 2 hours to get the SP1 beta installed is just damn stupid, here are 2 hours by a million people in the world, a total of 2 million hours lost, thanks to a group of developers at Microsoft, maybe they could have spend 100 more hours to learn math, or to profile the installer, and could have saved the world a million hours ...Show All

  • Visual C# Regarding hard code in C#

    hi, I am developing a web-based application which needs lot of conditions to be checked . For Example : if x=5 ... instead of hard coding the value 5 ...is there any method so that i can access the hardcoded values globally in my entire application. In Asp we can use .ini file but .net has left .ini file . Please suggest me the right method ..to overcome this problem I'd probably add a class that contains the parameters... eg: public class BusinessParameters { public const int MyLimitation = 5; } But since you mention ini files i presume that you want to use a configuration file... So add a Settings file to your project... And add an entry for MyLimitation.. Now you can use this instead o ...Show All

  • Internet Explorer Development How do I install properly a C# windows control in IE

    I have a problem because I can't figure out how exactly it works when it comes to installing a windows control a page that is displayed in IE. Any ideas http://www.codeproject.com/cs/miscctrl/htmlwincontrol.asp ...Show All

  • SQL Server Extremely Poor Performance - Identical DB's but very different performance

    Hello Everyone, I have a very complex performance issue with our production database. Here's the scenario. We have a production webserver server and a development web server. Both are running SQL Server 2000. I encounted various performance issues with the production server with a particular query. It would take approximately 22 seconds to return 100 rows, thats about 0.22 seconds per row. Note: I ran the query in single user mode. So I tested the query on the Development server by taking a backup (.dmp) of the database and moving it onto the dev server. I ran the same query and found that it ran in less than a second. I took a look at the query execution plan and I found that they we're the exact same in both cases. Then I too ...Show All

  • Visual Studio 2008 (Pre-release) objectdataprovider.refresh()

    What does this method do in the context where the ObjectDataProvider is bound to an observable collection with the constructor calling to the database to fill the collection public MyCollection() {    MyCollection<MyObject> myObjects = GetMyObjectsFromDb();    foreach (Mark mark in marks)    {       this.Add(new ScreenMark(mark));    } } with this in the XAML <ObjectDataProvider x:Key="MyCollectionDS" d:IsDataSource="True" ObjectType="{x:Type MyCollection}"/> <ItemsControl ItemsSource="{Binding Mode=TwoWay, Path=., Source={StaticResource MarkCollectionDS}}"/> I want to be able to cause a refresh of data, ie call back to the database to get an ...Show All

©2008 Software Development Network