Dwi Pamudji's Q&A profile
SQL Server creating a HTTP Cube
Hi, Please guide me in creating a HTTP cube and how to access it from OI designer. Thanks Can you please try and explain your problem in more detail. You can access Analysis Services through HTTP, but not sure what do you expect from "HTTP cube". What is "OI" you refer to Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
Visual C++ StackOverflowException in Managed C++ wrapper
Hello, I have some C++ code in a dll and I wrote a .NET wrapper for it with MC++. In the managed class I have a handle to the C++ code: public __gc class NInfoCmdClntCLR { private: ClsNInfoCmdClient *native; public: // ... } I also declared the ClsNInfoCmdClient class as follows: class ClsNInfoCmdClient : public NInfoCmdClient { public: // constructor and destructor ClsNInfoCmdClient() {} ~ClsNInfoCmdClient() {} // implementa ...Show All
Visual Studio Express Editions MD5 checksums for Visual Studio .Net Express Edition Beta 2 Download
Can anybody please provide MD5 checksums for various Visual Studio .Net Express Edition Beta 2 products available for download http://lab.msdn.microsoft.com/express/maninstall/default.aspx I only have a dial-up connection and I want to make sure if my download is corrupt or not. I hope anybody could help me. Yes, you can find them on this thread : Thanks, Dan Fernandez Product Manager http://blogs. ...Show All
Visual C++ about vc++ ??
I already learn c++.now,I want to learn vc++ .net. But i don't know what book i shall use. As a beginner,who may help me to find some web as to learn vc++ Take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=107484&SiteID=1 for recommended books. Thanks, Ayman Shoukry VC++ Team ...Show All
SQL Server Reporting Services: timeout issue
Hi there, I've just developed this big report in RS SQL 2000 that includes 6 subreports (repeated for each item in the database) and that should print some 800 pages. A light version of the report that only queries part of the data (about 10%, for testing purposes) run with success, including all subreports in about 15 minutes. Once I try to test the report with all the data (all subreports and the main report query directly from th ...Show All
Windows Forms Editable Panel within UserControl
I have a usercontrol that I drop a panel and a label onto. I dock the label to the top and the panel dock to fill. When I drop my custom usercontrol onto my form, I can't add controls onto my panel. I want the ability to add ...Show All
Visual Basic Simple Query about queries
Hi all I have just created my first paramerised query the .net way and embarrasingly i dont know how to call it and fill in the parameters. The Query is named fillby1. I tried copying the walkthrough in help but this built this code for me which doesn't add in the parameter. Try Me .NotesTableAdapter.FillBy1( Me .OrganiserSQLDataSet.Notes) Catch ex As System.Exception System.Windows.Forms.MessageBox.Show(ex.Message ...Show All
Visual C# Font Properties
I was wondering if the size of a font is measured in pixels Hello. MessageBox .Show( TextRenderer .MeasureText( "Wlgq" , this .Font).Height.ToString()); Hope this helps. ...Show All
Windows Forms Datagridview cell customization problem
Hello All. I have one problem with customizing datagridview cells content. Supppose we have table with 3 fields: From, Subject, Date. I want to display these 3 db fields in one custom cell (I want to make it like in MS Outlook's "Inbox" where we have it formatted: "Subject" with big font, "From" and "Date" with smaller font). Also I'd like to use databinding to achieve these results. Is it poss ...Show All
Visual Studio Express Editions Graphics Render Frame Rates?
i am using the Graphics backbuffer and then the Render method. How can i see the frame rate that makes it to the screen. does it wait to "render befor it move to the next code If the game loop goes to fast will the next render code over ride the one befor it Help please. thanks for the code but... the real problem is that i dont understand how the "render" method (not the one in DirectX) works when drawing the back buffe ...Show All
Smart Device Development CCommandbar with cmenu
I try to insert a menu to ccommandbar, then delete a submenu in it. Is there any example on ccommandbar with cmenu m_cmdbar = new CCommandBar(); m_cmdbar->Create( this ); m_cmdbar->InsertMenuBar(IDR_MENU1); HMENU hMenu = m_cmdbar->GetMenu(); CMenu* pMenu = CMenu::FromHandle(hMenu); CMenu* submenu = pMenu->GetSubMenu(0); BOOL i = submenu->DeleteMenu(ID_OPTION_NEW, MF_BYCOMMAND); m_cmdbar->DrawMenuBar( ...Show All
.NET Development Code not working on German OS
We have a dll which was developed on English OS of windows. When I try to run the same dll on the German OS for windows I am facing following problems. The GetTickCount() function returns 0.00 . Also the PdhCollectQueryData() function returns PDH_NO_DATA. However when we change the language settings on German OS to English the code seems to work properly. Please let me know if anybody has faced similar problems before. Thanks :) ...Show All
Visual Basic Adding Data to the original Data Source/Access Database
I have followed a number of walkthroughs whilst using Visual Basic 2005 as part of the Beta 2 Visual Studio. My problem is starting when I want to send information back to the original data source (an Access Database) Now, my form loads the information from the datasource (northwind customers table) however when I try to create a new record, the changes are reflected in the dataset, ie the record is created and i can see it if i navigate off and ...Show All
Visual C++ read struct from file
this is a beginner programmer questions, at least i think so. CFile::Read( void* lpBuf ,UINT nCount) i can pass a struct (first param) and the length of that struct (second param) and then i will have a populated struct. How can i do the same thing with a managed c++ function The size of an int is 2, size of a double is 8, and a long is 4, how can i adjust my struct that i am reading in to account for this offset ...Show All
Windows Forms MenuItems
Hey, Is there a code like the one below that dose the same thing but for a MenuStrip item : ToolStrip3.Items.Add(newbutton) Thanks :) yes...identical: MenuStrip3 . Items . Add ( "TEST" ) or MenuStrip3 . . items . Add ( Text , image , Eventhandler ) ...Show All
