Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you 8 6889
After you have databound the fomview, using the following style of
coding to get the value of IDLabel1:
Label IDLabel1 = (Label)FormView1.FindControl("FormView1");
string MyValue = IDLabel1.Text;
BB wrote:
Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote:
Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you
Hi,
Thank you for your response. Here is what I did...
Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim sLabel As WebControls.Label
sLabel = FormView1.FindControl("IDLabel1")
TextBox1.Text = TextBox1.Text & sLabel.Text
End Sub
I get following error...Any Idea?
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.
Source Error:
Line 19: sLabel = FormView1.FindControl("IDLabel1")
Line 20: TextBox1.Text = TextBox1.Text & sLabel.Text
Line 21: End Sub
Line 22: </script>
Thamk you
"KJ" <n_**********@mail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote:
>Hi, I am using FormView Contol, TextBox (Hidden ) and Submit button whose caption is "View Page" in my aspx page. Here is what I am tryin to do.When page loads I generate dynamic url in text box . I want to append exisitng value in Formview field "CustomeID" to url. When userclicks on "view page" ,new window is opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True" CellPadding="4" DataKeyNames="CustomerID" DataSourceID="AccessDataSource1" ForeColor="#333333" OnDataBound="FormView1_DataBound"> <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> <EditRowStyle BackColor="#C0FFC0" /> <EditItemTemplate> <table> <tr> <td style="width: 344px"> <span style="font-size: 9pt"><strong>ID:</strong></span></td> <td colspan="2"> <asp:Label ID="IDLabel1" runat="server" Text='<%# Eval("CustomerID") %>' Font-Names="Arial" Font-Size="8pt"></asp:Label></td> </tr> <tr>.....
How I can get value of "IDLabel1" may be in page load or databound event of page? so that I can concanate value of IDLabel1 to my url
Thank you
Now I see.
In the DataBound method, you can use the Row property of FormView1 to
programmatically access the FormViewRow object that represents the
current data row.
The data row contains different content based on the template that is
rendered for the current mode (specified by the CurrentMode property).
You can only access the contents of the template for the current mode.
This means that you will only be able to find IDLabel1 using this
technique if the FormView1 is in Edit mode (e.g., using the
EditItemTemplate containing IDLabel1).
Check FormView1.CurrentMode and see what you come up with. If the value
is not FormViewMode.Edit, you cannot get the IDLabel1.
BB wrote:
Hi,
Thank you for your response. Here is what I did...
Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim sLabel As WebControls.Label
sLabel = FormView1.FindControl("IDLabel1")
TextBox1.Text = TextBox1.Text & sLabel.Text
End Sub
I get following error...Any Idea?
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set
to an instance of an object.
Source Error:
Line 19: sLabel = FormView1.FindControl("IDLabel1")
Line 20: TextBox1.Text = TextBox1.Text & sLabel.Text
Line 21: End Sub
Line 22: </script>
Thamk you
"KJ" <n_**********@mail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote:
Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you
Well...Logic behind this is ...
When page is loaded I create link in text box which is invisible. I
have "Preview" button when user click it , It takes url from invisible text
box and goes to that link. Now when form is loaded. IDLabel1 value is
already there displayed. I just need to take that vale and pass as
querystring. ..like ...?iGroup=IDLabel1.text
User interface will be...
User open this form. Selects record to edit using previous next
link buttons on FormView.then Click edit . Make necessary changes. Save
changes. and click on "Preview" button.
Any idea how I acheive this?
"KJ" <n_**********@mail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
Now I see.
In the DataBound method, you can use the Row property of FormView1 to
programmatically access the FormViewRow object that represents the
current data row.
The data row contains different content based on the template that is
rendered for the current mode (specified by the CurrentMode property).
You can only access the contents of the template for the current mode.
This means that you will only be able to find IDLabel1 using this
technique if the FormView1 is in Edit mode (e.g., using the
EditItemTemplate containing IDLabel1).
Check FormView1.CurrentMode and see what you come up with. If the value
is not FormViewMode.Edit, you cannot get the IDLabel1.
BB wrote:
>Hi,
Thank you for your response. Here is what I did...
Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Dim sLabel As WebControls.Label
sLabel = FormView1.FindControl("IDLabel1") TextBox1.Text = TextBox1.Text & sLabel.Text End Sub
I get following error...Any Idea?
Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 19: sLabel = FormView1.FindControl("IDLabel1") Line 20: TextBox1.Text = TextBox1.Text & sLabel.Text Line 21: End Sub Line 22: </script>
Thamk you
"KJ" <n_**********@mail.comwrote in message news:11**********************@p79g2000cwp.googleg roups.com...
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote: Hi, I am using FormView Contol, TextBox (Hidden ) and Submit button whose caption is "View Page" in my aspx page. Here is what I am tryin to do.When page loads I generate dynamic url in text box . I want to append exisitng value in Formview field "CustomeID" to url. When userclicks on "view page" ,new window is opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True" CellPadding="4" DataKeyNames="CustomerID" DataSourceID="AccessDataSource1" ForeColor="#333333" OnDataBound="FormView1_DataBound"> <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> <EditRowStyle BackColor="#C0FFC0" /> <EditItemTemplate> <table> <tr> <td style="width: 344px"> <span style="font-size: 9pt"><strong>ID:</strong></span></td> <td colspan="2"> <asp:Label ID="IDLabel1" runat="server" Text='<%# Eval("CustomerID") %>' Font-Names="Arial" Font-Size="8pt"></asp:Label></td> </tr> <tr>.....
How I can get value of "IDLabel1" may be in page load or databound event of page? so that I can concanate value of IDLabel1 to my url
Thank you
I'm a little confused: are you saying that the value of IDLabel1 is
never changed by the user?
BB wrote:
Well...Logic behind this is ...
When page is loaded I create link in text box which is invisible. I
have "Preview" button when user click it , It takes url from invisible text
box and goes to that link. Now when form is loaded. IDLabel1 value is
already there displayed. I just need to take that vale and pass as
querystring. ..like ...?iGroup=IDLabel1.text
User interface will be...
User open this form. Selects record to edit using previous next
link buttons on FormView.then Click edit . Make necessary changes. Save
changes. and click on "Preview" button.
Any idea how I acheive this?
"KJ" <n_**********@mail.comwrote in message
news:11**********************@h48g2000cwc.googlegr oups.com...
Now I see.
In the DataBound method, you can use the Row property of FormView1 to
programmatically access the FormViewRow object that represents the
current data row.
The data row contains different content based on the template that is
rendered for the current mode (specified by the CurrentMode property).
You can only access the contents of the template for the current mode.
This means that you will only be able to find IDLabel1 using this
technique if the FormView1 is in Edit mode (e.g., using the
EditItemTemplate containing IDLabel1).
Check FormView1.CurrentMode and see what you come up with. If the value
is not FormViewMode.Edit, you cannot get the IDLabel1.
BB wrote:
Hi,
Thank you for your response. Here is what I did...
Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim sLabel As WebControls.Label
sLabel = FormView1.FindControl("IDLabel1")
TextBox1.Text = TextBox1.Text & sLabel.Text
End Sub
I get following error...Any Idea?
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not
set
to an instance of an object.
Source Error:
Line 19: sLabel = FormView1.FindControl("IDLabel1")
Line 20: TextBox1.Text = TextBox1.Text & sLabel.Text
Line 21: End Sub
Line 22: </script>
Thamk you
"KJ" <n_**********@mail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote:
Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i
can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load
or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you
Yes..Since its a label. User cannot change value. He can edit other fields
but not IDLabel1..
"KJ" <n_**********@mail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
I'm a little confused: are you saying that the value of IDLabel1 is
never changed by the user?
BB wrote:
>Well...Logic behind this is ... When page is loaded I create link in text box which is invisible. I have "Preview" button when user click it , It takes url from invisible text box and goes to that link. Now when form is loaded. IDLabel1 value is already there displayed. I just need to take that vale and pass as querystring. ..like ...?iGroup=IDLabel1.text User interface will be... User open this form. Selects record to edit using previous next link buttons on FormView.then Click edit . Make necessary changes. Save changes. and click on "Preview" button.
Any idea how I acheive this?
"KJ" <n_**********@mail.comwrote in message news:11**********************@h48g2000cwc.googleg roups.com...
Now I see.
In the DataBound method, you can use the Row property of FormView1 to
programmatically access the FormViewRow object that represents the
current data row.
The data row contains different content based on the template that is
rendered for the current mode (specified by the CurrentMode property).
You can only access the contents of the template for the current mode.
This means that you will only be able to find IDLabel1 using this
technique if the FormView1 is in Edit mode (e.g., using the
EditItemTemplate containing IDLabel1).
Check FormView1.CurrentMode and see what you come up with. If the value
is not FormViewMode.Edit, you cannot get the IDLabel1.
BB wrote: Hi,
Thank you for your response. Here is what I did...
Protected Sub FormView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Dim sLabel As WebControls.Label
sLabel = FormView1.FindControl("IDLabel1") TextBox1.Text = TextBox1.Text & sLabel.Text End Sub
I get following error...Any Idea?
Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 19: sLabel = FormView1.FindControl("IDLabel1") Line 20: TextBox1.Text = TextBox1.Text & sLabel.Text Line 21: End Sub Line 22: </script>
Thamk you
"KJ" <n_**********@mail.comwrote in message news:11**********************@p79g2000cwp.googleg roups.com...
Sorry, I screwed up the first code line, it should be:
Label IDLabel1 = (Label)FormView1.FindControl("IDLabel1");
BB wrote: Hi, I am using FormView Contol, TextBox (Hidden ) and Submit button whose caption is "View Page" in my aspx page. Here is what I am tryin to do.When page loads I generate dynamic url in text box . I want to append exisitng value in Formview field "CustomeID" to url. When userclicks on "view page" ,new window is opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True" CellPadding="4" DataKeyNames="CustomerID" DataSourceID="AccessDataSource1" ForeColor="#333333" OnDataBound="FormView1_DataBound"> <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> <EditRowStyle BackColor="#C0FFC0" /> <EditItemTemplate> <table> <tr> <td style="width: 344px"> <span style="font-size: 9pt"><strong>ID:</strong></span></td> <td colspan="2"> <asp:Label ID="IDLabel1" runat="server" Text='<%# Eval("CustomerID") %>' Font-Names="Arial" Font-Size="8pt"></asp:Label></td> </tr> <tr>.....
How I can get value of "IDLabel1" may be in page load or databound event of page? so that I can concanate value of IDLabel1 to my url
Thank you
Any ideas guys?
"BB" <sh******@gmail.comwrote in message
news:11**********************@74g2000cwt.googlegro ups.com...
Hi,
I am using FormView Contol, TextBox (Hidden ) and Submit button
whose caption is "View Page" in my aspx page.
Here is what I am tryin to do.When page loads I generate dynamic
url in text box . I want to append exisitng value in Formview field
"CustomeID" to url. When userclicks on "view page" ,new window is
opened with dynamic url.
I am able to do generarting url dynamically, but dont know how i can
do rest of the things. Any idea?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
CellPadding="4" DataKeyNames="CustomerID"
DataSourceID="AccessDataSource1" ForeColor="#333333"
OnDataBound="FormView1_DataBound">
<FooterStyle BackColor="#507CD1" Font-Bold="True"
ForeColor="White" />
<EditRowStyle BackColor="#C0FFC0" />
<EditItemTemplate>
<table>
<tr>
<td style="width: 344px">
<span style="font-size:
9pt"><strong>ID:</strong></span></td>
<td colspan="2">
<asp:Label ID="IDLabel1" runat="server" Text='<%#
Eval("CustomerID") %>' Font-Names="Arial"
Font-Size="8pt"></asp:Label></td>
</tr>
<tr>.....
How I can get value of "IDLabel1" may be in page load or
databound event of page? so that I can concanate value of IDLabel1 to
my url
Thank you This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Michael Glass |
last post by:
I'm working on an ASP.Net web app using VS2005 and the .Net 2.0 framework,
and I have a serious problem with the page I'm currently working on. The page
has, among other things, two FormViews and a...
|
by: abillmeier |
last post by:
I am just getting started messing with ASP 2.0, and am working on creating a
quick data entry web hooked to a SQL database.
I am using stored procedures to get and push data.
I am having a...
|
by: TJHerman |
last post by:
I have a dropdown list in a Formview that includes a number of fields in the
SQLDatasource.
I want to be able to get the value of one of the fields in the Datasource
that is not the...
|
by: Dave |
last post by:
I have 2 Dropdown's in a Web FormView. I would like to get one to be a
Parameter for the other, but I can't seem to figure out how to get the
value out of the first. When I double click it to get...
|
by: Hugh |
last post by:
Naive developer needs help. how to retrieve a dropdown value inside a
formview in VB? Is findcontrol the way to go? Thanks in advance.
Hugh
|
by: hardieca |
last post by:
Hi,
My formview or gridview control stops updating or deleting a record
once the record has a null value.
I have table tblTest with the following
pkID int NOT NULL **IDENTITY COLUMN**...
|
by: Jon Paal |
last post by:
--dropdownlist value isn't being saved to database from FORMVIEW
--field PriorityID is datatype "number" (integer)
what's missing ????
'=========code=============
<asp:Content ID="Content1"...
|
by: user |
last post by:
Hello,
How to read a value in a Formview, when the page is load or when the
formview is updated, and if the value (integer) is negative,for example, the
user will get a msgbox that say "becarefull...
|
by: =?Utf-8?B?UmJydA==?= |
last post by:
I have a custom FormView control which I build in code at run time in the
page pre-init event. When the user clicks a linkbutton control elsewhere on
the page, I change the mode of the formview to...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: jack2019x |
last post by:
hello, Is there code or static lib for hook swapchain present?
I wanna hook dxgi swapchain present for dx11 and dx9.
| |