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

Software Development Network >> Eragon.'s Q&A profile

Eragon.

Member List

Steve98796
Barry Kwok
R.Tutus
suamikim
Dipesh Agrawal
ycseattle
cometta
gavin beard
shruti.makwana
Deepa7476
markdrury
Andre de Beer
Vikasumit
Cute_Celina
wakawaka54
sorsh
spi
js06
Jop jopper
baga
Only Title

Eragon.'s Q&A profile

  • .NET Development Logging WEB Service

    Hello. I am using Web Service with C# .NET application as a client and JAVA Enterprise over JBoss Application server as a server. I'd like to log all traffic of the web service using standard diagnostic mechanism of the .NET. I know to trigger it for tcp and http communication, although it prints a lot of information. The way to do it well documented in the MSDN. My question is what is a way to do it for Web service communication If there is no "standard" way can anybody suggest the shortest implementation path P.S. Please do not advice to take Application logging block or Log4Net 3rd party library. I do not have a time and wish to add into my application a huge chunk of code for this small task. Thank you. You can trace th ...Show All

  • Windows Forms Viewing a word doc within a Windows Forms Application

    I would like to display a word document within my windows form application. Currently I am using the IE activeX control and passing it the word doc location. There must be a more elegant solution. I tried this and still no events fired! Is there any additional code you may have left out of the post ...Show All

  • Visual Studio Express Editions Can some one tell me how to find the default icon please.

    Hello. Can some one tell tell me how to show the default icon in a ListView box please Av only bean learning programming about 3 or 4 weeks now, and am stuck on the this. Am making a cleaning program, the files and the path show in the Listview box, but I want the default icon to show as well. Your help will be very much apresiated. Hears wishing every one a merry Christmas and a happy new Year, and may 2007 be a good year for you all. Thank you The icon code is borrowed from a microsoft 'directory searcher' example program. (The old 101 examples ) Search the internet and see if you can find the original example, I can't remember where I found it.  Did my ...Show All

  • SQL Server Combine raw files using range

    HI, I have a dataflow that has two raw files as source and I would like to merge them upon a range condition: RawFile1.Date <= RawFile2.Date Usually, using tables, I would have used a lookup with partial cache to achieve it. Now, since we cannot use lookup transform with raw files, I was wondering how I could achieve this using raw files as source. Is it possible to merge raw files using merge or merge join Thank you, Ccote Sure, you can merge two raw files. You can merge any two data flow streams. The data just has to be sorted first. You could load a staging table for each raw file, though, and write a SQL join against them to get your results as well... ...Show All

  • Visual C++ Cannot properly return unsigned char*...

    Hi everyone, I have a problem in returning an unsigned char* from a function. In the main function: string name = "yabansu"; unsigned char* arr1 = (unsigned char*) name.c_str(); cout << arr1 << endl;   //Correctly prints "yabansu" Let's say I wrote a function called StringToBytes for doing the same thing above as the following: unsigned char* StringToBytes(string s) {     cout << (unsigned char*) s.c_str()     //Correctly prints "yabansu"     return (unsigned char*) s.c_str(); } Then I call this function in the main() as below; string name = "yabansu"; unsigned char* arr2 = StringToBytes(name); cout << arr2 << endl; &nb ...Show All

  • Software Development for Windows Vista New APO sample code???

    I just got the new SysFX document, and it says there are now 3 APO samples. I downloaded the new WDK, but they don't seem to be in there. Anyone know where they might be Thanks, Mike ...Show All

  • .NET Development VB 2005 - Copy row contents to another row in the same DataSet

    Hi, How can I copy the contents from one row to another in the same DataSet I'm using the TabelAdapter to fill the DataSets. For example: I've 2 existing rows and need to copy the contents (all fields) from one row to another. Then, before update change the key field so I don't have any problems. I've tryied to use the ItemArray but don't know how to load it to another existing row. Can someone help Thanks. Pedro Hi Bill, What you are saying is to go from the first field to the last and set each field to the value of the wanted row. But for that I need to use a for/next cycle, true Can I use something like the LoadDataRow except for an existing row Regards, Pedr ...Show All

  • .NET Development Is it still a bug in framework 2.0?

    KB article #322975 (BUG: Passing large quantities of data in .NET Remoting calls causes an unexpected exception to occur) is reported for to be a bug in Framework 1.0 and 1.1. I wanted to confirm that the bug is fixed in Framework 2.0. Anybody knows See http://blogs.msdn.com/robgruen/archive/2005/05/02/414090.aspx ...Show All

  • SQL Server Help Please...request to send data to the computer running IIS has failed

    Hello,    I am trying to complete the BOL sample " Creating a Mobile Application with SQL Server Mobile". Using SQL 2k5 and VS Team Suite. I have the emulator about to get on to the internet and can even get to the http:// sqlce.domain.com/sqlmobile/sqlcesa30.dll url but when runing the vb.net code I get the error 28037 "A request to send data to the computer running IIS has failed. For more information, see HRESULT.". Any help would be greatly appreciated. No software firewalls are running. I have a dns entry that points to my laptop for testing. The sync function code is below. Sub sync() Dim repl As New SqlCeReplication() repl.InternetUrl = "http://sqlce.domain.com/SQLMobile/sqlcesa30.dll" repl.Publish ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can't create texture on WM5.0 PPC

    Hi all, I invoke IDirect3DMobileDevice->CreateTexture to create a texture, but what annoyed me is CreateTexutre always return error D3DMERR_DRIVERUNSUPPORTED while it can work correctly on WM5.0 PPC emulator. the device I used is Dell AXIM X51V, and sample code as follows: // create d3d object. m_pD3DMobile = ::Direct3DMobileCreate( D3DM_SDK_VERSION ); RECT rtClt; ::GetClientRect( hWnd, &rtClt ); D3DMFORMAT format = D3DMFMT_R5G6B5; D3DMPRESENT_PARAMETERS param; memset( &param, 0, sizeof(D3DMPRESENT_PARAMETERS) ); param.BackBufferWidth = rtClt.right; param.BackBufferHeight = rtClt.bottom; param.BackBufferFormat = format; param.BackBufferCount = 0; param.MultiSampleType = D3DMMULTISAMPL ...Show All

  • Software Development for Windows Vista Unwanted Yellow tint in DirectX-VMR9-Application

    Greetings everybody, I customized the VMRAllocator9-Sample from the newest Platform-SDK to project a Video-Texture on a Geometry supplied by me. I used to compile it with the nmake-Tool, as MS does not deliver a MS-Studio Project, and everything works fine that way. I set up a Project by myself for better comfort in VS8, copied all the Files and had quite a hard time resolving all the missing libraries and External Symbols for the Project to compile properly. The point now is that despite it compiles without errors and even displays the Video on my Geometry, the whole Video (and also Bitmap-Textures) is tinted Yellow. It seems like the Program misses the Blue-Channel, letting Blue Color out and displaying only Red and Green. I have no clue ...Show All

  • SQL Server Filegroup restore problem.

    Hi! Last time I applied new filegroup to our database. I call it HISTORY, bacause it stores all moditications of tables on PRIMARY filegroup. I.e. if on PRIMARY filegroup is table User, then on HISTORY filegroup is table UserHistory which, stores changes apllied to User table. It's simple database changes monitoring. We use SQL SERVER 2000 Standard Edition. One person of our team (Artur) needs copy tables from PRIMARY filegroup to his computer to perform some experiments. Previously there aren't problem. He make full backup of our database, copy it to DVD drive and restore it on his computer. Backup was size of 3GB. When we added monitoring full backup is size of 20GB which is too large to DVD disk. So I thoght that we can backup ...Show All

  • Visual Basic How to use DLLs or APIs after you reference them?

    Referencing DLLs and APIs seems to be quite easy, but I have forgotten how to actually use them. I tried assigning them to a variable(after having it referenced as a type), but It didn't seem to work... Help Please :( dim myObject as SomeObject myObject = new SomeObject OR dim myObject as new SomeObject then use code like... myObject.method ...Show All

  • SQL Server Problem accessing Analysis Services

    A developer has created a cube and deployed it to Analysis services using BI and SQL server 2005. I have been asked to allow user access to the cube using a third party tool (Data Analyzer). When I browse to find the cube, I am unable. I gather this is due to permissions/access rights on the cube/Analysis services. Can I have some advice on how to grant domain users read only access to the cube. Thanks in advance. Dave, I h ave already set up a role and attached NT 4 permissions to it for domain access. Still no joy. I can set up an ODBC connection to the MSSQL server, but I seem to be unable to view analysis services. Any other ideas much appreciated. ...Show All

  • Visual Studio 2008 (Pre-release) Change rectangle property from code

    Hi guys, i've got a rectangle i've drawn in a grid, how can i change its propertys from code, i think i need to build once or something, should i be using X:name or something...FindName, i'm a bit lost, thanks guys si ok, i've got the .g.cs files and i can see the Xpad1 and Xpad2 in there, the app compiles, i've set the Name property and tryed the x:Name and still no luck, i've cleaned and rebuild the solution, the app compiles, in the code initializeComponent(); is red like its missing, not sure if that apply because this is WPF, also my Xpad1 and Xpad2 is red, they are just not there, any other ideas, btw thanks for the help man, this is killing me off. ...Show All

©2008 Software Development Network